/* Custom CSS Variables */
:root {
    --primary-color: #112e4e !important;
    --primary-dark: #0d2338 !important;
    --primary-light: #1a4266 !important;
}

/* Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
}

html {
    scroll-behavior: smooth;
}

.primary-color {
    color: var(--primary-color);
}

/* Utility Classes */
.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.hover-white:hover {
    color: white !important;
}

/* Header/Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.brand-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 8px;
    color: white;
    font-size: 1.5rem;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-left: 0.5rem;
}

.nav-link {
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-ghost {
    background: transparent;
    border: none;
    color: #6b7280;
}

.btn-ghost:hover {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
    color: white;
    padding-bottom:50px;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
    opacity: 0.9;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-stats {
    padding-top: 2rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Store Logos Section */
.logo-item {
    cursor: pointer;
    transition: transform 0.3s;
}

.logo-item:hover {
    transform: scale(1.1);
}

.logo-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
    font-size: 2rem;
}

.logo-name {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    transition: color 0.3s;
}

.logo-item:hover .logo-name {
    color: var(--primary-color);
}

/* Features Section */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s, transform 0.3s;
    height: 100%;
}

.feature-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.template-image {
    position: relative;
    overflow: hidden;
    height: 260px; /* required */
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.template-image:hover { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); }
.template-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transform: translateY(0);
    will-change: transform;
}
a{
    text-decoration: none !important;
}
.template-badge { position: absolute; top: 1rem; left: 1rem; padding: 0.5rem 1rem; border-radius: 50px; color: white; font-size: 0.875rem; font-weight: 500; z-index: 2; }

/* Pricing Section */
.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Popular Plan */
.pricing-card.popular {
    border: 2px solid var(--primary-color);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Price */
.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    color: #6b7280;
}

/* Body Grow */
.pricing-body {
    flex-grow: 1;
}

/* Description height control */
.plan-description {
    min-height: 60px;
    font-size: 0.95rem;
    text-align: center;
}

/* Features */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #6b7280;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: #10b981;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonial-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    opacity: 0.1;
    font-size: 4rem;
    color: var(--primary-color);
}

.rating i {
    color: #fbbf24;
    font-size: 1.125rem;
}

.testimonial-text {
    color: #4b5563;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    object-fit: cover;
}

.stat-item .stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-item .stat-label {
    color: #6b7280;
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
    color: white;
    padding: 80px 0;
}

.cta-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.cta-background::before,
.cta-background::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.cta-background::before {
    top: 40px;
    left: 40px;
    width: 288px;
    height: 288px;
    background: white;
}

.cta-background::after {
    bottom: 40px;
    right: 40px;
    width: 384px;
    height: 384px;
    background: #93c5fd;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-benefit i {
    font-size: 1.25rem;
}

/* Footer */
.footer-section {
    background-color: var(--primary-color);
    color: white;
}

.footer-brand-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0 100px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
}

@media (max-width: 767px) {
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .stat-divider {
        display: none;
    }
}

/* About Page Styles */
.mission-card {
    background: #f9fafb;
    border-radius: 12px;
    height: 100%;
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.timeline-content {
    padding-left: 1rem;
}

.value-card {
    padding: 1.5rem;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.team-card {
    text-align: center;
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.team-social {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.team-social a {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.team-social a:hover {
    background-color: var(--primary-dark);
}

.about-stat {
    padding: 1rem;
}

.about-stat .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.about-stat .stat-label {
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Contact Page Styles */
.contact-method-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    transition: box-shadow 0.3s, transform 0.3s;
    height: 100%;
}

.contact-method-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.contact-form-wrapper {
    max-width: 100%;
}

.form-label {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(17, 46, 78, 0.15);
}

.office-card {
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    height: 100%;
}

.office-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(17, 46, 78, 0.15);
}

/* Templates Page Styles */


.template-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.template-feature {
    padding: 1.5rem;
}

.template-feature i {
    font-size: 3rem;
    color: var(--primary-color);
}

#noResults {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Careers Page Styles */
.hero-stat-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
    font-weight: 500;
}

.benefit-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
}

.benefit-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.job-filter .nav-link {
    color: var(--primary-color);
    border-color: var(--primary-color);
    margin: 0 0.25rem;
}

.job-filter .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

.job-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s, transform 0.3s;
    height: 100%;
}

.job-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.job-type {
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: #6b7280;
}

.job-meta {
    margin-top: 0.5rem;
}

/* Blog Page Styles */
.featured-post-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.featured-post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s, transform 0.3s;
}

.blog-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.newsletter-card {
    background: #f9fafb;
    border-radius: 16px;
}

/* Press Page Styles */
.press-stat .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
}

.press-release-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.press-date {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.news-card {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    transition: box-shadow 0.3s, transform 0.3s;
    height: 100%;
}

.news-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.news-source {
    display: flex;
    align-items: center;
}

.media-contact-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.contact-info i {
    font-size: 2rem;
    display: block;
}

.brand-asset-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e5e7eb;
    height: 100%;
}

/* Partners Page Styles */
.partner-benefit-card {
    padding: 2rem;
    transition: transform 0.3s;
}

.partner-benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-icon-large {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.partner-program-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
}

