:root {
    --primary-color: #0066cc;
    --secondary-color: #00aa88;
    --accent-color: #ff6b6b;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 20px;
    max-width: 1400px;
    margin: 0 auto;
    height: 80px;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.cta-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
    color: var(--white);
}

.cta-button.textWhite {
    color: #ffffff !important;
}

.hero {
    padding: 80px 20px;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    padding: 0 20px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    min-height: calc(100vh - 80px);
    padding-top: 80px;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    color: #666;
}

/* Mobile menu button - only visible on mobile */
.mobile-menu-btn {
    z-index: 1000;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background-color: var(--text-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Close icon (X) when menu is active */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: var(--text-color);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    background-color: var(--text-color);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: var(--text-color);
}

/* Close modal button */
.close-modal {
    color: var(--text-color);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        padding: var(--spacing-md);
        text-align: center;
        gap: var(--spacing-lg);
        min-height: auto;
        max-width: 100%;
        width: 100%;
    }

    .hero-text {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    .hero-text h1 {
        font-size: 2rem;
        max-width: 100%;
        width: 100%;
    }

    .hero-text p {
        font-size: 1.1rem;
        max-width: 100%;
        width: 100%;
    }

    .hero-image {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
} 

/* Common Section Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: left;
    margin-bottom: var(--spacing-xl);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    width: 100%;
}

.service-card {
    padding: var(--spacing-lg);
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Protection Section */
.protection {
    background: var(--light-gray);
    padding: 80px 20px;
}

.protection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    width: 100%;
}

.protection-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

/* Testimonials Section */
.testimonials {
    background: var(--light-gray);
    padding: 80px 20px;
    position: relative;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    width: 100%;
}

.testimonial-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.5;
}

.testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--light-gray);
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
}

/* Add responsive adjustments */
@media (max-width: 1200px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: var(--spacing-lg);
    }
}

/* Case Studies Section */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    width: 100%;
}

@media (max-width: 992px) {
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
}

.case-study-card {
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #000000;
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .protection-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
} 

/* Global Section Improvements */
section {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-xl);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Services Section Enhancement */
.services {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 80px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
}

.service-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-5px);
    background-color: var(--primary-color);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    color: var(--white);
}

/* Protection Section Enhancement */
.protection {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.protection::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--light-gray);
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.protection-grid {
    position: relative;
    z-index: 2;
    gap: var(--spacing-xl) * 2;
}

.protection-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: var(--spacing-lg);
    transition: transform 0.3s ease;
}

.protection-item:hover {
    transform: translateX(10px);
}

.protection-icon {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.protection-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.protection-item:hover .protection-icon {
    transform: rotate(10deg);
}

/* Testimonials Enhancement */
.testimonial-carousel {
    padding: var(--spacing-xl) 0;
}

.testimonial-card {
    background: rgba(255, 255, 255);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-xl);
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgb(255, 255, 255);
}

/* Case Studies Enhancement */
.case-studies {
    background: var(--white);
}

.case-study-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.case-study-image {
    height: 250px;
    overflow: hidden;
}

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

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

.case-study-content {
    padding: var(--spacing-lg);
    background: var(--white);
}

/* Final CTA Enhancement */
.final-cta {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-xl);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--white);
}

