/* Professional CSS inspired by consultlunarastro.com for Seemaa Pathak */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text h2 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    color: #7f8c8d;
    font-size: 0.85rem;
    font-weight: 500;
    display: block;
}

.main-nav {
    display: flex;
    gap: 5px;
}

.nav-link {
    color: #7f8c8d;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: #2c3e50;
    background: #f8f9fa;
}

.nav-link.active {
    color: #3498db;
    background: #e8f4f8;
}

.btn.urgent {
    background: #e74c3c;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.btn.urgent:hover {
    background: #c0392b;
    transform: translateY(-1px);
}

/* Responsive Header */
@media (max-width: 768px) {
    .header-main .container {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .logo {
        order: 1;
        flex: 1;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .header-cta {
        order: 2;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .header-main {
        padding: 10px 0;
    }
    
    .logo-text h2 {
        font-size: 1.2rem;
    }
    
    .logo-text span {
        font-size: 0.8rem;
    }
    
    .nav-link {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .btn.urgent {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 300;
    opacity: 0.9;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn.primary {
    background: #3498db;
    color: white;
}

.btn.primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn.urgent {
    background: #e74c3c;
    color: white;
}

.btn.urgent:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn.secondary:hover {
    background: white;
    color: #667eea;
}

/* Quick Booking Section */
.quick-booking {
    padding: 80px 0;
    background: white;
}

.quick-booking h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.booking-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #3498db;
}

.booking-card.urgent {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.booking-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.booking-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.booking-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Case Studies Section */
.case-studies {
    padding: 80px 0;
    background: white;
}

.case-studies h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.case-studies > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.case-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
}

.case-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.case-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #2980b9;
}

.case-cta {
    text-align: center;
}

/* Consultation Types Section */
.consultation-types {
    padding: 80px 0;
    background: #f8f9fa;
}

.consultation-types h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.consultation-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.category {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.category h3 {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 20px;
    font-size: 1.2rem;
    margin: 0;
}

.category h3 i {
    margin-right: 10px;
}

.consultation-list {
    padding: 20px;
}

.consultation-item {
    display: block;
    padding: 20px;
    border-bottom: 1px solid #ecf0f1;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.consultation-item:last-child {
    border-bottom: none;
}

.consultation-item:hover {
    background: #f8f9fa;
    padding-left: 30px;
}

.consultation-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

.consultation-item p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
}

/* YouTube Section */
.youtube {
    padding: 80px 0;
    background: white;
}

.youtube h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 10px;
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.video-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.video-info p {
    margin-bottom: 30px;
    opacity: 0.9;
}

/* YouTube Channel Section */
.youtube-channel {
    padding: 80px 0;
    background: white;
}

.youtube-channel h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.youtube-channel > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.youtube-embed {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.youtube-embed iframe {
    border-radius: 8px;
    width: 100%;
}

.channel-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.about-text p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text .btn {
    margin-top: 20px;
}

/* Instagram Section */
.instagram {
    padding: 80px 0;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-align: center;
}

.instagram h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.insta-btn {
    display: inline-block;
    background: white;
    color: #bc1888;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.insta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-item h3 {
    color: #3498db;
    margin-bottom: 10px;
}

.contact-item p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.contact-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 10px;
}

.contact-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-cta .btn {
    background: white;
    color: #3498db;
}

.contact-cta .btn:hover {
    background: #f8f9fa;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-main .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .consultation-categories {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .case-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .quick-booking, .why-choose, .case-studies, .consultation-types, .youtube, .about, .instagram, .contact {
        padding: 60px 0;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
    }
}

.btn.secondary:hover {
    background: rgba(255, 213, 79, 0.1);
    transform: translateY(-2px);
}

/* Enhanced Service Cards */
.services {
    padding: 80px 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.service-card {
    background: rgba(26, 26, 46, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 213, 79, 0.1);
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 213, 79, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    margin: 0 0 1rem 0;
    color: #ffd54f;
    font-size: 1.3rem;
}

.service-card p {
    margin: 0;
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: rgba(22, 33, 62, 0.3);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    text-align: left;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: rgba(26, 26, 46, 0.5);
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    color: #ffd54f;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #e0e0e0;
    margin: 0;
}

.contact-cta {
    text-align: center;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

/* YouTube Section */
.youtube {
    padding: 80px 20px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.video-container iframe {
    width: 100%;
    height: 315px;
    border: none;
}

.video-placeholder {
    background: linear-gradient(135deg, #1a1a2e, #2d2d44);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 213, 79, 0.2);
    min-height: 315px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-info h3 {
    color: #ffd54f;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.video-info p {
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.video-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.video-item iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.video-cta {
    text-align: center;
}

/* Enhanced Instagram Section */
.instagram {
    padding: 80px 20px;
    background: rgba(22, 33, 62, 0.3);
}

.insta-btn {
    padding: 14px 28px;
    background: linear-gradient(45deg, #e1306c, #f77737);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.insta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

/* Testimonials & Credits Section */
.testimonials-credits {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
    color: white;
}

.testimonials-credits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffd54f;
}

.testimonials-credits > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.credit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 213, 79, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.credit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 213, 79, 0.4);
}

.credit-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.credit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.credit-card:hover .credit-image img {
    transform: scale(1.05);
}

.credit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 213, 79, 0.9), rgba(255, 107, 157, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.credit-card:hover .credit-overlay {
    opacity: 1;
}

.credit-overlay i {
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.credit-content {
    padding: 25px;
}

.credit-content h3 {
    margin: 0 0 15px 0;
    color: #ffd54f;
    font-size: 1.3rem;
    line-height: 1.3;
}

.credit-content p {
    margin: 0 0 15px 0;
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.credit-year {
    display: inline-block;
    background: rgba(255, 213, 79, 0.2);
    color: #ffd54f;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 213, 79, 0.3);
}

.credits-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 213, 79, 0.2);
}

.credits-cta p {
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: #e0e0e0;
}

/* Footer */
footer {
    background: black;
    padding: 20px;
    text-align: center;
}

/* Enhanced Videos Page Styles */

/* Video Hero Section */
.video-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, #6a1b9a, #311b92);
    text-align: center;
}

.video-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffd54f, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat i {
    font-size: 2.5rem;
    color: #ffd54f;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Video Categories */
.video-categories {
    padding: 80px 20px;
    background: rgba(22, 33, 62, 0.3);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid rgba(255, 213, 79, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 213, 79, 0.3);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.category-icon {
    font-size: 3rem;
    color: #ffd54f;
    margin-bottom: 1.5rem;
}

.category-card h3 {
    margin: 0 0 1rem 0;
    color: #ffd54f;
    font-size: 1.3rem;
}

.category-card p {
    margin: 0 0 1rem 0;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.video-count {
    background: rgba(255, 213, 79, 0.2);
    color: #ffd54f;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Featured Videos Section */
.featured-videos {
    padding: 80px 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin: 0;
    color: white;
    font-size: 2rem;
}

.filter-tabs {
    display: flex;
    gap: 10px;
}

.filter-btn {
    background: rgba(26, 26, 46, 0.8);
    color: #b0b0b0;
    border: 2px solid rgba(255, 213, 79, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: rgba(255, 213, 79, 0.2);
    color: #ffd54f;
    border-color: rgba(255, 213, 79, 0.3);
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 213, 79, 0.1);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 213, 79, 0.3);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover .video-overlay {
    opacity: 1;
}

.video-overlay i {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    margin: 0 0 1rem 0;
    color: #ffd54f;
    font-size: 1.2rem;
    line-height: 1.3;
}

.video-info p {
    margin: 0 0 1rem 0;
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
}

.views,
.date {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Consultation CTA */
.consultation-cta {
    padding: 80px 20px;
    background: rgba(22, 33, 62, 0.3);
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-text h2 {
    margin: 0 0 1.5rem 0;
    color: #ffd54f;
    font-size: 2rem;
}

.cta-text p {
    margin: 0 0 2rem 0;
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-features {
    display: grid;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b0b0b0;
}

.feature i {
    color: #4caf50;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background: rgba(26, 26, 46, 0.5);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(22, 33, 62, 0.8);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 213, 79, 0.1);
}

.testimonial-content {
    margin-bottom: 2rem;
    font-style: italic;
    color: #e0e0e0;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    margin: 0 0 0.5rem 0;
    color: #ffd54f;
    font-size: 1.1rem;
}

.author-info span {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.rating {
    color: #ffd54f;
}

.rating i {
    margin-right: 2px;
}

/* Load More */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

/* Active Navigation State */
nav a.active {
    background: rgba(255, 213, 79, 0.2);
    color: #ffd54f;
}

/* Responsive Design for Videos Page */
@media (max-width: 768px) {
    .video-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .video-stats {
        gap: 20px;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    /* Credits Section Responsive */
    .credits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .credit-image {
        height: 200px;
    }
    
    .testimonials-credits h2 {
        font-size: 2rem;
    }
}

/* 404 Error Page Styles */
.error-404 {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    min-height: 60vh;
}

.error-content {
    max-width: 800px;
    margin: 0 auto;
}

.error-icon {
    font-size: 5rem;
    color: #ffd54f;
    margin-bottom: 30px;
}

.error-404 h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.error-404 h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 300;
    opacity: 0.9;
}

.error-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    font-size: 1rem;
    line-height: 1.8;
}

.error-details strong {
    color: #ffd54f;
}

.error-actions h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #ffd54f;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.action-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.action-item:hover {
    transform: translateY(-5px);
}

.action-item i {
    font-size: 2.5rem;
    color: #ffd54f;
    margin-bottom: 15px;
}

.action-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.action-item p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.action-item .btn {
    margin-top: 10px;
}

.spiritual-message {
    font-style: italic;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #ffd54f;
}

/* Quick Contact Section */
.quick-contact {
    padding: 80px 0;
    background: white;
}

.quick-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.quick-contact > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #3498db;
}

.contact-card.urgent {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.contact-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.contact-card.urgent i {
    color: white;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-card p {
    margin-bottom: 0;
    opacity: 0.8;
}

.contact-card.urgent p {
    opacity: 0.9;
}

/* Responsive Design for 404 Page */
@media (max-width: 768px) {
    .error-404 {
        padding: 60px 0;
    }
    
    .error-404 h1 {
        font-size: 3rem;
    }
    
    .error-404 h2 {
        font-size: 1.5rem;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .error-404 {
        padding: 40px 0;
    }
    
    .error-404 h1 {
        font-size: 2.5rem;
    }
    
    .error-icon {
        font-size: 4rem;
    }
    
    .quick-contact {
        padding: 60px 0;
    }
}

/* Awards Page Styles */
.awards-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
}

.awards-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.awards-hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 300;
    opacity: 0.9;
}

.awards-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
    line-height: 1.6;
}

/* Awards Statistics */
.awards-stats {
    padding: 60px 0;
    background: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Awards Gallery */
.awards-gallery {
    padding: 80px 0;
    background: white;
}

.awards-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.awards-gallery > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.award-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #ecf0f1;
}

.award-card:hover {
    transform: translateY(-10px);
}

.award-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.award-card:hover .award-image img {
    transform: scale(1.05);
}

.award-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9), rgba(41, 128, 185, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.award-card:hover .award-overlay {
    opacity: 1;
}

.award-overlay i {
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.award-content {
    padding: 30px;
}

.award-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.award-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.award-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #ecf0f1;
}

.award-year {
    background: #3498db;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.award-organization {
    color: #95a5a6;
    font-size: 0.9rem;
    font-style: italic;
}

/* Awards Testimonials */
.awards-testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.awards-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.awards-testimonials > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-content {
    font-style: italic;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.rating {
    color: #ffd54f;
}

/* Awards CTA */
.awards-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Awards Page */
@media (max-width: 768px) {
    .awards-hero {
        padding: 80px 0;
    }
    
    .awards-hero h1 {
        font-size: 2.5rem;
    }
    
    .awards-hero h2 {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .awards-hero {
        padding: 60px 0;
    }
    
    .awards-hero h1 {
        font-size: 2rem;
    }
    
    .awards-gallery, .awards-testimonials, .awards-cta {
        padding: 60px 0;
    }
    
    .award-details {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .award-image {
        height: 200px;
    }
}

/* Mail Snippet Section */
.mail-snippet {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.mail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mail-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffd54f;
}

.mail-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.tagline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tagline-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #ffd54f;
}

.tagline-item i {
    font-size: 1.5rem;
    color: #ffd54f;
}

.tagline-item span {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.4;
}

.mail-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mail-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #ffd54f;
    text-align: center;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffd54f;
    background: rgba(255, 255, 255, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #2c3e50;
    color: white;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    margin-bottom: 0;
}

/* Responsive Design for Mail Snippet */
@media (max-width: 768px) {
    .mail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tagline-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mail-form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .mail-snippet {
        padding: 60px 0;
    }
    
    .mail-info h2 {
        font-size: 1.5rem;
    }
    
    .tagline-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Case Studies Page Styles */
.case-studies-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
}

.case-studies-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.case-studies-hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 300;
    opacity: 0.9;
}

.case-studies-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
    line-height: 1.6;
}

/* Case Filter Section */
.case-filter {
    padding: 40px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #ecf0f1;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    color: #7f8c8d;
    border: 2px solid #ecf0f1;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

/* Detailed Case Studies */
.case-studies-detailed {
    padding: 80px 0;
    background: white;
}

.case-study-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 50px;
    overflow: hidden;
    border: 1px solid #ecf0f1;
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-header {
    display: flex;
    align-items: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #ecf0f1);
    border-bottom: 1px solid #ecf0f1;
    flex-wrap: wrap;
    gap: 20px;
}

.case-icon {
    width: 60px;
    height: 60px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.case-title {
    flex: 1;
}

.case-title h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.case-category {
    color: #3498db;
    font-size: 0.9rem;
    font-weight: 600;
}

.case-meta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.case-date,
.case-duration {
    background: #e8f4f8;
    color: #3498db;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.case-content {
    padding: 40px;
}

.case-content > div {
    margin-bottom: 30px;
}

.case-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.case-content h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #3498db;
    border-radius: 2px;
}

.case-content p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 15px;
}

.case-content ul {
    margin-left: 20px;
    color: #7f8c8d;
    line-height: 1.8;
}

.case-content li {
    margin-bottom: 10px;
}

.testimonial {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    margin-top: 20px;
}

.testimonial blockquote {
    font-style: italic;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial cite {
    color: #3498db;
    font-weight: 600;
    font-style: normal;
}

/* Case Stats Section */
.case-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.case-stats h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 3rem;
    color: #ffd54f;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Case CTA Section */
.case-cta {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-content p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Case Studies */
@media (max-width: 768px) {
    .case-studies-hero {
        padding: 80px 0;
    }
    
    .case-studies-hero h1 {
        font-size: 2.5rem;
    }
    
    .case-studies-hero h2 {
        font-size: 1.5rem;
    }
    
    .case-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .case-meta {
        justify-content: center;
    }
    
    .case-content {
        padding: 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .case-studies-hero {
        padding: 60px 0;
    }
    
    .case-studies-hero h1 {
        font-size: 2rem;
    }
    
    .case-studies-detailed {
        padding: 60px 0;
    }
    
    .case-header {
        padding: 20px;
    }
    
    .case-content {
        padding: 20px;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 300;
    opacity: 0.9;
}

.services-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
    line-height: 1.6;
}

/* Consultation Categories */
.consultation-categories {
    padding: 80px 0;
    background: white;
}

.consultation-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.consultation-categories > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.consultation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.consultation-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #ecf0f1;
}

.consultation-card:hover {
    transform: translateY(-10px);
}

.card-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 25px;
    text-align: center;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
}

.card-header h3 {
    font-size: 1.4rem;
    margin: 0;
}

.card-content {
    padding: 30px;
}

.card-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.card-content li {
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
    color: #7f8c8d;
    line-height: 1.5;
}

.card-content li:last-child {
    border-bottom: none;
}

.card-content strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #ecf0f1;
    border-bottom: 1px solid #ecf0f1;
    margin-bottom: 25px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
}

.duration {
    background: #e8f4f8;
    color: #3498db;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-content .btn {
    width: 100%;
    text-align: center;
}

/* Consultation Process */
.consultation-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.consultation-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.consultation-process > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.process-step p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Services Testimonials */
.services-testimonials {
    padding: 80px 0;
    background: white;
}

.services-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-content {
    font-style: italic;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.rating {
    color: #ffd54f;
}

/* Services CTA */
.services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-hero {
        padding: 80px 0;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .services-hero h2 {
        font-size: 1.5rem;
    }
    
    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 60px 0;
    }
    
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .consultation-categories, .consultation-process, .services-testimonials, .services-cta {
        padding: 60px 0;
    }
    
    .card-header {
        padding: 20px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .process-step {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 300;
    opacity: 0.9;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
    line-height: 1.6;
}

/* About Content */
.about-content {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-text p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px;
    text-align: center;
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.overlay-content p {
    opacity: 0.9;
}

/* Expertise Section */
.expertise {
    padding: 80px 0;
    background: #f8f9fa;
}

.expertise h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.expertise > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.expertise-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-10px);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.expertise-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.expertise-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Philosophy Section */
.philosophy {
    padding: 80px 0;
    background: white;
}

.philosophy-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.philosophy-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #3498db;
}

.philosophy-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.philosophy-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Achievements Section */
.achievements {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.achievements h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
}

.achievement-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.achievement-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.achievement-stats .stat-item i {
    font-size: 3rem;
    color: #ffd54f;
    margin-bottom: 15px;
}

.achievement-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.achievement-stats .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.achievement-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-item i {
    font-size: 2.5rem;
    color: #ffd54f;
    margin-bottom: 15px;
}

.highlight-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.highlight-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Personal Message */
.personal-message {
    padding: 80px 0;
    background: #f8f9fa;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.message-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.message-content p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.message-content p:last-child {
    font-weight: 600;
    color: #3498db;
}

/* About CTA */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero h2 {
        font-size: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .expertise-grid, .philosophy-grid, .achievement-highlights {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .achievement-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-content, .expertise, .philosophy, .achievements, .personal-message, .about-cta {
        padding: 60px 0;
    }
    
    .expertise-item, .philosophy-item, .highlight-item {
        padding: 25px 20px;
    }
    
    .message-content p {
        font-size: 1rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 300;
    opacity: 0.9;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
    line-height: 1.6;
}

/* Contact Options */
.contact-options {
    padding: 80px 0;
    background: white;
}

.contact-options h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-options > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #ecf0f1;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card.urgent {
    border: 2px solid #e74c3c;
    background: linear-gradient(135deg, #fff5f5, #fff);
}

.contact-card.urgent:hover {
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.contact-card.urgent .card-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: left;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.contact-info strong {
    color: #2c3e50;
}

/* Booking Form */
.booking-form {
    padding: 80px 0;
    background: #f8f9fa;
}

.booking-form h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.form-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 30px;
}

.form-features {
    display: grid;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-item i {
    color: #27ae60;
    font-size: 1.2rem;
}

.feature-item span {
    color: #2c3e50;
    font-weight: 500;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal !important;
    color: #7f8c8d !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
    margin: 0;
}

.full-width {
    width: 100%;
}

/* Office Information */
.office-info {
    padding: 80px 0;
    background: white;
}

.office-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.office-info > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.office-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.detail-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.detail-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.detail-content p {
    color: #7f8c8d;
    line-height: 1.6;
}

.office-map {
    background: #f8f9fa;
    border-radius: 15px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #3498db;
}

.map-placeholder {
    text-align: center;
    color: #7f8c8d;
}

.map-placeholder i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 15px;
}

/* FAQ Section */
.contact-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #3498db;
}

.faq-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero h2 {
        font-size: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .office-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-options, .booking-form, .office-info, .contact-faq, .contact-cta {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .form-container {
        padding: 25px 20px;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .detail-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .faq-item {
        padding: 20px;
    }
}