.partner-program-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.partner-program-card.featured-program {
    border: 2px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.program-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.program-benefits {
    padding-left: 0;
    list-style: none;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.benefit-item i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.partner-logo-item {
    text-align: center;
    transition: transform 0.3s;
    cursor: pointer;
}

.partner-logo-item:hover {
    transform: scale(1.1);
}

.partner-logo-box {
    width: 80px;
    height: 80px;
    background: #f9fafb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 2.5rem;
    color: var(--primary-color);
}

.partner-name {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
}

.partner-story-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.story-quote {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
}
    .btn.active,
    .btn.focus{
        background: var(--primary-color);
        border: 2px solid var(--primary-color);
    }
    .bg-primary{
             background: var(--primary-color) !important;
    }
    .active>.page-link {
    background:  var(--primary-color) !important;
    border: 2px solid var(--primary-color);
}
.page-link{
    color: var(--primary-color);
}

  /* Community Page Styles */
    .comm-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Community Hero */
    .comm-hero {
        padding: 120px 0 100px;
        background: linear-gradient(135deg, #112e4e 0%, #1a4a7a 100%);
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .comm-hero:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23112e4e' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
        animation: comm-float 20s linear infinite;
    }

    .comm-hero-content {
        position: relative;
        z-index: 2;
        animation: comm-fadeInUp 1s ease-out;
    }

    .comm-hero h1 {
        font-size: 3.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .comm-hero p {
        font-size: 1.2rem;
        margin-bottom: 40px;
        opacity: 0.9;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }

    .comm-stats {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin-top: 60px;
        flex-wrap: wrap;
    }

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

    .comm-stat-number {
        font-size: 3rem;
        font-weight: 700;
        color: white;
        display: block;
        margin-bottom: 10px;
        animation: comm-countUp 2s ease-out;
    }

    .comm-stat-label {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
    }

    /* Community Features */
    .comm-features {
        padding: 100px 0;
        background-color: #f8fafc;
    }

    .comm-section-title {
        text-align: center;
        margin-bottom: 70px;
    }

    .comm-section-title h2 {
        font-size: 2.5rem;
        color: #112e4e;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .comm-section-title h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: #112e4e;
        border-radius: 2px;
    }

    .comm-section-title p {
        color: #666;
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.1rem;
        line-height: 1.7;
    }

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

    .comm-feature-card {
        background-color: white;
        border-radius: 20px;
        padding: 40px 30px;
        box-shadow: 0 10px 30px rgba(17, 46, 78, 0.1);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid #eef2f7;
        text-align: center;
    }

    .comm-feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(17, 46, 78, 0.15);
        border-color: #112e4e;
    }

    .comm-feature-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #112e4e, #1a4a7a);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        color: white;
        font-size: 32px;
        transition: all 0.4s ease;
    }

    .comm-feature-card:hover .comm-feature-icon {
        transform: rotateY(360deg);
        background: linear-gradient(135deg, #1a4a7a, #112e4e);
    }

    .comm-feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #112e4e;
    }

    .comm-feature-card p {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.7;
    }

    /* Community Forum */
    .comm-forum {
        padding: 100px 0;
        background-color: white;
    }

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

    .comm-forum-card {
        background-color: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 8px 25px rgba(17, 46, 78, 0.1);
        transition: all 0.3s ease;
        border: 1px solid #eef2f7;
    }

    .comm-forum-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(17, 46, 78, 0.15);
        border-color: #112e4e;
    }

    .comm-forum-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .comm-forum-avatar {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #112e4e, #1a4a7a);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 600;
        font-size: 1.2rem;
    }

    .comm-forum-user h4 {
        color: #112e4e;
        margin-bottom: 5px;
        font-size: 1.1rem;
    }

    .comm-forum-user p {
        color: #666;
        font-size: 0.9rem;
        opacity: 0.8;
    }

    .comm-forum-content h4 {
        color: #112e4e;
        margin-bottom: 10px;
        font-size: 1.2rem;
    }

    .comm-forum-content p {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .comm-forum-stats {
        display: flex;
        gap: 20px;
        padding-top: 20px;
        border-top: 1px solid #eef2f7;
    }

    .comm-forum-stat {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #666;
        font-size: 0.9rem;
    }

    .comm-forum-stat i {
        color: #112e4e;
    }

    /* Events Section */
    .comm-events {
        padding: 100px 0;
        background-color: #f0f7ff;
    }

    .comm-events-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .comm-event-card {
        background-color: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(17, 46, 78, 0.1);
        transition: all 0.3s ease;
    }

    .comm-event-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(17, 46, 78, 0.15);
    }

    .comm-event-date {
        background: linear-gradient(135deg, #112e4e, #1a4a7a);
        color: white;
        padding: 20px;
        text-align: center;
    }

    .comm-event-day {
        font-size: 2.5rem;
        font-weight: 700;
        display: block;
    }

    .comm-event-month {
        font-size: 1.1rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .comm-event-content {
        padding: 25px;
    }

    .comm-event-content h4 {
        color: #112e4e;
        margin-bottom: 10px;
        font-size: 1.3rem;
    }

    .comm-event-content p {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .comm-event-details {
        display: flex;
        gap: 15px;
        color: #666;
        font-size: 0.9rem;
    }

    .comm-event-detail {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .comm-event-detail i {
        color: #112e4e;
    }

    /* Join CTA */
    .comm-join {
        padding: 100px 0;
        background: linear-gradient(135deg, #112e4e 0%, #1a4a7a 100%);
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .comm-join:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
        animation: comm-float 25s linear infinite reverse;
    }

    .comm-join-content {
        position: relative;
        z-index: 2;
    }

    .comm-join h2 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .comm-join p {
        font-size: 1.2rem;
        margin-bottom: 40px;
        opacity: 0.9;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }

    .comm-join-button {
        background-color: white;
        color: #112e4e;
        border: none;
        padding: 18px 50px;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.4s ease;
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        font-size: 1.1rem;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        animation: comm-pulse 2s infinite;
    }

    .comm-join-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4);
        background-color: #f8fafc;
    }

    /* Animations */
    @keyframes comm-fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes comm-float {
        0% {
            transform: translateY(0) rotate(0deg);
        }
        100% {
            transform: translateY(-100px) rotate(360deg);
        }
    }

    @keyframes comm-countUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes comm-pulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .comm-hero h1 {
            font-size: 2.8rem;
        }
        
        .comm-stats {
            gap: 40px;
        }
        
        .comm-section-title h2 {
            font-size: 2.2rem;
        }

        .comm-join h2 {
            font-size: 2.4rem;
        }

        .comm-forum-grid,
        .comm-events-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .comm-hero {
            padding: 100px 0 80px;
        }

        .comm-hero h1 {
            font-size: 2.2rem;
        }
        
        .comm-section-title h2 {
            font-size: 2rem;
        }
        
        .comm-features-grid {
            grid-template-columns: 1fr;
        }

        .comm-stats {
            gap: 30px;
        }

        .comm-stat-number {
            font-size: 2.5rem;
        }

        .comm-join h2 {
            font-size: 2rem;
        }

        .comm-join p {
            font-size: 1.1rem;
        }
    }

    @media (max-width: 480px) {
        .comm-hero h1 {
            font-size: 1.8rem;
        }

        .comm-hero p {
            font-size: 1rem;
        }

        .comm-stats {
            gap: 20px;
        }

        .comm-stat-number {
            font-size: 2rem;
        }

        .comm-feature-card,
        .comm-forum-card,
        .comm-event-card {
            padding: 25px 20px;
        }

        .comm-join-button {
            padding: 15px 35px;
            font-size: 1rem;
        }
    }
       /* Cookie Policy Page Styles */
    .cookie-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Hero Section */
    .cookie-hero {
        padding: 120px 0 60px;
        background: linear-gradient(135deg, #112e4e 0%, #1a4a7a 100%);
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cookie-hero:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23112e4e' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
        animation: cookie-float 20s linear infinite;
    }

    .cookie-hero-content {
        position: relative;
        z-index: 2;
        animation: cookie-fadeInUp 1s ease-out;
    }

    .cookie-hero h1 {
        font-size: 3.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .cookie-hero p {
        font-size: 1.2rem;
        margin-bottom: 40px;
        opacity: 0.9;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }

    .cookie-hero-icon {
        font-size: 4rem;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.9);
        animation: cookie-rotate 20s linear infinite;
    }

    .cookie-last-updated {
        background-color: rgba(255, 255, 255, 0.1);
        display: inline-block;
        padding: 10px 25px;
        border-radius: 50px;
        font-size: 0.95rem;
        margin-top: 20px;
    }

    /* Content Navigation */
    .cookie-nav {
        background-color: #f8fafc;
        padding: 30px 0;
        border-bottom: 1px solid #eef2f7;
        position: sticky;
        top: 45px;
        z-index: 100;
        box-shadow: 0 2px 10px rgba(17, 46, 78, 0.05);
    }

    .cookie-nav-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .cookie-nav-content {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .cookie-nav-link {
        background-color: white;
        color: #112e4e;
        text-decoration: none;
        padding: 8px 14px;
        border-radius: 50px;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 2px solid #eef2f7;
        font-size: 0.95rem;
    }

    .cookie-nav-link:hover {
        background-color: #112e4e;
        color: white;
        border-color: #112e4e;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(17, 46, 78, 0.1);
    }

    .cookie-nav-link.active {
        background-color: #112e4e;
        color: white;
        border-color: #112e4e;
        font-weight: 600;
    }

    /* Content Section */
    .cookie-content {
        padding: 80px 0;
        background-color: white;
    }

    .cookie-section {
        margin-bottom: 60px;
        animation: cookie-fadeInUp 0.8s ease-out;
        animation-fill-mode: both;
    }

    .cookie-section:nth-child(1) { animation-delay: 0.1s; }
    .cookie-section:nth-child(2) { animation-delay: 0.2s; }
    .cookie-section:nth-child(3) { animation-delay: 0.3s; }
    .cookie-section:nth-child(4) { animation-delay: 0.4s; }
    .cookie-section:nth-child(5) { animation-delay: 0.5s; }
    .cookie-section:nth-child(6) { animation-delay: 0.6s; }
    .cookie-section:nth-child(7) { animation-delay: 0.7s; }
    .cookie-section:nth-child(8) { animation-delay: 0.8s; }

    .cookie-section-title {
        color: #112e4e;
        font-size: 1.8rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 3px solid #f0f7ff;
        position: relative;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .cookie-section-title:after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: #112e4e;
    }

    .cookie-section-title i {
        font-size: 1.5rem;
        color: #112e4e;
    }

    .cookie-text {
        color: #444;
        line-height: 1.8;
        margin-bottom: 25px;
        font-size: 1.05rem;
    }

    .cookie-list {
        margin: 20px 0 30px 40px;
        color: #444;
        line-height: 1.8;
    }

    .cookie-list li {
        margin-bottom: 12px;
        position: relative;
        padding-left: 25px;
    }

    .cookie-list li:before {
        content: '•';
        color: #112e4e;
        font-size: 1.5rem;
        position: absolute;
        left: 0;
        top: -5px;
    }

    .cookie-subsection {
        margin: 25px 0 30px 20px;
    }

    .cookie-subsection-title {
        color: #112e4e;
        font-size: 1.3rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

    /* Cookie Types */
    .cookie-types {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin: 40px 0;
    }

    .cookie-type-card {
        background-color: #f8fafc;
        border-radius: 15px;
        padding: 30px;
        border: 2px solid #eef2f7;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .cookie-type-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(17, 46, 78, 0.1);
        border-color: #112e4e;
    }

    .cookie-type-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #112e4e, #1a4a7a);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .cookie-type-title {
        color: #112e4e;
        font-size: 1.3rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .cookie-type-desc {
        color: #666;
        line-height: 1.6;
        font-size: 0.95rem;
    }

    /* Cookie Table */
    .cookie-table-container {
        overflow-x: auto;
        margin: 40px 0;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(17, 46, 78, 0.1);
        border: 1px solid #eef2f7;
    }

    .cookie-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }

    .cookie-table th {
        background-color: #112e4e;
        color: white;
        padding: 20px;
        text-align: left;
        font-weight: 600;
        font-size: 1rem;
    }

    .cookie-table td {
        padding: 20px;
        border-bottom: 1px solid #eef2f7;
        color: #444;
        vertical-align: top;
    }

    .cookie-table tr:last-child td {
        border-bottom: none;
    }

    .cookie-table tr:hover td {
        background-color: #f8fafc;
    }

    .cookie-purpose {
        background-color: #f0f7ff;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Cookie Controls */
    .cookie-controls {
        background: linear-gradient(135deg, #f8fafc, #f0f7ff);
        border-radius: 15px;
        padding: 40px;
        margin: 50px 0;
        border: 2px solid #eef2f7;
    }

    .cookie-controls-title {
        color: #112e4e;
        font-size: 1.6rem;
        margin-bottom: 25px;
        text-align: center;
    }

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

    .cookie-option {
        background-color: white;
        border-radius: 12px;
        padding: 25px;
        border: 2px solid #eef2f7;
        transition: all 0.3s ease;
    }

    .cookie-option:hover {
        border-color: #112e4e;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(17, 46, 78, 0.1);
    }

    .cookie-option-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .cookie-option-name {
        color: #112e4e;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .cookie-switch {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 26px;
    }

    .cookie-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .cookie-slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        transition: .4s;
        border-radius: 34px;
    }

    .cookie-slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

    input:checked + .cookie-slider {
        background-color: #112e4e;
    }

    input:checked + .cookie-slider:before {
        transform: translateX(24px);
    }

    .cookie-option-desc {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.5;
    }

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

    .cookie-button {
        background-color: #112e4e;
        color: white;
        border: none;
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .cookie-button:hover {
        background-color: #1a4a7a;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(17, 46, 78, 0.2);
    }

    .cookie-button.save {
        background: linear-gradient(135deg, #112e4e, #1a4a7a);
    }

    .cookie-button.reject {
        background-color: #6c757d;
    }

    .cookie-button.accept {
        background: linear-gradient(135deg, #198754, #20c997);
    }

    /* Info Boxes */
    .cookie-info {
        background-color: #f0f7ff;
        border-left: 4px solid #112e4e;
        padding: 20px;
        margin: 25px 0;
        border-radius: 0 8px 8px 0;
        color: #444;
        line-height: 1.7;
    }

    .cookie-info strong {
        color: #112e4e;
    }

    .cookie-warning {
        background-color: #fff3cd;
        border-left: 4px solid #ffc107;
        padding: 20px;
        margin: 25px 0;
        border-radius: 0 8px 8px 0;
        color: #856404;
        line-height: 1.7;
    }

    .cookie-warning strong {
        color: #856404;
    }

    /* Footer */
    .cookie-footer {
        padding: 60px 0;
        background-color: #f8fafc;
        border-top: 1px solid #eef2f7;
        text-align: center;
    }

    .cookie-footer p {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.7;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .cookie-back-button {
        background: linear-gradient(135deg, #112e4e, #1a4a7a);
        color: white;
        border: none;
        padding: 15px 40px;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.4s ease;
        box-shadow: 0 8px 20px rgba(17, 46, 78, 0.2);
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
    }

    .cookie-back-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(17, 46, 78, 0.3);
        background: linear-gradient(135deg, #1a4a7a, #112e4e);
    }

    /* Animations */
    @keyframes cookie-fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes cookie-float {
        0% {
            transform: translateY(0) rotate(0deg);
        }
        100% {
            transform: translateY(-100px) rotate(360deg);
        }
    }

    @keyframes cookie-rotate {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .cookie-hero h1 {
            font-size: 2.5rem;
        }
        
        .cookie-nav-content {
            justify-content: flex-start;
            overflow-x: auto;
            padding-bottom: 10px;
            flex-wrap: nowrap;
        }
        
        .cookie-nav-link {
            white-space: nowrap;
            flex-shrink: 0;
        }

        .cookie-types {
            grid-template-columns: 1fr;
        }

        .cookie-options {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .cookie-hero {
            padding: 100px 0 50px;
        }

        .cookie-hero h1 {
            font-size: 2rem;
        }
        
        .cookie-hero p {
            font-size: 1.1rem;
        }

        .cookie-section-title {
            font-size: 1.6rem;
        }

        .cookie-list {
            margin-left: 20px;
        }

        .cookie-controls {
            padding: 30px 20px;
        }

        .cookie-button {
            padding: 12px 30px;
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .cookie-hero h1 {
            font-size: 1.8rem;
        }

        .cookie-hero p {
            font-size: 1rem;
        }

        .cookie-section-title {
            font-size: 1.4rem;
        }

        .cookie-text {
            font-size: 1rem;
        }

        .cookie-back-button {
            padding: 12px 30px;
            font-size: 0.95rem;
        }

        .cookie-buttons {
            flex-direction: column;
            align-items: center;
        }

        .cookie-button {
            width: 100%;
            max-width: 250px;
            justify-content: center;
        }
    }
            * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        body {
            background-color: #f8fafc;
            color: #333;
            overflow-x: hidden;
            line-height: 1.6;
        }

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

        /* Header & Navigation */
        .ftr-header {
            background-color: #112e4e;
            padding: 20px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .ftr-navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .ftr-logo {
            font-size: 28px;
            font-weight: 700;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .ftr-logo i {
            color: #112e4e;
        }

        .ftr-nav-links {
            display: flex;
            gap: 30px;
        }

        .ftr-nav-links a {
            color: #f8f9fa;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            padding: 8px 0;
            position: relative;
        }

        .ftr-nav-links a:hover {
            color: #112e4e;
        }

        .ftr-nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #112e4e;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        }

        .ftr-nav-links a:hover::after {
            width: 100%;
        }

        .ftr-cta-button {
            background-color: #112e4e;
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
        }

        .ftr-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(58, 134, 255, 0.4);
        }

        /* White button for dark blue backgrounds */
        .ftr-dark-bg .ftr-cta-button {
            background-color: white;
            color: #112e4e;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
        }

        .ftr-dark-bg .ftr-cta-button:hover {
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
        }

        /* Hero Section */
        .ftr-hero {
            padding: 160px 0 100px;
            background: linear-gradient(135deg, #112e4e 0%, #1a4a7a 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .ftr-hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }

        .ftr-hero-text {
            flex: 1;
            animation: ftr-fadeInUp 1s ease-out;
        }

        .ftr-hero-text h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .ftr-hero-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 600px;
        }

        .ftr-hero-image {
            flex: 1;
            position: relative;
        }

        .ftr-store-preview {
            background-color: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(17, 46, 78, 0.15);
            padding: 20px;
            width: 100%;
            max-width: 500px;
            animation: ftr-float 6s ease-in-out infinite;
            transform-origin: center;
        }

        .ftr-store-header {
            background-color: #112e4e;
            height: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .ftr-store-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .ftr-product-item {
            background-color: #f5f9ff;
            border-radius: 10px;
            padding: 15px;
            height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            border: 2px solid transparent;
        }

        .ftr-product-item:hover {
            transform: translateY(-5px);
            border-color: #112e4e;
        }

        .ftr-product-icon {
            width: 40px;
            height: 40px;
            background-color: #112e4e;
            border-radius: 50%;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .ftr-product-item p {
            font-size: 0.9rem;
            color: #333;
            text-align: center;
        }

        /* Features Section */
        .ftr-features {
            padding: 100px 0;
        }

        .ftr-section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .ftr-section-title h2 {
            font-size: 2.5rem;
            color: #112e4e;
            margin-bottom: 15px;
        }

        .ftr-section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

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

        .ftr-feature-card {
            background-color: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(17, 46, 78, 0.15);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            position: relative;
            overflow: hidden;
        }

        .ftr-feature-card:hover {
            transform: translateY(-15px);
        }

        .ftr-feature-card:nth-child(1):hover {
            box-shadow: 0 15px 40px rgba(58, 134, 255, 0.2);
        }

        .ftr-feature-card:nth-child(2):hover {
            box-shadow: 0 15px 40px rgba(26, 74, 122, 0.2);
        }

        .ftr-feature-card:nth-child(3):hover {
            box-shadow: 0 15px 40px rgba(17, 46, 78, 0.2);
        }

        .ftr-feature-icon {
            width: 70px;
            height: 70px;
            background-color: #f0f7ff;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: #112e4e;
            font-size: 28px;
        }

        .ftr-feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #112e4e;
        }

        .ftr-feature-card p {
            color: #666;
            margin-bottom: 20px;
        }

        .ftr-feature-highlight {
            color: #112e4e;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* How It Works */
        .ftr-how-it-works {
            padding: 80px 0;
            background-color: #f0f7ff;
        }

        .ftr-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            
        }

        .ftr-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            width: 80%;
            height: 3px;
            background-color: #112e4e;
            z-index: 1;

        }

        .ftr-step {
            background-color: white;
            border-radius: 50%;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 700;
            color: #112e4e;
            box-shadow: 0 10px 30px rgba(17, 46, 78, 0.15);
            position: relative;
            z-index: 2;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            left: 90px;
        }

        .ftr-step:hover {
            transform: scale(1.1);
            background-color: #112e4e;
            color: white;
        }

        .ftr-step-container {
            text-align: center;
            max-width: 250px;
        }

        .ftr-step-content {
            text-align: center;
            margin-top: 30px;
        }

        .ftr-step-content h4 {
            color: #112e4e;
            margin-bottom: 10px;
        }

        /* CTA Section */
        .ftr-cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #112e4e 0%, #1a4a7a 100%);
            color: white;
            text-align: center;
        }

        .ftr-cta-section h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

        .ftr-cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        /* Footer */
        .ftr-footer {
            background-color: #0d2440;
            color: #f8f9fa;
            padding: 60px 0 30px;
        }

        .ftr-footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }

        .ftr-footer-column {
            flex: 1;
            min-width: 250px;
        }

        .ftr-footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: white;
        }

        .ftr-footer-links {
            list-style: none;
        }

        .ftr-footer-links li {
            margin-bottom: 12px;
        }

        .ftr-footer-links a {
            color: #b0c4de;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        }

        .ftr-footer-links a:hover {
            color: #112e4e;
            padding-left: 5px;
        }

        .ftr-copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #1a4a7a;
            color: #b0c4de;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes ftr-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes ftr-float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes ftr-pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .ftr-pulse {
            animation: ftr-pulse 2s infinite;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .ftr-hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .ftr-hero-text h1 {
                font-size: 2.8rem;
            }
            
            .ftr-steps {
                flex-direction: column;
                align-items: center;
                gap: 50px;
            }
            
            .ftr-steps::before {
                display: none;
            }
            
            .ftr-step-content {
                margin-top: 15px;
            }
        }

        @media (max-width: 768px) {
            .ftr-nav-links {
                display: none;
            }
            
            .ftr-hero-text h1 {
                font-size: 2.2rem;
            }
            
            .ftr-section-title h2 {
                font-size: 2rem;
            }
            
            .ftr-features-grid {
                grid-template-columns: 1fr;
            }
        }
      /* Help Center Page Styles - No Search */
    .help-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Hero Section */
    .help-hero {
        padding: 140px 0 80px;
        background: linear-gradient(135deg, #112e4e 0%, #1a4a7a 100%);
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    /* .help-hero:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.4;
        animation: help-float 25s linear infinite;
    } */

    .help-hero-content {
        position: relative;
        z-index: 2;
        animation: help-fadeInUp 1s ease-out;
    }

    .help-hero-icon {
        width: 100px;
        height: 100px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        color: white;
        font-size: 48px;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        animation: help-pulse 3s infinite alternate;
    }

    .help-hero h1 {
        font-size: 3.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        font-weight: 700;
    }

    .help-hero p {
        font-size: 1.3rem;
        margin-bottom: 40px;
        opacity: 0.9;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }

    .help-stats {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin-top: 60px;
        flex-wrap: wrap;
    }

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

    .help-stat-number {
        font-size: 3rem;
        font-weight: 700;
        color: white;
        display: block;
        margin-bottom: 10px;
        animation: help-countUp 2s ease-out;
    }

    .help-stat-label {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
    }

    /* Quick Help Section */
    .help-quick {
        padding: 100px 0;
        background-color: #f8fafc;
    }

    .help-section-title {
        text-align: center;
        margin-bottom: 70px;
    }

    .help-section-title h2 {
        font-size: 2.8rem;
        color: #112e4e;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .help-section-title h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 5px;
        background: linear-gradient(90deg, #112e4e, #3a86ff);
        border-radius: 3px;
    }

    .help-section-title p {
        color: #666;
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.2rem;
        line-height: 1.7;
    }

    .help-quick-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-top: 50px;
    }

    .help-quick-card {
        background-color: white;
        border-radius: 20px;
        padding: 50px 40px;
        text-align: center;
        box-shadow: 0 15px 40px rgba(17, 46, 78, 0.1);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 2px solid #eef2f7;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .help-quick-card:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #112e4e, #3a86ff);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
    }

    .help-quick-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 60px rgba(17, 46, 78, 0.15);
        border-color: #112e4e;
    }

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

    .help-quick-icon {
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, #112e4e, #1a4a7a);
        border-radius: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        color: white;
        font-size: 36px;
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
    }

    .help-quick-icon:after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
        transform: rotate(45deg);
        transition: transform 0.8s ease;
    }

    .help-quick-card:hover .help-quick-icon {
        transform: rotateY(360deg);
        background: linear-gradient(135deg, #1a4a7a, #112e4e);
    }

    .help-quick-card:hover .help-quick-icon:after {
        transform: rotate(225deg);
    }

    .help-quick-card h3 {
        color: #112e4e;
        font-size: 1.8rem;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .help-quick-card p {
        color: #666;
        line-height: 1.7;
        margin-bottom: 30px;
        font-size: 1.05rem;
    }

    .help-quick-link {
        color: #112e4e;
        font-weight: 600;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
    }

    .help-quick-card:hover .help-quick-link {
        color: #3a86ff;
        transform: translateX(10px);
    }

    /* Video Guides */
    .help-videos {
        padding: 100px 0;
        background-color: white;
    }

    .help-video-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        margin-top: 50px;
    }

    .help-video-card {
        background-color: #f8fafc;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(17, 46, 78, 0.1);
        transition: all 0.4s ease;
        cursor: pointer;
        border: 2px solid #eef2f7;
    }

    .help-video-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(17, 46, 78, 0.15);
        border-color: #112e4e;
    }

    .help-video-thumbnail {
        height: 220px;
        background: linear-gradient(135deg, #112e4e, #1a4a7a);
        position: relative;
        overflow: hidden;
    }

    .help-video-thumbnail:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(17,46,78,0.8), rgba(58,134,255,0.6));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .help-video-card:hover .help-video-thumbnail:before {
        opacity: 1;
    }

    .help-video-play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70px;
        height: 70px;
        background-color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #112e4e;
        font-size: 24px;
        transition: all 0.3s ease;
    }

    .help-video-card:hover .help-video-play {
        background-color: #112e4e;
        color: white;
        transform: translate(-50%, -50%) scale(1.1);
    }

    .help-video-content {
        padding: 30px;
    }

    .help-video-content h4 {
        color: #112e4e;
        font-size: 1.4rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .help-video-content p {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .help-video-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 20px;
        border-top: 1px solid #eef2f7;
        font-size: 0.9rem;
        color: #888;
    }

    /* FAQ Section */
    .help-faq {
        padding: 100px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
    }

    .help-faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .help-faq-item {
        background-color: white;
        border-radius: 20px;
        margin-bottom: 25px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(17, 46, 78, 0.1);
        border: 2px solid #eef2f7;
        transition: all 0.4s ease;
    }

    .help-faq-item.active {
        border-color: #112e4e;
        box-shadow: 0 15px 40px rgba(17, 46, 78, 0.15);
        transform: translateY(-5px);
    }

    .help-faq-question {
        padding: 30px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
        background-color: white;
    }

    .help-faq-item.active .help-faq-question {
        background-color: #f0f7ff;
    }

    .help-faq-question h4 {
        color: #112e4e;
        font-size: 1.3rem;
        flex: 1;
        margin-right: 30px;
        line-height: 1.5;
        font-weight: 600;
    }

    .help-faq-number {
        width: 40px;
        height: 40px;
        background-color: #f0f7ff;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #112e4e;
        font-weight: 700;
        margin-right: 20px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .help-faq-item.active .help-faq-number {
        background: linear-gradient(135deg, #112e4e, #1a4a7a);
        color: white;
    }

    .help-faq-icon {
        color: #112e4e;
        font-size: 1.3rem;
        transition: all 0.5s ease;
    }

    .help-faq-item.active .help-faq-icon {
        transform: rotate(180deg);
        color: #112e4e;
    }

    .help-faq-answer {
        padding: 0 40px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s ease;
    }

    .help-faq-item.active .help-faq-answer {
        padding: 0 40px 40px;
        max-height: 1000px;
    }

    .help-faq-answer p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 20px;
        font-size: 1.05rem;
    }

    .help-faq-answer ul {
        margin: 20px 0 25px 40px;
        color: #666;
        line-height: 1.8;
    }

    .help-faq-answer li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 25px;
    }

    .help-faq-answer li:before {
        content: '✓';
        color: #112e4e;
        font-weight: bold;
        position: absolute;
        left: 0;
        top: 0;
    }

    /* Contact Section */
    .help-contact {
        padding: 100px 0;
        background: linear-gradient(135deg, #112e4e 0%, #1a4a7a 100%);
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .help-contact:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
        animation: help-float 30s linear infinite reverse;
    }

    .help-contact-content {
        position: relative;
        z-index: 2;
    }

    .help-contact h2 {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .help-contact p {
        font-size: 1.3rem;
        margin-bottom: 50px;
        opacity: 0.9;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }

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

    .help-contact-button {
        background-color: white;
        color: #112e4e;
        border: none;
        padding: 18px 45px;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.4s ease;
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        font-size: 1.1rem;
        display: inline-flex;
        align-items: center;
        gap: 15px;
        position: relative;
        overflow: hidden;
    }

    .help-contact-button:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: left 0.6s ease;
    }

    .help-contact-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
        background-color: #f8fafc;
    }

    .help-contact-button:hover:before {
        left: 100%;
    }

    .help-contact-button.primary {
        background: linear-gradient(135deg, #3a86ff, #112e4e);
        color: white;
        box-shadow: 0 10px 30px rgba(58, 134, 255, 0.3);
    }

    .help-contact-button.primary:hover {
        background: linear-gradient(135deg, #112e4e, #3a86ff);
        box-shadow: 0 15px 40px rgba(58, 134, 255, 0.4);
    }

    /* Animations */
    @keyframes help-fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes help-float {
        0% {
            transform: translateY(0) rotate(0deg);
        }
        100% {
            transform: translateY(-100px) rotate(360deg);
        }
    }

    @keyframes help-pulse {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
        }
        100% {
            transform: scale(1.05);
            box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        }
    }

    @keyframes help-countUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .help-hero h1 {
            font-size: 2.8rem;
        }
        
        .help-quick-grid,
        .help-video-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .help-stats {
            gap: 40px;
        }

        .help-contact-buttons {
            flex-direction: column;
            align-items: center;
        }

        .help-contact-button {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        .help-hero {
            padding: 120px 0 60px;
        }

        .help-hero h1 {
            font-size: 2.2rem;
        }
        
        .help-hero p {
            font-size: 1.1rem;
        }

        .help-section-title h2 {
            font-size: 2.2rem;
        }

        .help-quick-grid,
        .help-video-grid {
            grid-template-columns: 1fr;
        }

        .help-quick-card {
            padding: 40px 30px;
        }

        .help-stats {
            gap: 30px;
        }

        .help-stat-number {
            font-size: 2.5rem;
        }

        .help-contact h2 {
            font-size: 2.5rem;
        }

        .help-contact p {
            font-size: 1.1rem;
        }

        .help-faq-question {
            padding: 25px 30px;
        }

        .help-faq-answer {
            padding: 0 30px;
        }

        .help-faq-item.active .help-faq-answer {
            padding: 0 30px 30px;
        }
    }

    @media (max-width: 480px) {
        .help-hero h1 {
            font-size: 1.8rem;
        }

        .help-hero p {
            font-size: 1rem;
        }

        .help-section-title h2 {
            font-size: 1.8rem;
        }

        .help-quick-card {
            padding: 30px 20px;
        }

        .help-stats {
            gap: 20px;
        }

        .help-stat-number {
            font-size: 2rem;
        }

        .help-contact-button {
            padding: 15px 30px;
            font-size: 1rem;
        }
    }
    /* Pricing Page Styles */
    .prc-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Pricing Hero */
    .prc-hero {
        padding: 120px 0 80px;
        background: linear-gradient(135deg, #112e4e 0%, #1a4a7a 100%);
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .prc-hero:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23112e4e' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
        animation: prc-float 20s linear infinite;
    }

    .prc-hero-content {
        position: relative;
        z-index: 2;
        animation: prc-fadeInUp 1s ease-out;
    }

    .prc-hero h1 {
        font-size: 3.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .prc-hero p {
        font-size: 1.2rem;
        margin-bottom: 40px;
        opacity: 0.9;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }

    /* Pricing Switch */
    .prc-billing-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .prc-billing-label {
        font-size: 1.1rem;
        font-weight: 500;
        color: white;
        opacity: 0.9;
    }

    .prc-billing-label.active {
        opacity: 1;
        font-weight: 600;
    }

    .prc-switch {
        position: relative;
        display: inline-block;
        width: 70px;
        height: 34px;
    }

    .prc-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .prc-slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #1a4a7a;
        transition: .4s;
        border-radius: 34px;
    }

    .prc-slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

    input:checked + .prc-slider {
        background-color: #3a86ff;
    }

    input:checked + .prc-slider:before {
        transform: translateX(36px);
    }

    .prc-savings-badge {
        background-color: #3a86ff;
        color: white;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-left: 10px;
        animation: prc-pulse 2s infinite;
    }

    /* Pricing Plans */
    .prc-pricing {
        padding: 100px 0;
        background-color: #f8fafc;
    }

    .prc-section-title {
        text-align: center;
        margin-bottom: 70px;
    }

    .prc-section-title h2 {
        font-size: 2.5rem;
        color: #112e4e;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .prc-section-title h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: #112e4e;
        border-radius: 2px;
    }

    .prc-section-title p {
        color: #666;
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .prc-plans-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .prc-plan-card {
        background-color: white;
        border-radius: 20px;
        padding: 40px 30px;
        box-shadow: 0 10px 30px rgba(17, 46, 78, 0.1);
        transition: all 0.4s ease;
        position: relative;
        border: 2px solid #eef2f7;
        text-align: center;
    }

    .prc-plan-card.featured {
        border-color: #112e4e;
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(17, 46, 78, 0.15);
        position: relative;
        overflow: hidden;
    }

    .prc-plan-card.featured:before {
        content: 'Most Popular';
        position: absolute;
        top: 20px;
        right: -35px;
        background: linear-gradient(135deg, #112e4e, #1a4a7a);
        color: white;
        padding: 8px 40px;
        font-size: 0.9rem;
        font-weight: 600;
        transform: rotate(45deg);
        letter-spacing: 1px;
    }

    .prc-plan-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(17, 46, 78, 0.15);
        border-color: #112e4e;
    }

    .prc-plan-card.featured:hover {
        transform: translateY(-10px) scale(1.05);
    }

    .prc-plan-header {
        margin-bottom: 30px;
    }

    .prc-plan-name {
        font-size: 1.8rem;
        color: #112e4e;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .prc-plan-description {
        color: #666;
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .prc-plan-price {
        margin-bottom: 30px;
    }

    .prc-price-amount {
        font-size: 3.5rem;
        font-weight: 700;
        color: #112e4e;
        line-height: 1;
    }

    .prc-price-period {
        color: #666;
        font-size: 1rem;
        margin-top: 10px;
    }

    .prc-price-note {
        font-size: 0.9rem;
        color: #888;
        margin-top: 5px;
    }

    .prc-plan-features {
        text-align: left;
        margin-bottom: 40px;
    }

    .prc-feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
        color: #444;
        font-size: 1rem;
    }

    .prc-feature-item i {
        color: #112e4e;
        font-size: 1.1rem;
    }

    .prc-feature-item.disabled {
        color: #aaa;
    }

    .prc-feature-item.disabled i {
        color: #ccc;
    }

    .prc-plan-button {
        background: linear-gradient(135deg, #112e4e, #1a4a7a);
        color: white;
        border: none;
        padding: 16px 40px;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.4s ease;
        box-shadow: 0 8px 20px rgba(17, 46, 78, 0.2);
        font-size: 1.1rem;
        width: 100%;
        display: block;
        text-align: center;
    }

    .prc-plan-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(17, 46, 78, 0.3);
        background: linear-gradient(135deg, #1a4a7a, #112e4e);
    }

    .prc-plan-button.secondary {
        background: #f0f7ff;
        color: #112e4e;
        box-shadow: 0 8px 20px rgba(17, 46, 78, 0.1);
    }

    .prc-plan-button.secondary:hover {
        background: #e1ecf7;
        box-shadow: 0 12px 25px rgba(17, 46, 78, 0.15);
    }

    /* Compare Plans */
    .prc-compare {
        padding: 100px 0;
        background-color: white;
    }

    .prc-compare-table {
        overflow-x: auto;
        margin-top: 50px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(17, 46, 78, 0.1);
    }

    .prc-compare-table table {
        width: 100%;
        border-collapse: collapse;
        min-width: 800px;
    }

    .prc-compare-table th {
        background-color: #112e4e;
        color: white;
        padding: 25px 20px;
        text-align: center;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .prc-compare-table th:first-child {
        background-color: #1a4a7a;
        text-align: left;
        border-radius: 15px 0 0 0;
    }

    .prc-compare-table th:last-child {
        border-radius: 0 15px 0 0;
    }

    .prc-compare-table td {
        padding: 20px;
        border-bottom: 1px solid #eef2f7;
        text-align: center;
        color: #444;
    }

    .prc-compare-table td:first-child {
        text-align: left;
        font-weight: 500;
        color: #112e4e;
        background-color: #f8fafc;
    }

    .prc-compare-table tr:last-child td {
        border-bottom: none;
    }

    .prc-check {
        color: #112e4e;
        font-size: 1.2rem;
    }

    .prc-cross {
        color: #ccc;
        font-size: 1.2rem;
    }

    /* FAQ Section */
    .prc-faq {
        padding: 100px 0;
        background-color: #f0f7ff;
    }

    .prc-faq-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    @media (max-width: 600px) {
        .prc-faq-grid {
            grid-template-columns: 1fr;
        }
    }

    .prc-faq-item {
        background-color: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 8px 25px rgba(17, 46, 78, 0.1);
        transition: all 0.3s ease;
        border: 1px solid #eef2f7;
    }

    .prc-faq-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(17, 46, 78, 0.15);
        border-color: #112e4e;
    }

    .prc-faq-question {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 15px;
    }

    .prc-faq-icon {
        width: 30px;
        height: 30px;
        background-color: #f0f7ff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #112e4e;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .prc-faq-question h4 {
        color: #112e4e;
        font-size: 1.2rem;
        line-height: 1.4;
        flex: 1;
    }

    .prc-faq-answer p {
        color: #666;
        line-height: 1.6;
        padding-left: 45px;
    }

    /* CTA Section */
    .prc-cta {
        padding: 100px 0;
        background: linear-gradient(135deg, #112e4e 0%, #1a4a7a 100%);
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .prc-cta:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
        animation: prc-float 25s linear infinite reverse;
    }

    .prc-cta-content {
        position: relative;
        z-index: 2;
    }

    .prc-cta h2 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .prc-cta p {
        font-size: 1.2rem;
        margin-bottom: 40px;
        opacity: 0.9;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }

    .prc-cta-button {
        background-color: white;
        color: #112e4e;
        border: none;
        padding: 18px 50px;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.4s ease;
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        font-size: 1.1rem;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        animation: prc-pulse 2s infinite;
    }

    .prc-cta-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4);
        background-color: #f8fafc;
    }

    /* Animations */
    @keyframes prc-fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes prc-float {
        0% {
            transform: translateY(0) rotate(0deg);
        }
        100% {
            transform: translateY(-100px) rotate(360deg);
        }
    }

    @keyframes prc-pulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .prc-hero h1 {
            font-size: 2.8rem;
        }
        
        .prc-plans-grid {
            grid-template-columns: 1fr;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .prc-plan-card.featured {
            transform: scale(1);
        }
        
        .prc-plan-card.featured:hover {
            transform: translateY(-10px);
        }
        
        .prc-section-title h2 {
            font-size: 2.2rem;
        }

        .prc-cta h2 {
            font-size: 2.4rem;
        }
    }

    @media (max-width: 768px) {
        .prc-hero {
            padding: 100px 0 60px;
        }

        .prc-hero h1 {
            font-size: 2.2rem;
        }
        
        .prc-section-title h2 {
            font-size: 2rem;
        }

        .prc-cta h2 {
            font-size: 2rem;
        }

        .prc-cta p {
            font-size: 1.1rem;
        }

        .prc-price-amount {
            font-size: 2.8rem;
        }
    }

    @media (max-width: 480px) {
        .prc-hero h1 {
            font-size: 1.8rem;
        }

        .prc-hero p {
            font-size: 1rem;
        }

        .prc-billing-toggle {
            flex-direction: column;
            gap: 15px;
        }

        .prc-plan-card {
            padding: 30px 20px;
        }

        .prc-cta-button {
            padding: 15px 35px;
            font-size: 1rem;
        }
    }
        /* Privacy & Terms Pages Styles */
    .policy-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Hero Section */
    .policy-hero {
        padding: 120px 0 60px;
        background: linear-gradient(135deg, #112e4e 0%, #1a4a7a 100%);
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .policy-hero:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23112e4e' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
        animation: policy-float 20s linear infinite;
    }

    .policy-hero-content {
        position: relative;
        z-index: 2;
        animation: policy-fadeInUp 1s ease-out;
    }

    .policy-hero h1 {
        font-size: 3.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .policy-hero p {
        font-size: 1.2rem;
        margin-bottom: 40px;
        opacity: 0.9;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }

    .policy-last-updated {
        background-color: rgba(255, 255, 255, 0.1);
        display: inline-block;
        padding: 10px 25px;
        border-radius: 50px;
        font-size: 0.95rem;
        margin-top: 20px;
    }

    /* Content Navigation */
    .policy-nav {
        background-color: #f8fafc;
        padding: 30px 0;
        border-bottom: 1px solid #eef2f7;
        position: sticky;
        top: 45px;
        z-index: 100;
        box-shadow: 0 2px 10px rgba(17, 46, 78, 0.05);
  
    }

    .policy-nav-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .policy-nav-content {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .policy-nav-link {
        background-color: white;
        color: #112e4e;
        text-decoration: none;
        padding: 8px 14px;
        border-radius: 50px;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 2px solid #eef2f7;
        font-size: 0.95rem;
    }

    .policy-nav-link:hover {
        background-color: #112e4e;
        color: white;
        border-color: #112e4e;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(17, 46, 78, 0.1);
    }

    .policy-nav-link.active {
        background-color: #112e4e;
        color: white;
        border-color: #112e4e;
        font-weight: 600;
    }

    /* Content Section */
    .policy-content {
        padding: 80px 0;
        background-color: white;
    }

    .policy-section {
        margin-bottom: 60px;
        animation: policy-fadeInUp 0.8s ease-out;
        animation-fill-mode: both;
    }

    .policy-section:nth-child(1) { animation-delay: 0.1s; }
    .policy-section:nth-child(2) { animation-delay: 0.2s; }
    .policy-section:nth-child(3) { animation-delay: 0.3s; }
    .policy-section:nth-child(4) { animation-delay: 0.4s; }
    .policy-section:nth-child(5) { animation-delay: 0.5s; }
    .policy-section:nth-child(6) { animation-delay: 0.6s; }
    .policy-section:nth-child(7) { animation-delay: 0.7s; }
    .policy-section:nth-child(8) { animation-delay: 0.8s; }

    .policy-section-title {
        color: #112e4e;
        font-size: 1.8rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 3px solid #f0f7ff;
        position: relative;
    }

    .policy-section-title:after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: #112e4e;
    }

    .policy-text {
        color: #444;
        line-height: 1.8;
        margin-bottom: 25px;
        font-size: 1.05rem;
    }

    .policy-list {
        margin: 20px 0 30px 40px;
        color: #444;
        line-height: 1.8;
    }

    .policy-list li {
        margin-bottom: 12px;
        position: relative;
        padding-left: 25px;
    }

    .policy-list li:before {
        content: '•';
        color: #112e4e;
        font-size: 1.5rem;
        position: absolute;
        left: 0;
        top: -5px;
    }

    .policy-subsection {
        margin: 25px 0 30px 20px;
    }

    .policy-subsection-title {
        color: #112e4e;
        font-size: 1.3rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .policy-note {
        background-color: #f0f7ff;
        border-left: 4px solid #112e4e;
        padding: 20px;
        margin: 25px 0;
        border-radius: 0 8px 8px 0;
        color: #444;
        line-height: 1.7;
    }

    .policy-note strong {
        color: #112e4e;
    }

    .policy-contact {
        background: linear-gradient(135deg, #f8fafc, #f0f7ff);
        border-radius: 15px;
        padding: 30px;
        margin: 40px 0;
        border: 1px solid #eef2f7;
    }

    .policy-contact-title {
        color: #112e4e;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    /* Footer */
    .policy-footer {
        padding: 60px 0;
        background-color: #f8fafc;
        border-top: 1px solid #eef2f7;
        text-align: center;
    }

    .policy-footer p {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.7;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .policy-back-button {
        background: linear-gradient(135deg, #112e4e, #1a4a7a);
        color: white;
        border: none;
        padding: 15px 40px;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.4s ease;
        box-shadow: 0 8px 20px rgba(17, 46, 78, 0.2);
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
    }

    .policy-back-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(17, 46, 78, 0.3);
        background: linear-gradient(135deg, #1a4a7a, #112e4e);
    }

    /* Animations */
    @keyframes policy-fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes policy-float {
        0% {
            transform: translateY(0) rotate(0deg);
        }
        100% {
            transform: translateY(-100px) rotate(360deg);
        }
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .policy-hero h1 {
            font-size: 2.5rem;
        }
        
        .policy-nav-content {
            justify-content: flex-start;
            overflow-x: auto;
            padding-bottom: 10px;
            flex-wrap: nowrap;
        }
        
        .policy-nav-link {
            white-space: nowrap;
            flex-shrink: 0;
        }
    }

    @media (max-width: 768px) {
        .policy-hero {
            padding: 100px 0 50px;
        }

        .policy-hero h1 {
            font-size: 2rem;
        }
        
        .policy-hero p {
            font-size: 1.1rem;
        }

        .policy-section-title {
            font-size: 1.6rem;
        }

        .policy-list {
            margin-left: 20px;
        }

        .policy-contact {
            padding: 25px 20px;
        }
    }

    @media (max-width: 480px) {
        .policy-hero h1 {
            font-size: 1.8rem;
        }

        .policy-hero p {
            font-size: 1rem;
        }

        .policy-section-title {
            font-size: 1.4rem;
        }

        .policy-text {
            font-size: 1rem;
        }

        .policy-back-button {
            padding: 12px 30px;
            font-size: 0.95rem;
        }
    }
        /* Terms & Conditions specific styles */
    .terms-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Hero Section */
    .terms-hero {
        padding: 120px 0 60px;
        background: linear-gradient(135deg, #112e4e 0%, #1a4a7a 100%);
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .terms-hero:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23112e4e' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
        animation: terms-float 20s linear infinite;
    }

    .terms-hero-content {
        position: relative;
        z-index: 2;
        animation: terms-fadeInUp 1s ease-out;
    }

    .terms-hero h1 {
        font-size: 3.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .terms-hero p {
        font-size: 1.2rem;
        margin-bottom: 40px;
        opacity: 0.9;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }

    .terms-last-updated {
        background-color: rgba(255, 255, 255, 0.1);
        display: inline-block;
        padding: 10px 25px;
        border-radius: 50px;
        font-size: 0.95rem;
        margin-top: 20px;
    }

    /* Content Navigation */
    .terms-nav {
        background-color: #f8fafc;
        padding: 30px 0;
        border-bottom: 1px solid #eef2f7;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 10px rgba(17, 46, 78, 0.05);
    }

    .terms-nav-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .terms-nav-content {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .terms-nav-link {
        background-color: white;
        color: #112e4e;
        text-decoration: none;
        padding: 8px 14px;
        border-radius: 50px;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 2px solid #eef2f7;
        font-size: 0.95rem;
    }

    .terms-nav-link:hover {
        background-color: #112e4e;
        color: white;
        border-color: #112e4e;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(17, 46, 78, 0.1);
    }

    .terms-nav-link.active {
        background-color: #112e4e;
        color: white;
        border-color: #112e4e;
        font-weight: 600;
    }

    /* Content Section */
    .terms-content {
        padding: 80px 0;
        background-color: white;
    }

    .terms-section {
        margin-bottom: 60px;
        animation: terms-fadeInUp 0.8s ease-out;
        animation-fill-mode: both;
    }

    .terms-section:nth-child(1) { animation-delay: 0.1s; }
    .terms-section:nth-child(2) { animation-delay: 0.2s; }
    .terms-section:nth-child(3) { animation-delay: 0.3s; }
    .terms-section:nth-child(4) { animation-delay: 0.4s; }
    .terms-section:nth-child(5) { animation-delay: 0.5s; }
    .terms-section:nth-child(6) { animation-delay: 0.6s; }
    .terms-section:nth-child(7) { animation-delay: 0.7s; }
    .terms-section:nth-child(8) { animation-delay: 0.8s; }
    .terms-section:nth-child(9) { animation-delay: 0.9s; }
    .terms-section:nth-child(10) { animation-delay: 1s; }

    .terms-section-title {
        color: #112e4e;
        font-size: 1.8rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 3px solid #f0f7ff;
        position: relative;
    }

    .terms-section-title:after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: #112e4e;
    }

    .terms-text {
        color: #444;
        line-height: 1.8;
        margin-bottom: 25px;
        font-size: 1.05rem;
    }

    .terms-list {
        margin: 20px 0 30px 40px;
        color: #444;
        line-height: 1.8;
    }

    .terms-list li {
        margin-bottom: 12px;
        position: relative;
        padding-left: 25px;
    }

    .terms-list li:before {
        content: '•';
        color: #112e4e;
        font-size: 1.5rem;
        position: absolute;
        left: 0;
        top: -5px;
    }

    .terms-subsection {
        margin: 25px 0 30px 20px;
    }

    .terms-subsection-title {
        color: #112e4e;
        font-size: 1.3rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .terms-important {
        background-color: #fff8f8;
        border-left: 4px solid #dc3545;
        padding: 20px;
        margin: 25px 0;
        border-radius: 0 8px 8px 0;
        color: #444;
        line-height: 1.7;
    }

    .terms-important strong {
        color: #dc3545;
    }

    .terms-note {
        background-color: #f0f7ff;
        border-left: 4px solid #112e4e;
        padding: 20px;
        margin: 25px 0;
        border-radius: 0 8px 8px 0;
        color: #444;
        line-height: 1.7;
    }

    .terms-note strong {
        color: #112e4e;
    }

    .terms-definition {
        background-color: #f9f9f9;
        border: 1px solid #eef2f7;
        border-radius: 10px;
        padding: 25px;
        margin: 30px 0;
    }

    .terms-definition-title {
        color: #112e4e;
        font-size: 1.4rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

    /* Footer */
    .terms-footer {
        padding: 60px 0;
        background-color: #f8fafc;
        border-top: 1px solid #eef2f7;
        text-align: center;
    }

    .terms-footer p {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.7;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .terms-back-button {
        background: linear-gradient(135deg, #112e4e, #1a4a7a);
        color: white;
        border: none;
        padding: 15px 40px;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.4s ease;
        box-shadow: 0 8px 20px rgba(17, 46, 78, 0.2);
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
    }

    .terms-back-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(17, 46, 78, 0.3);
        background: linear-gradient(135deg, #1a4a7a, #112e4e);
    }

    /* Animations */
    @keyframes terms-fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes terms-float {
        0% {
            transform: translateY(0) rotate(0deg);
        }
        100% {
            transform: translateY(-100px) rotate(360deg);
        }
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .terms-hero h1 {
            font-size: 2.5rem;
        }
        
        .terms-nav-content {
            justify-content: flex-start;
            overflow-x: auto;
            padding-bottom: 10px;
            flex-wrap: nowrap;
        }
        
        .terms-nav-link {
            white-space: nowrap;
            flex-shrink: 0;
        }
    }

    @media (max-width: 768px) {
        .terms-hero {
            padding: 100px 0 50px;
        }

        .terms-hero h1 {
            font-size: 2rem;
        }
        
        .terms-hero p {
            font-size: 1.1rem;
        }

        .terms-section-title {
            font-size: 1.6rem;
        }

        .terms-list {
            margin-left: 20px;
        }

        .terms-definition {
            padding: 20px 15px;
        }
    }

    @media (max-width: 480px) {
        .terms-hero h1 {
            font-size: 1.8rem;
        }

        .terms-hero p {
            font-size: 1rem;
        }

        .terms-section-title {
            font-size: 1.4rem;
        }

        .terms-text {
            font-size: 1rem;
        }

        .terms-back-button {
            padding: 12px 30px;
            font-size: 0.95rem;
        }
    }