/* Footer Enhancement */
.footer {
    background: var(--text-color);
    position: relative;
    padding-left: 20px;
    padding-right: 20px;    
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-col h4 {
    position: relative;
    padding-bottom: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

/* Service Card Enhancements */
.service-features {
    list-style: none;
    margin-top: var(--spacing-md);
    padding-left: 0;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Compliance Features Section */
.compliance-features {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: var(--spacing-xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.feature-item {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-item h3 {
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .feature-item {
        padding: var(--spacing-lg);
    }
} 

/* Accordion header icons */
.accordion-header .header-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.accordion-header .header-content i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.accordion-header .icon {
    transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] .icon {
    transform: rotate(45deg);
}

/* Social links styles */
.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links a i {
    font-size: 1.2rem;
    color: var(--white);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Update Modal Styles */
.appointment-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 9999;
    transition: right 0.5s ease;
    overflow-y: auto;
    visibility: hidden;
}

.appointment-modal.active {
    right: 0;
    visibility: visible;
}

.appointment-modal.closing {
    right: -100%;
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100vh;
    background: white;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 0.5rem;
    z-index: 1;
}

.close-modal:hover {
    transform: rotate(90deg);
    color: var(--accent-color);
}

.modal-header {
    text-align: center;
    padding-top: 3rem;
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-header h4 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-color);
    font-weight: 500;
    opacity: 0.8;
}

.modal-body {
    width: 100%;
    height: calc(100vh - 150px); /* Adjust based on header height */
}

/* Update Particle Background Styles */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.15;
} 

/* Update lifecycle styles */
.lifecycle-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    width: 100%;
    background: transparent;
}

.lifecycle-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 140px;
    padding: var(--spacing-sm);
    position: relative;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.1;
    z-index: -1;
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.lifecycle-step:nth-child(even) .step-icon {
    background: var(--secondary-color);
}

.lifecycle-step:nth-child(even) .step-icon::before {
    background: var(--secondary-color);
}

.lifecycle-step h4 {
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.lifecycle-step p {
    color: #666;
    font-size: 0.9rem;
}

.step-connector {
    flex: 0 0 40px;
    height: 2px;
    background: var(--primary-color);
    position: relative;
    margin-top: -40px;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid var(--primary-color);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Responsive adjustments */
@media (max-width: 1271px) {
    .lifecycle-container {
        justify-content: flex-between;
    }

    .lifecycle-step {
        width: calc(33.3333% - var(--spacing-lg));
    }

    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .lifecycle-container {
        justify-content: flex-between;
    }

    .lifecycle-step {
        width: calc(50% - var(--spacing-lg));
    }

    .step-connector {
        display: none;
    }
} 

@media (max-width: 480px) {
    .lifecycle-step {
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
    }
}

/* Add Section CTA styles */
.section-cta {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.section-cta .cta-button {
    min-width: 200px;
}

/* Update responsive styles */
@media (max-width: 768px) {
    .section-cta {
        margin-top: var(--spacing-lg);
    }
    
    .section-cta .cta-button {
        width: 100%;
        max-width: 300px;
    }
} 

/* Add Lifecycle Detail Section styles */
.lifecycle-detail {
    padding: 80px 20px;
    background: var(--white);
}

.lifecycle-detail.odd {
    background: var(--light-gray);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.detail-image {
    width: 100%;
}

.detail-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.detail-content {
    padding-right: var(--spacing-xl);
}

.detail-features {
    list-style: none;
    margin: var(--spacing-lg) 0;
    padding: 0;
}

.detail-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    color: var(--text-color);
}

.detail-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .detail-content {
        padding-right: 0;
        order: 2; /* Move content below image on mobile */
    }

    .detail-image {
        order: 1; /* Move image above content on mobile */
    }
} 

/* Add this near the top of the file with other base styles */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Update read-more link style */
.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.read-more:hover {
    transform: translateX(5px);
    color: var(--secondary-color);
} 

/* Article Styles */
.article-hero {
    height: 400px;
    background: var(--light-gray);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px; /* Account for fixed header */
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    max-width: 800px;
    margin: var(--spacing-xl) auto;
    padding: 0 var(--spacing-xl);
}

.article-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-lg);
}

.article-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: var(--text-color);
}

.article-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.stat-card {
    background: var(--light-gray);
    padding: var(--spacing-lg);
    border-radius: 10px;
    text-align: center;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.related-articles {
    background: var(--light-gray);
    padding: var(--spacing-xl) 0;
}

@media (max-width: 768px) {
    .article-content {
        padding: 0 var(--spacing-md);
    }
    
    .article-stats {
        grid-template-columns: 1fr;
    }
} 

/* Update CTA button style */
.cta-content .cta-button {
    background: var(--white);
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
}

.cta-content .cta-button:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

.cta-content .cta-button.secondary {
    background: transparent;
    color: var(--white) !important;
    border: 2px solid var(--white);
}

.cta-content .cta-button.secondary:hover {
    background: var(--white);
    color: var(--primary-color) !important;
} 

/* Add CTA Card styles */
.case-study-card.cta-card {
    background: var(--light-gray);
    border: 2px solid var(--primary-color);
}

.case-study-card.cta-card .case-study-content {
    text-align: center;
}

.case-study-card.cta-card .cta-button {
    margin-top: var(--spacing-md);
    background: var(--primary-color);
    color: var(--white);
}

.case-study-card.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
} 

/* Update Footer styles */
.footer a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    opacity: 0.8;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: var(--spacing-sm);
}

.legal-links a {
    margin-left: var(--spacing-md);
} 

/* Add/Update Logo styles */
.logo {
    width: 200px;
    height: auto;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    height: auto;
    max-height: 50px;
    object-fit: contain;
} 

/* Add Footer Logo Line styles */
.footer-logo {
    position: relative;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    display: block;
}

.footer-col {
    position: relative;
} 

/* Add Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 320px;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
}

.cookie-consent.active {
    display: block;
    animation: slideIn 0.5s ease;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.cookie-buttons button {
    padding: 8px 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.accept-cookies {
    background: var(--primary-color);
    color: var(--white);
}

.decline-cookies {
    background: var(--light-gray);
    color: var(--text-color);
} 

/* Add Legal Pages styles */
.legal-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 160px 20px 80px 20px;
}

.legal-page-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-lg);
}

.legal-page-content section {
    margin-bottom: var(--spacing-xl);
}

.legal-page-content section:last-child {
    margin-bottom: 0;
} 

/* Update Service Breakdown Section */
.service-breakdown {
    background: var(--light-gray);
    padding: 80px 20px;
}

/* Keep other service-breakdown styles the same */ 

/* Update Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    padding: 80px 20px;
    display: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    transform: translateX(0);
    display: block;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-links li {
    margin-bottom: 0;
}

.mobile-menu-links a {
    font-size: 1.1rem;
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 10px 0;
}

.mobile-menu-links .cta-button {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

/* Update existing mobile menu button styles */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-btn {
    z-index: 1000;
}

/* Add to Mobile Menu Styles section */
.mobile-menu-links h4 {
    margin-top: 20px;
} 

/* Update Protection Section styles */
@media (max-width: 768px) {
    .protection-grid {
        display: block;
        max-width: 100%;
        width: 100%;
    }

    .protection-item {
        display: flex;
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
        max-width: 100%;
        width: 100%;
    }

    .protection-item img {
        max-width: 50px;
        height: auto;
    }

    .protection-item-content {
        max-width: 100%;
        width: 100%;
    }
} 

/* Add to Mobile Menu Styles section */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    padding: 80px 20px;
    display: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Hide mobile menu and button above 900px */
@media (min-width: 901px) {
    .mobile-menu {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
} 