
    /* Service Hero Section Styles */
    .service-hero {
        padding: 140px 0 80px;
        position: relative;
        background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%);
        overflow: hidden;
    }
    
    .service-hero::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(93, 179, 203, 0.1);
        z-index: 0;
    }
    
    .service-hero::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: -50px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(93, 179, 203, 0.05);
        z-index: 0;
    }
    
    .service-hero-content {
        position: relative;
        z-index: 2;
        padding-right: 30px;
    }
    
    .service-breadcrumb {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    
    .service-breadcrumb a {
        color: #666;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .service-breadcrumb a:hover {
        color: var(--accent-color);
    }
    
    .service-breadcrumb i {
        font-size: 0.7rem;
        color: #999;
    }
    
    .service-name {
        color: var(--accent-color);
    }
    
    .service-hero-title {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
        color: var(--navy-blue);
        margin-bottom: 20px;
        font-weight: 700;
        line-height: 1.2;
    }
    
    .highlight {
        position: relative;
        display: inline-block;
        color: var(--accent-color);
    }
    
    .service-hero-subtitle {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 30px;
        line-height: 1.7;
    }
    
    .service-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-color);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .feature-text {
        font-size: 1rem;
        font-weight: 500;
        color: var(--navy-blue);
    }
    
    .service-cta {
        display: flex;
        gap: 15px;
        margin-top: 30px;
        flex-wrap: wrap;
    }
    
    .btn-custom {
        background-color: var(--accent-color);
        color: white;
        padding: 12px 30px;
        border-radius: 25px;
        text-transform: uppercase;
        font-weight: 500;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(76, 195, 246, 0.3);
        text-decoration: none;
    }
    
    .btn-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(57, 163, 255, 0.4);
        color: white;
    }
    
    .btn-custom-outline {
        background-color: transparent;
        color: var(--navy-blue);
        padding: 12px 30px;
        border-radius: 25px;
        text-transform: uppercase;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 2px solid var(--accent-color);
        text-decoration: none;
    }
    
    .btn-custom-outline:hover {
        background-color: var(--accent-color);
        color: white;
        transform: translateY(-2px);
    }
    
    .service-hero-visual {
        position: relative;
        z-index: 2;
    }
    
    .service-image-wrap {
        position: relative;
        padding: 20px;
    }
    
    .service-image {
        width: 100%;
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        animation: floatImage 4s ease-in-out infinite;
    }
    
    @keyframes floatImage {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-20px);
        }
    }
    
    .service-rating {
        position: absolute;
        top: 40px;
        left: 0;
        transform: translateX(-30%);
        background: white;
        padding: 15px 20px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        gap: 5px;
        animation: fadeInLeft 1s ease forwards 0.5s;
        opacity: 0;
    }
    
    .rating-stars {
        color: #FFD700;
        font-size: 1.2rem;
    }
    
    .rating-text {
        font-size: 0.9rem;
        color: #555;
    }
    
    .rating-number {
        font-weight: 700;
        color: var(--navy-blue);
    }
    
    .service-facts {
        position: absolute;
        bottom: 40px;
        right: 0;
        transform: translateX(30%);
        background: var(--navy-blue);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        gap: 15px;
        animation: fadeInRight 1s ease forwards 0.8s;
        opacity: 0;
    }
    
    .fact-item {
        text-align: center;
    }
    
    .fact-number {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--accent-color);
    }
    
    .fact-text {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    @keyframes fadeInLeft {
        to {
            opacity: 1;
            transform: translateX(-15%);
        }
    }
    
    @keyframes fadeInRight {
        to {
            opacity: 1;
            transform: translateX(15%);
        }
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .service-hero {
            padding: 120px 0 60px;
        }
        
        .service-hero-content {
            padding-right: 0;
            margin-bottom: 50px;
        }
        
        .service-rating {
            top: auto;
            bottom: 40px;
            left: 10%;
            transform: translateX(0);
        }
        
        .service-facts {
            bottom: 40px;
            right: 10%;
            transform: translateX(0);
        }
        
        @keyframes fadeInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
    }
    
    @media (max-width: 768px) {
        .service-hero {
            padding: 100px 0 50px;
        }
        
        .service-hero-title {
            font-size: 2.2rem;
        }
        
        .service-features {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .service-cta {
            flex-direction: column;
        }
        
        .service-rating, .service-facts {
            position: static;
            transform: none;
            margin-top: 20px;
            animation: fadeIn 1s ease forwards;
        }
        
        .service-facts {
            flex-direction: row;
            justify-content: space-around;
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }
    }
    
    @media (max-width: 576px) {
        .service-facts {
            flex-direction: column;
            align-items: center;
        }
    }
    
    /* Service Details Section Styles */
    .service-details-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        overflow: hidden;
        position: relative;
    }
    
    /* Service Header */
    .service-header {
        margin-bottom: 70px;
    }
    
    .service-subtitle {
        font-size: 1.1rem;
        color: var(--accent-color);
        margin-bottom: 15px;
        font-weight: 500;
    }
    
    .service-title {
        font-size: 2.8rem;
        color: var(--navy-blue);
        margin-bottom: 20px;
        font-weight: 700;
    }
    
    .service-description {
        font-size: 1.1rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
    }
    
    /* Service Overview */
    .service-overview {
        margin-bottom: 80px;
    }
    
    .service-image {
        position: relative;
        margin-bottom: 30px;
    }
    
    .experience-badge {
        position: absolute;
        bottom: -20px;
        right: -20px;
        background: var(--accent-color);
        color: white;
        padding: 15px 25px;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(93, 179, 203, 0.2);
        text-align: center;
    }
    
    .experience-badge .number {
        font-size: 1.8rem;
        font-weight: 700;
        display: block;
    }
    
    .experience-badge .text {
        font-size: 0.9rem;
    }
    
    .overview-content {
        padding: 20px;
    }
    
    .overview-title {
        font-size: 1.8rem;
        color: var(--navy-blue);
        margin-bottom: 20px;
        font-weight: 600;
    }
    
    .overview-text {
        color: #666;
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    
    .overview-features {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .overview-features li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
        color: #555;
    }
    
    .overview-features li i {
        color: var(--accent-color);
        margin-right: 15px;
        margin-top: 5px;
    }
    
    /* Service Process */
    .service-process {
        margin-bottom: 80px;
        padding: 50px 0;
        background: #f8f9fa;
        border-radius: 20px;
    }
    
    .process-title {
        font-size: 2rem;
        color: var(--navy-blue);
        margin-bottom: 50px;
        font-weight: 600;
    }
    
    .process-timeline {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .process-timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50px;
        width: 2px;
        background: rgba(93, 179, 203, 0.3);
    }
    
    .timeline-item {
        display: flex;
        margin-bottom: 40px;
        position: relative;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        background: var(--accent-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        font-weight: 600;
        color: white;
        position: relative;
        z-index: 2;
        margin-right: 30px;
        flex-shrink: 0;
    }
    
    .timeline-content {
        background: white;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        flex: 1;
    }
    
    .timeline-title {
        font-size: 1.3rem;
        color: var(--navy-blue);
        margin-bottom: 10px;
        font-weight: 600;
    }
    
    .timeline-text {
        color: #666;
        line-height: 1.6;
        margin: 0;
    }
    
    /* Technologies Section */
    .technologies-section {
        margin-bottom: 80px;
    }
    
    .tech-title {
        font-size: 2rem;
        color: var(--navy-blue);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .tech-subtitle {
        color: #666;
        margin-bottom: 40px;
    }
    
    .tech-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 25px;
    }
    
    .tech-card {
        background: white;
        padding: 25px 15px;
        border-radius: 10px;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .tech-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .tech-icon {
        font-size: 2.5rem;
        color: var(--accent-color);
        margin-bottom: 15px;
    }
    
    .tech-name {
        font-size: 1rem;
        color: var(--navy-blue);
        margin: 0;
    }
    
    /* Projects Showcase */
    .projects-showcase {
        margin-bottom: 80px;
    }
    
    .showcase-title {
        font-size: 2rem;
        color: var(--navy-blue);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .showcase-subtitle {
        color: #666;
        margin-bottom: 40px;
    }
    
    .showcase-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .project-card {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }
    
    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .project-image {
        position: relative;
        overflow: hidden;
    }
    
    .project-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(27, 59, 111, 0.9);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .project-card:hover .project-overlay {
        opacity: 1;
    }
    
    .project-title {
        color: white;
        font-size: 1.3rem;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .project-description {
        color: rgba(255, 255, 255, 0.9);
        text-align: center;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
    
    .project-link {
        display: inline-block;
        padding: 8px 20px;
        background: var(--accent-color);
        color: white;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .project-link:hover {
        background: white;
        color: var(--navy-blue);
    }
    
    /* Pricing Section */
    .pricing-section {
        margin-bottom: 80px;
    }
    
    .pricing-title {
        font-size: 2rem;
        color: var(--navy-blue);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .pricing-subtitle {
        color: #666;
        margin-bottom: 40px;
    }
    
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .pricing-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
    }
    
    .pricing-card.featured {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(93, 179, 203, 0.15);
        border: 2px solid var(--accent-color);
        z-index: 1;
    }
    
    .pricing-card:hover {
        transform: translateY(-10px);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1.05);
    }
    
    .ribbon {
        position: absolute;
        top: 20px;
        right: -30px;
        background: var(--accent-color);
        color: white;
        padding: 5px 30px;
        transform: rotate(45deg);
        font-size: 0.9rem;
        font-weight: 500;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .pricing-header {
        padding: 30px 20px;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .pricing-plan {
        font-size: 1.5rem;
        color: var(--navy-blue);
        margin-bottom: 15px;
    }
    
    .pricing-amount {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--navy-blue);
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .currency {
        font-size: 1.5rem;
        margin-right: 5px;
        align-self: flex-start;
        margin-top: 5px;
    }
    
    .pricing-description {
        color: #666;
        font-size: 0.9rem;
        margin: 0;
    }
    
    .pricing-features {
        padding: 30px 20px;
    }
    
    .pricing-features ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .pricing-features li {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        color: #555;
        font-size: 0.95rem;
    }
    
    .pricing-features li i {
        color: var(--accent-color);
        margin-right: 10px;
    }
    
    .pricing-action {
        padding: 0 20px 30px;
        text-align: center;
    }
    
    .pricing-button {
        display: inline-block;
        padding: 12px 30px;
        background: var(--accent-color);
        color: white;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .pricing-button:hover {
        background: var(--navy-blue);
        transform: translateY(-3px);
    }
    
    .custom-note {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 30px;
        background: #f8f9fa;
        border-radius: 8px;
        margin-top: 30px;
    }
    
    .custom-note i {
        color: var(--accent-color);
        font-size: 1.2rem;
    }
    
    .custom-note p {
        margin: 0;
        color: #555;
    }
    
    .custom-link {
        color: var(--accent-color);
        text-decoration: none;
        font-weight: 500;
    }
    
    .custom-link:hover {
        text-decoration: underline;
    }
    
    /* Testimonials Section */
    .testimonials-section {
        margin-bottom: 80px;
        padding: 50px 0;
        background: #f8f9fa;
        border-radius: 20px;
    }
    
    .testimonials-title {
        font-size: 2rem;
        color: var(--navy-blue);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .testimonials-subtitle {
        color: #666;
        margin-bottom: 40px;
    }
    
    .testimonials-slider {
        max-width: 700px;
        margin: 0 auto;
        position: relative;
    }
    
    .testimonial-card {
        background: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        position: relative;
    }
    
    .quote-icon {
        color: var(--accent-color);
        font-size: 1.8rem;
        margin-bottom: 20px;
        opacity: 0.5;
    }
    
    .testimonial-text {
        color: #555;
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 30px;
        font-style: italic;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
    }
    
    .author-name {
        font-size: 1.1rem;
        color: var(--navy-blue);
        margin-bottom: 5px;
    }
    
    .author-company {
        color: #666;
        font-size: 0.9rem;
        margin: 0;
    }
    
    /* Fade in animation for testimonials */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .fade-in {
        animation: fadeIn 1s ease forwards;
    }
    
    /* FAQ Section */
    .faq-section {
        margin-bottom: 80px;
    }
    
    .faq-title {
        font-size: 2rem;
        color: var(--navy-blue);
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .faq-subtitle {
        color: #666;
        margin-bottom: 40px;
    }
    
    .accordion-item {
        border: none;
        margin-bottom: 15px;
        border-radius: 10px !important;
        overflow: hidden;
    }
    
    .accordion-button {
        padding: 20px;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--navy-blue);
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .accordion-button:not(.collapsed) {
        color: var(--accent-color);
        background: white;
    }
    
    .accordion-button:focus {
        box-shadow: none;
        border-color: rgba(93, 179, 203, 0.2);
    }
    
    .accordion-button::after {
        background-size: 16px;
        color: var(--accent-color);
    }
    
    .accordion-body {
        padding: 20px;
        color: #555;
        line-height: 1.6;
    }
    
    /* CTA Section */
    .cta-row {
        margin-bottom: 30px;
    }
    
    .service-cta {
        background: linear-gradient(135deg, var(--navy-blue) 0%, var(--accent-color) 100%);
        border-radius: 20px;
        padding: 50px 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .service-cta::before {
        content: '';
        position: absolute;
        top: -50px;
        left: -50px;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }
    
    .service-cta::after {
        content: '';
        position: absolute;
        bottom: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }
    
    .cta-content {
        position: relative;
        z-index: 2;
    }
    
    .cta-title {
        font-size: 2rem;
        color: white;
        margin-bottom: 20px;
        font-weight: 600;
    }
    
    .cta-text {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cta-button {
        padding: 15px 35px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .cta-button.primary {
        background: white;
        color: var(--navy-blue);
    }
    
    .cta-button.primary:hover {
        background: var(--navy-blue);
        color: white;
        transform: translateY(-3px);
    }
    
    .cta-button.secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }
    
    .cta-button.secondary:hover {
        background: white;
        color: var(--navy-blue);
        transform: translateY(-3px);
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .service-title {
            font-size: 2.4rem;
        }
        
        .overview-title, .process-title, .tech-title, .showcase-title, 
        .pricing-title, .testimonials-title, .faq-title, .cta-title {
            font-size: 1.8rem;
        }
        
        .pricing-card.featured {
            transform: scale(1);
        }
        
        .pricing-card.featured:hover {
            transform: translateY(-10px);
        }
        
        .experience-badge {
            position: relative;
            bottom: auto;
            right: auto;
            display: inline-block;
            margin-top: 20px;
        }
    }
    
    @media (max-width: 768px) {
        .service-details-section {
            padding: 60px 0;
        }
        
        .service-header {
            margin-bottom: 40px;
        }
        
        .service-overview, .service-process, .technologies-section, 
        .projects-showcase, .pricing-section, .testimonials-section, 
        .faq-section {
            margin-bottom: 60px;
        }
        
        .service-process, .testimonials-section {
            padding: 30px 0;
        }
        
        .pricing-grid, .tech-grid, .showcase-grid {
            gap: 20px;
        }
        
        .pricing-header {
            padding: 20px 15px;
        }
        
        .pricing-features {
            padding: 20px 15px;
        }
        
        .service-cta {
            padding: 30px 20px;
        }
        
        .cta-buttons {
            flex-direction: column;
        }
        
        .timeline-item {
            flex-direction: column;
        }
        
        .timeline-number {
            margin-bottom: 15px;
        }
        
        .process-timeline::before {
            left: 25px;
        }
    }
    
    @media (max-width: 576px) {
        .service-title {
            font-size: 2rem;
        }
        
        .tech-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* FAQ Section Styles */
    .faq-section {
        padding: 80px 0;
        background-color: #f8f9fa;
    }
    
    .section-title {
        color: var(--navy-blue);
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 15px;
    }
    
    .section-description {
        color: #666;
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .faq-accordion {
        margin-top: 20px;
    }
    
    .faq-item {
        margin-bottom: 15px;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .faq-question {
        padding: 20px 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .faq-question:hover {
        background-color: rgba(93, 179, 203, 0.05);
    }
    
    .faq-question h3 {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--navy-blue);
    }
    
    .faq-icon {
        color: var(--accent-color);
        font-size: 0.9rem;
        min-width: 20px;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .faq-answer {
        padding: 0 25px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .faq-answer p {
        padding: 0;
        margin: 0;
        padding-bottom: 20px;
        color: #666;
        line-height: 1.6;
    }
    
    .faq-item.active .faq-question {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .faq-item.active .faq-icon i {
        transform: rotate(45deg);
    }
    
    .faq-item.active .faq-answer {
        max-height: 1000px;
        padding-top: 20px;
    }
    
    .faq-cta {
        margin-top: 40px;
    }
    
    .faq-cta p {
        color: #666;
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .btn-custom {
        background-color: var(--accent-color);
        color: white;
        padding: 12px 30px;
        border-radius: 25px;
        text-transform: uppercase;
        font-weight: 500;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(76, 195, 246, 0.3);
        text-decoration: none;
        display: inline-block;
    }
    
    .btn-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(57, 163, 255, 0.4);
        color: white;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .faq-section {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 1.8rem;
        }
        
        .faq-question {
            padding: 15px 20px;
        }
        
        .faq-question h3 {
            font-size: 1rem;
        }
        
        .faq-answer {
            padding: 0 20px;
        }
        
        .faq-answer p {
            padding-bottom: 15px;
        }
        
        .faq-item.active .faq-answer {
            padding-top: 15px;
        }
    }
