
    :root {
        --primary-color: #c0392b;
        --secondary-color: #FF8C00;
        --text-color: #333333;
        --light-bg: #ffffff;
        --card-bg: #ffffff;
        --hover-bg: #ffe0b2;
        --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        --transition: all 0.3s ease;
    }

    .welcome-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        position: relative;
    }
    
    .welcome-content {
        position: relative;
        z-index: 1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .welcome-title {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
        letter-spacing: 1px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .welcome-text {
        font-size: 18px;
        color: var(--text-color);
        line-height: 1.8;
        max-width: 1200px;
        margin: 0 auto;
        text-align: left;
        background-color: var(--card-bg);
        padding: 30px;
        border-radius: 12px;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }
    
    .welcome-text:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    .welcome-highlight {
        color: var(--primary-color);
        font-weight: 600;
    }
    
    @media (max-width: 768px) {
        .welcome-title {
            font-size: 1.7rem;
        }
        
        .welcome-text {
            font-size: 1rem;
            padding: 20px;
        }
        
        .welcome-section::before,
        .welcome-section::after {
            font-size: 3rem;
        }
    }
    
    @media (max-width: 480px) {
        .welcome-title {
            font-size: 1.5rem;
        }
        
        .welcome-text {
            font-size: 0.95rem;
            padding: 15px;
        }
        
        .welcome-section::before,
        .welcome-section::after {
            font-size: 2.5rem;
        }
    }
