
        :root {
            /* تشكيلة ألوان أزرق غامق وذهبي */
            --primary-dark: #1a365d;
            --primary-medium: #2d5aa0;
            --primary-light: #4f83cc;
            --accent-gold: #e6af2e;
            --accent-dark-gold: #b8860b;
            --neutral-light: #f8fafc;
            --neutral-medium: #e2e8f0;
            --neutral-dark: #2d3748;
            --text-dark: #2d3748;
            --text-light: #f7fafc;
            --success: #48bb78;
            --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cairo', 'Tajawal', sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            background: var(--neutral-light);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        /* الهيدر */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.4s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            padding: 10px 0;
            position: relative;
            transition: all 0.3s ease;
        }
        
        nav ul li a::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-gold), var(--primary-medium));
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--primary-medium);
        }
        
        nav ul li a:hover::before {
            width: 100%;
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .whatsapp-btn {
            background: linear-gradient(135deg, var(--success), #2ecc71);
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }
        
        .whatsapp-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-dark);
        }
        /* تنسيق زر لوحة التحكم */
.admin-btn {
    background: var(--primary-dark) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    border: 2px solid var(--primary-dark) !important;
}

.admin-btn:hover {
    background: white !important;
    color: var(--primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow) !important;
}

/* تحسين الهيدر للأجهزة الصغيرة */
@media (max-width: 768px) {
    .header-actions {
        gap: 10px !important;
    }
    
    .admin-btn {
        padding: 8px 15px !important;
        font-size: 0.9rem !important;
    }
    
    .whatsapp-btn {
        padding: 8px 15px !important;
        font-size: 0.9rem !important;
    }
}
        /* قسم السلايدر */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 0;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(45, 90, 160, 0.8) 100%), 
                    url('https://images.unsplash.com/photo-1556909114-4d0d853e5e28?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            z-index: -1;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h2 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-dark-gold));
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-lg);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(230, 175, 46, 0.4);
        }
        
        /* الأقسام العامة */
        section {
            padding: 100px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            padding-bottom: 20px;
            font-weight: 700;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-gold), var(--primary-medium));
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            border-radius: 3px;
        }
        
        /* قسم التعريف بالشركة */
        .about {
            background: white;
            border-radius: 30px;
            margin: 80px 5%;
            box-shadow: var(--shadow);
        }
        
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .about-content {
            padding-right: 40px;
        }
        
        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        
        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .stat-item {
            text-align: center;
            padding: 25px;
            background: var(--neutral-light);
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }
        
        .stat-text {
            color: var(--neutral-dark);
            font-weight: 600;
        }
        
        /* قسم الخدمات */
        .services {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
            border-radius: 30px;
            margin: 80px 5%;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .services .section-title h2 {
            background: linear-gradient(135deg, white, var(--neutral-medium));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .services .section-title h2::after {
            background: linear-gradient(90deg, var(--accent-gold), var(--neutral-medium));
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .service-card {
            text-align: center;
            padding: 50px 30px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .service-icon {
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: var(--accent-gold);
            font-size: 2.5rem;
            transition: all 0.4s ease;
        }
        
        .service-card:hover .service-icon {
            background: var(--accent-gold);
            color: var(--primary-dark);
            transform: scale(1.1);
        }
        
        /* قسم خطوات العمل */
        .process {
            background: white;
            border-radius: 30px;
            margin: 80px 5%;
            box-shadow: var(--shadow);
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .process-step {
            text-align: center;
            padding: 40px 30px;
            background: var(--neutral-light);
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .process-step:hover {
            transform: translateY(-5px);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 25px;
        }
        
        /* قسم الأسعار */
        .pricing {
            background: var(--neutral-light);
            border-radius: 30px;
            margin: 80px 5%;
            box-shadow: var(--shadow);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            position: relative;
            border: 3px solid transparent;
        }
        
        .pricing-card.featured {
            border-color: var(--accent-gold);
            transform: scale(1.05);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin: 20px 0;
        }
        
        .price-period {
            color: var(--neutral-dark);
            font-size: 1rem;
        }
        
        .features-list {
            list-style: none;
            margin: 30px 0;
            text-align: right;
        }
        
        .features-list li {
            padding: 10px 0;
            border-bottom: 1px solid var(--neutral-medium);
        }
        
        .features-list li:last-child {
            border-bottom: none;
        }
        
        /* قسم معرض الأعمال */
        .gallery {
            background: white;
            border-radius: 30px;
            margin: 80px 5%;
            box-shadow: var(--shadow);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .gallery-item {
            border-radius: 20px;
            overflow: hidden;
            height: 280px;
            position: relative;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* قسم آراء العملاء */
        .testimonials {
            background: var(--neutral-light);
            border-radius: 30px;
            margin: 80px 5%;
            box-shadow: var(--shadow);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .testimonial-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
        }
        
        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .rating {
            color: var(--accent-gold);
            margin-top: 15px;
        }
        
        /* قسم الأسئلة الشائعة */
        .faq {
            background: white;
            border-radius: 30px;
            margin: 80px 5%;
            box-shadow: var(--shadow);
        }
        
        .faq-grid {
            max-width: 800px;
            margin: 60px auto 0;
        }
        
        .faq-item {
            background: var(--neutral-light);
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            transform: translateY(-3px);
        }
        
        .faq-question {
            padding: 25px 30px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
        }
        
        .faq-answer {
            padding: 0 30px 25px;
            color: var(--neutral-dark);
            line-height: 1.6;
            display: none;
        }
        
        /* قسم التواصل */
        .contact {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
            border-radius: 30px;
            margin: 80px 5%;
            color: white;
        }
        
        .contact .section-title h2 {
            background: linear-gradient(135deg, white, var(--neutral-medium));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .contact .section-title h2::after {
            background: linear-gradient(90deg, var(--accent-gold), var(--neutral-medium));
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        
        .contact-form {
            background: rgba(255, 255, 255, 0.1);
            padding: 50px 40px;
            border-radius: 25px;
            backdrop-filter: blur(10px);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--accent-gold);
            outline: none;
            background: rgba(255, 255, 255, 0.15);
        }
        
        .submit-btn {
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-dark-gold));
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(230, 175, 46, 0.3);
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .contact-details {
            margin-bottom: 40px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(10px);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-size: 1.2rem;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }
        
        .social-link:hover {
            background: var(--accent-gold);
            color: var(--primary-dark);
            transform: translateY(-5px);
            border-color: var(--accent-gold);
        }
        
        .map-container {
            height: 250px;
            border-radius: 15px;
            overflow: hidden;
            margin-top: 30px;
            box-shadow: var(--shadow);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* قسم آخر الأخبار */
        .news {
            background: white;
            border-radius: 30px;
            margin: 80px 5%;
            box-shadow: var(--shadow);
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .news-card {
            background: var(--neutral-light);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .news-image {
            height: 200px;
            overflow: hidden;
        }
        
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .news-card:hover .news-image img {
            transform: scale(1.1);
        }
        
        .news-category {
    background: var(--primary-light);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-right: 10px;
}

.news-date {
    color: var(--primary-medium);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-content {
    padding: 25px;
}

.news-title {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin: 15px 0;
    line-height: 1.4;
    font-weight: 700;
}

.news-excerpt {
    color: var(--neutral-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

/* تحسينات للشريحة الزمنية */
.news-content > span {
    display: inline-block;
    margin-bottom: 10px;
}
        
        .read-more {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }
        
        .read-more:hover {
            color: var(--accent-dark-gold);
            transform: translateX(5px);
        }
        
        /* قسم الصناديق المعلوماتية */
        .info-boxes {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
            border-radius: 30px;
            margin: 80px 5%;
            color: white;
        }
        
        .info-boxes .section-title h2 {
            background: linear-gradient(135deg, white, var(--neutral-medium));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .info-boxes .section-title h2::after {
            background: linear-gradient(90deg, var(--accent-gold), var(--neutral-medium));
        }
        
        .boxes-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 60px;
        }
        
        .info-box {
            background: rgba(255, 255, 255, 0.1);
            padding: 40px 30px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .info-box:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }
        
        .info-box h3 {
            color: var(--accent-gold);
            font-size: 1.4rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .info-box p {
            line-height: 1.6;
            opacity: 0.9;
        }
        
        /* الفوتر */
        footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2e4d 100%);
            color: white;
            padding: 80px 5% 30px;
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
        }
        
        .footer-logo h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            background: linear-gradient(135deg, white, var(--neutral-medium));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .footer-logo p {
            opacity: 0.8;
            line-height: 1.6;
        }
        
        .footer-links h3,
        .footer-contact h3 {
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .footer-links h3::after,
        .footer-contact h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--accent-gold);
            bottom: 0;
            right: 0;
            border-radius: 2px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: var(--accent-gold);
            transform: translateX(5px);
        }
        
        .footer-contact p {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            opacity: 0.8;
        }
        
        .footer-contact i {
            color: var(--accent-gold);
            width: 20px;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 70px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* التجاوب مع الجوال */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .boxes-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 15px 20px;
            }
            
            nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .about-container {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .hero h2 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
            }
        }