/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f8fafc;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    z-index: 999999;
    top: 1.25rem;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 18px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid #e5e7eb;
    padding: 16px 0;
    transition: transform 0.3s ease;
}

a{
    text-decoration: none;
}

.navbar.hidden {
    transform: translateY(-150%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #6366f1;
}

.nav-actions {
    display: flex;
    gap: 16px;
}

/* Buttons */
.btn-primary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #3b82f6;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary::before {
    content: "✨";
    font-size: 14px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #3b82f6;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary::before {
    content: "✨";
    font-size: 14px;
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.btn-outline {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #e5e7eb;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero-wrapper {
    z-index: 0;
    border: 1px solid #e5e7eb;
    background-position: 50%;
    background-repeat: repeat;
    background-size: cover;
    background-attachment: fixed;
    border-radius: 18px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 11vw;
    padding-bottom: 8.75rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 100vh;

}

.hero {
    padding: 1.25rem;
    width: 100%;
    text-align: center;
    min-height: 100vh;
    height: 100%;
    position: relative;
}

.hero-background {
    background-image: url(/images/hero-gradient.png);
    background-position: 50% 90%;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    animation: heroPulse 4s ease-in-out infinite;
    inset: 0%;
}

@keyframes heroPulse {

    0%,
    100% {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(2, 2, 1);
    }
}

.hero-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(156, 163, 175, 0.1);
    color: #6b7280;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
}

.hero-badge::before {
    content: "D";
    background: #6b7280;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #6b7280;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    color: #8b5cf6;
    font-size: 16px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-title .highlight {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(139deg, #1fd2ff, #fd71ff 48%, #ff9b3f);
    -webkit-background-clip: text;
    background-clip: text;
    margin-top: 0;
    margin-bottom: 0;
}

.hero-subtitle {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 16px;
}

.hero-note {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 48px;
}

.trusted-by {
    margin-top: 48px;
}

.trusted-by span {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
    display: block;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 32px;
    opacity: 0.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-image: linear-gradient(#f9f9f900 90%, #f9f9f9), linear-gradient(#f9f9f9, #f9f9f900 17%), url(/images/bg-grad.avif);
    background-position: 0 0, 0 0, 50%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
    background-attachment: scroll, scroll, scroll;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-image {
    margin-bottom: 24px;
    text-align: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}



.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* How it works Section */
.how-it-works {
    padding: 80px 0;
    background: #f8fafc;
}

.steps-diagram {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: auto auto auto;
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    width: 100%;
    margin-top: -25rem;
    grid-auto-columns: 1fr;
    position: relative;
    min-height: 600px;
    padding-top: 350px;
}

.step-card {
    margin-top: 3.75rem;
    border-radius: 13px;
    transition: all 0.3s;
    z-index: 1000;
    background-image: linear-gradient(135deg, #1fd2ff, #fd71ff 0%, #ff9b3f);
    border: 1px solid #e5e7eb;
}

.step-card-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;

    background-color: #ffffff;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: auto;
    border-radius: 12px;
    background-image: url(/images/how-1.svg);
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    height: 480px;
    padding: 2.375rem;
    display: flex;
}

.step-gradient {
    background-image: linear-gradient(135deg, #1fd2ff, #fd71ff 50%, #ff9b3f);
    padding: 2px;
    border: none;
}


.step-card.step-01 {
    grid-area: 1 / 1 / 2 / 5;
    background-image: linear-gradient(135deg, #1fd2ff, #fd71ff 50%, #ff9b3f);
    padding: 2px;
    border: none;
}

.step-card.step-02 {
    grid-area: 2 / 4 / 3 / 8;


}

.step-card.step-03 {
    grid-area: 3 / 7 / 4 / 11;


}

.step-card.step-02 .step-card-wrapper {


    background-image: url(/images/how-2.svg);
}

.step-card.step-03 .step-card-wrapper {


    background-image: url(/images/how-3.svg);
}

.step-number {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
    font-weight: 500;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 14px;
}

.step-icon {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    opacity: 0.1;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.connection-line {
    position: relative;
    width: 144px;
    height: 327px;
    z-index: 1;
}

.connection-line svg {
    width: 100%;
    height: 100%;
}

#pathToAnimate {
    stroke-dasharray: 1000;
    /* будет заменено на длину пути */
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 0.1s linear;
}

/* Увеличиваем яркость SVG */
.lottie-animation svg path {
    stroke-width: 3;
    stroke-opacity: 1;
}

.lottie-animation svg stop {
    stop-opacity: 1;
}

.connection-line.line-1-2 {
    grid-area: 2 / 2 / 3 / 5;
    justify-self: center;

    max-height: 300px;

}

.connection-line.line-2-3 {
    grid-area: 3 / 6 / 5 / 7;
    justify-self: center;
    width: 116%;
    max-height: 300px;

}

.works-with {
    text-align: center;
    margin-top: 48px;
}

.works-with p {
    font-size: 18px;
    color: #6b7280;
    font-weight: 500;
}

/* Works With Section */
.works-with-section {
    position: relative;
    min-height: 100vh;
    height: 1500px;
    padding: 80px 0;
    background-image: linear-gradient(#f9f9f900 90%, #f9f9f9), linear-gradient(#f9f9f9, #f9f9f900 17%), url(/images/bg-grad.avif);
    background-position: 0 0, 0 0, 50%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
    background-attachment: scroll, scroll, scroll;
    /* overflow: hidden; */
}

.works-with-container {
    align-items: flex-start;
    width: 100%;
    max-width: 926px;
    height: 1500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.works-with-content {
    justify-content: center;
    align-items: center;
    padding-top: 10rem;
    padding-bottom: 10rem;
    display: flex;
    position: sticky;
    top: 10rem;
}

.works-with-title {
    font-size: 4rem;
    transition: transform 0.2s ease;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
    line-height: 1.1;
}

.works-with-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    transition: gap 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.icon-item {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(100px) scale(0.8);
}

.icon-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.icon-item.left-top {
    inset: 0% auto auto 10%;
}

.icon-item.left-middle {
    inset: 50% auto 0% 0%;
}

.icon-item.right-top {
    inset: 0% 10% auto auto;
}

.icon-item.right-middle {
    inset: 35% 0% 0% auto;
}

.icon-item.right-bottom {
    inset: auto 0% 0% auto;
}



.icon-item.animate {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.icon-item.animate:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Анимация приближения иконок к тексту */
.works-with-icons.approach {
    gap: 1.5rem;
}

.works-with-icons.approach .icon-item {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Анимация sticky движения вниз */
.works-with-container.sticky-move {
    transform: translateY(50px);
}

/* Testimonials Section */
.testimonials {
    background-image: linear-gradient(#f9f9f900 90%, #f9f9f9), linear-gradient(#f9f9f9, #f9f9f900 17%), url(/images/bg-grad.avif);
    background-position: 0 0, 0 0, 50%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
    background-attachment: scroll, scroll, scroll;
    padding: 8rem 1.25rem;
    margin-top: 150px;
    position: relative;
    z-index: 10;
}

.testimonials-content {

    border: 1px solid #f9f9f9;
    background-color: #f4f4f480;


    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border-radius: 18px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    max-width: 1400px;
    padding-left: 6.25rem;
    padding-right: 6.25rem;
    display: grid;
    overflow: hidden;
}

.testimonials-left {
    padding-right: 40px;
    padding: 6.25rem 0;
    grid-area: span 1 / span 5 / span 1 / span 5;
    align-self: stretch;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 16px;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
    line-height: 1.1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat {
    text-align: center;
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;

}


.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.stat p {
    color: #6b7280;
    font-size: 14px;
}

.testimonials-right {
    height: 100%;
    overflow: hidden;
    grid-area: 1 / 7 / 2 / 11;
    max-height: 860px;
    position: relative;
    mask-image: linear-gradient(to top, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonials-slider {
    display: flex;
    flex-direction: column;
    animation: slideUp 10s linear infinite;
}



.testimonial {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info strong {
    color: #1a1a1a;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.author-info span {
    color: #6b7280;
    font-size: 14px;
}

@keyframes slideUp {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8fafc;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

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

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

input:checked+.slider {
    background-color: #6366f1;
}

input:checked+.slider:before {
    transform: translateX(28px);
}

.save-badge {
    background: #10b981;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border-color: #6366f1;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #6366f1;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.amount {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 4px;
}

.period {
    font-size: 16px;
    color: #6b7280;
}

.trial {
    font-size: 14px;
    color: #10b981;
    font-weight: 600;
    margin-bottom: 16px;
}

.description {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
}

.features-list li {
    padding: 8px 0;
    color: #6b7280;
    position: relative;
    padding-left: 24px;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.faq-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #e5e7eb;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

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

.faq-contact p {
    color: #6b7280;
    font-size: 18px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
    background-image: linear-gradient(#f9f9f900 90%, #f9f9f9), linear-gradient(#f9f9f9, #f9f9f900 17%), url(/images/bg-grad.avif);
    background-position: 0 0, 0 0, 50%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
    background-attachment: scroll, scroll, scroll;
    position: relative;
    z-index: 10;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

/* Footer */
.footer {
    background: #f8fafc;
    color: #374151;
    padding: 40px 0 20px;
}

.footer-top {
    margin-bottom: 32px;
}

.policy-links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.policy-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.policy-links a:hover {
    color: #374151;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.checkbox-icon {
    color: #3b82f6;
    font-size: 16px;
}

.close-icon {
    color: #6b7280;
    font-size: 14px;
}

.security-badges {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.badge {}



.badge-icon {
    font-size: 14px;
}

.footer-middle {
    margin-bottom: 32px;
}

.copyright {
    margin-bottom: 16px;
}

.copyright p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 8px;
}

.company-disclaimer {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.5;
}

.company-disclaimer p {
    margin-bottom: 8px;
}





.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #374151;
    border-radius: 8px;
    background: #374151;
    color: white;
    font-size: 16px;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form .btn-primary {
    white-space: nowrap;
}

.form-message {
    font-size: 14px;
    color: #9ca3af;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-info p {
    color: #9ca3af;
    margin-bottom: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.logo-plus {
    color: #3b82f6;
    font-weight: 800;
}

.social-media {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background: #2563eb;
}

.footer-bottom p {
    color: #9ca3af;
}

.footer-separator {
    border: none;
    height: 1px;
    background: #d1d5db;
    margin: 16px 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Chat Interface Overlay */
.chat-img {
    margin-top: 30px;
}

.chat-overlay {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 400px;
    height: 600px;
    z-index: 10;
}

/* Glassmorphism Chat Interface */
.chat-container {
    width: 100%;
    height: 100%;
    border: 1px solid #f9f9f9;
    background-color: #f4f4f480;
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Header */
.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    position: relative;
    width: 24px;
    height: 24px;
}

.icon-bar {
    position: absolute;
    background: linear-gradient(135deg, #3B82F6, #EC4899);
    border-radius: 2px;
}

.icon-bar.vertical {
    width: 4px;
    height: 20px;
    left: 10px;
    top: 2px;
}

.icon-bar.horizontal {
    width: 20px;
    height: 4px;
    left: 2px;
    top: 10px;
}

.brand-name {
    font-weight: 600;
    color: #1F2937;
    font-size: 18px;
}

.chat-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 8px 16px;
    flex: 1;
    margin: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.search-icon {
    font-size: 16px;
    color: #6B7280;
    margin-right: 8px;
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #374151;
    width: 100%;
}

.search-input::placeholder {
    color: #9CA3AF;
}

.user-avatar {
    width: 40px;
    height: 40px;
}

.avatar-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.avatar-face {
    width: 20px;
    height: 20px;
    background: #1F2937;
    border-radius: 50%;
    position: relative;
}

.avatar-face::before,
.avatar-face::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FBBF24;
    border-radius: 50%;
    top: 4px;
}

.avatar-face::before {
    left: 4px;
}

.avatar-face::after {
    right: 4px;
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message {
    display: flex;
}

.message.user-message {
    justify-content: flex-end;
}

.message.ai-message {
    justify-content: flex-start;
}

.message-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    line-height: 1.4;
    color: #374151;
}

.user-message .message-bubble {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.ai-response {
    margin-bottom: 12px;
}

.response-placeholder {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.placeholder-line {
    height: 8px;
    background: rgba(156, 163, 175, 0.3);
    border-radius: 4px;
}

.placeholder-line.short {
    width: 60%;
}

.placeholder-line.medium {
    width: 80%;
}

.placeholder-line.long {
    width: 90%;
}

/* Input Area */
.chat-input-area {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.input-container {
    position: relative;
    margin-bottom: 16px;
}

.chat-input {
    width: 100%;
    padding: 16px 60px 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    color: #374151;
    outline: none;
    backdrop-filter: blur(10px);

}

.chat-input::placeholder {
    color: #9CA3AF;
}

.voice-button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.voice-icon {
    display: flex;
    align-items: center;
    gap: 2px;
}

.wave {
    width: 3px;
    height: 12px;
    background: #6B7280;
    border-radius: 2px;
}

.wave:nth-child(2) {
    animation-delay: 0.2s;
}

.wave:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes wave {

    0%,
    100% {
        height: 8px;
    }

    50% {
        height: 16px;
    }
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 12px;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 14px;
}

.action-btn.attachment {
    padding: 8px;
    min-width: 36px;
}

.action-btn.attachment span {
    display: none;
}



.floating-action {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: #1a1a1a;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1001;
}

.floating-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.action-icon {
    font-size: 16px;
}

@media (max-width: 1100px) {
    .icon-item.right-top {
        inset: 9% 18% auto auto;
    }

    .icon-item.right-bottom {
        inset: auto 23% 20% auto;
    }

    .icon-item.right-middle {
        inset: 35% 7% 0% auto;
    }

    .icon-item.left-top {
        inset: 9% 18% auto auto;
    }

    .icon-item.left-middle {
        inset: 55% auto 0% 5%;
    }

    .icon-item.left-top {
        inset: 11% auto auto 8%;
    }

    .icon-item {
        background: transparent;
        border: none;
        box-shadow: none;
    }
}

@media (max-width: 750px) {
    .works-with-section {
        min-height: auto !important;
        height: auto !important;
    }

    .works-with-container {
        height: auto;
    }
}

@media (max-width: 750px) {
    .icon-item.right-top {
        inset: 0% 13% auto auto
    }

    .icon-item.right-bottom {
        inset: auto 23% 20% auto;
    }

    .icon-item.right-middle {
        inset: 35% 0% 0% auto;
    }

    .icon-item.left-top {
        inset: 4% auto auto 15% !important;
    }

    .icon-item.left-middle {
        inset: 68% auto 0% 8%
    }

    .icon-item.left-top {
        inset: 4% auto auto -4%
    }

    .icon-item {
        transform: none !important;
    }
    .testimonials{
        margin-top: 0;
    }
}


@media (max-width: 1215px) {
    .navbar {
        margin-right: 1.25rem;
        margin-left: 1.25rem;
    }
}

/* Mobile Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 32px 32px 32px;
        transition: right 0.3s ease;
        z-index: 999;
        border-left: 1px solid #e5e7eb;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 18px;
        padding: 16px 0;
        border-bottom: 1px solid #f1f5f9;
        width: 100%;
        text-align: left;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .nav-links a.btn-secondary {
        background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 16px;
        margin-top: 16px;
        text-align: center;
        width: 100%;
        display: inline-block;
        text-decoration: none;
    }
    
    .nav-links a.btn-secondary::before {
        content: "✨";
        font-size: 14px;
        margin-right: 8px;
    }
    
    .nav-links a.btn-secondary:hover {
        background: linear-gradient(135deg, #5b5ee8 0%, #7c3aed 100%);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    }
    
    .nav-actions {
        display: none;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }



    .floating-action {
        bottom: 16px;
        right: 16px;
        font-size: 12px;
        padding: 10px 12px;
    }

    .steps-diagram {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        min-height: auto;
        gap: 32px;
    }

    .step-card {
        grid-column: 1 / 2 !important;
        grid-row: auto !important;
        height: auto;
        margin-bottom: 0;

    }

    .connection-line {
        display: none;
    }

    /* Works With Section */
    .works-with-section {
        min-height: 150vh;
    }

    .works-with-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .works-with-left {
        grid-area: auto;
        padding: 2rem 0;
    }

    .works-with-title {
        font-size: 2.5rem;
    }

    .works-with-icons {
        width: 400px;
        height: 400px;
    }

    /* Testimonials Section */
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .testimonials-left {
        grid-area: auto;
        padding: 2rem 0;
    }

    .testimonials-title {
        font-size: 2.5rem;
    }

    .testimonials-right {
        grid-area: auto;
        max-height: 600px;
    }

    /* Chat Interface */
    .chat-overlay {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        height: 500px;
        margin-top: 2rem;
    }

    .chat-container {
        height: 100%;
    }

    .chat-header {
        padding: 16px 20px;
    }

    .brand-name {
        font-size: 16px;
    }

    .chat-messages {
        padding: 16px 20px;
    }

    .chat-input-area {
        padding: 16px 20px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .action-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Works With Section */
    .works-with-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .works-with-title {
        font-size: 2rem;
    }

    .works-with-icons {
        width: 300px;
        height: 300px;
    }

    /* Testimonials Section */
    .testimonials-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat {
        padding: 16px;
    }

    .stat h3 {
        font-size: 2rem;
    }

    /* Chat Interface */
    .chat-overlay {
        height: 400px;
    }

    .chat-header {
        padding: 12px 16px;
    }

    .chat-messages {
        padding: 12px 16px;
    }

    .chat-input-area {
        padding: 12px 16px;
    }

    .message-bubble {
        max-width: 90%;
        font-size: 13px;
        padding: 10px 14px;
    }

    .chat-input {
        padding: 12px 50px 12px 16px;
        font-size: 13px;
    }

    .voice-button {
        width: 32px;
        height: 32px;
        right: 8px;
    }

    .wave {
        width: 2px;
        height: 10px;
    }
}

/* Policy Pages Styles */
.page-content {
    padding-top: 120px;
    min-height: 100vh;
    background: #ffffff;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 18px;
    color: #64748b;
    font-weight: 500;
}

.page-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.content-section {
    margin-bottom: 48px;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.content-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: #374151;
    margin: 32px 0 16px 0;
}

.content-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 16px;
}

.content-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.content-section li {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 8px;
}

.content-section strong {
    font-weight: 600;
    color: #1a1a1a;
}

/* Responsive styles for policy pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .content-section h3 {
        font-size: 20px;
    }

    .page-body {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 28px;
    }

    .content-section h2 {
        font-size: 22px;
    }

    .content-section h3 {
        font-size: 18px;
    }

    .content-section p,
    .content-section li {
        font-size: 15px;
    }
}

/* Terms & Conditions specific styles */
.terms-notice {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.terms-notice h3 {
    color: #92400e;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.terms-notice p {
    color: #78350f;
    font-weight: 500;
    margin-bottom: 12px;
}

.disclaimer-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.disclaimer-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.disclaimer-card.important {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #f87171;
}

.disclaimer-card.important h3 {
    color: #dc2626;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.disclaimer-card.important p {
    color: #991b1b;
    font-weight: 500;
}

.disclaimer-card h3 {
    color: #374151;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.disclaimer-card p {
    color: #4b5563;
    line-height: 1.6;
}

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

.contact-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #6366f1;
}

.contact-card h3 {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-card p {
    color: #4b5563;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
}

.contact-card strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Responsive styles for new elements */
@media (max-width: 768px) {

    .terms-notice,
    .disclaimer-card {
        padding: 20px;
        margin: 20px 0;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {

    .terms-notice,
    .disclaimer-card {
        padding: 16px;
        margin: 16px 0;
    }

    .terms-notice h3,
    .disclaimer-card h3 {
        font-size: 16px;
    }

    .contact-card {
        padding: 16px;
    }

    .contact-card h3 {
        font-size: 18px;
    }
}

/* Enhanced Terms & Conditions page styles */
.page-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.page-header {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-radius: 16px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.content-section {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
}

.content-section:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.content-section h2 {
    background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
}

.content-section h3 {
    color: #374151;
    font-size: 22px;
    font-weight: 600;
    margin: 32px 0 16px 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 16px;
}

.content-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.content-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 12px;
    position: relative;
    padding-left: 8px;
}

.content-section li::before {
    content: '•';
    color: #6366f1;
    font-weight: bold;
    position: absolute;
    left: -16px;
}

.content-section strong {
    font-weight: 600;
    color: #1a1a1a;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.content-section a:hover {
    color: #8b5cf6;
    border-bottom-color: #8b5cf6;
}

/* Enhanced disclaimer cards */
.disclaimer-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    margin: 28px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.disclaimer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
}

.disclaimer-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: #6366f1;
}

.disclaimer-card.important {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #f87171;
}

.disclaimer-card.important::before {
    background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
}

.disclaimer-card.important h3 {
    color: #dc2626;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 1px 2px rgba(220, 38, 38, 0.1);
}

.disclaimer-card.important p {
    color: #991b1b;
    font-weight: 500;
    line-height: 1.7;
}

.disclaimer-card h3 {
    color: #374151;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.disclaimer-card p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 16px;
}

/* Enhanced terms notice */
.terms-notice {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 28px;
    margin: 28px 0;
    box-shadow: 0 8px 15px -3px rgba(245, 158, 11, 0.2);
    position: relative;
    overflow: hidden;
}

.terms-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b 0%, #f97316 100%);
}

.terms-notice h3 {
    color: #92400e;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 1px 2px rgba(146, 64, 14, 0.1);
}

.terms-notice p {
    color: #78350f;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Enhanced contact cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 28px;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
}

.contact-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: #6366f1;
}

.contact-card h3 {
    color: #1a1a1a;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-card p {
    color: #4b5563;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
}

.contact-card strong {
    color: #1a1a1a;
    font-weight: 600;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive styles for new elements */
@media (max-width: 768px) {

    .terms-notice,
    .disclaimer-card {
        padding: 20px;
        margin: 20px 0;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 20px;
    }

    .content-section {
        padding: 24px;
        margin-bottom: 24px;
    }

    .page-header {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {

    .terms-notice,
    .disclaimer-card {
        padding: 16px;
        margin: 16px 0;
    }

    .terms-notice h3,
    .disclaimer-card h3 {
        font-size: 18px;
    }

    .contact-card {
        padding: 16px;
    }

    .contact-card h3 {
        font-size: 20px;
    }

    .content-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .page-header {
        padding: 24px 20px;
    }
}

/* Privacy Policy specific styles */
.privacy-notice {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 2px solid #3b82f6;
    border-radius: 16px;
    padding: 28px;
    margin: 28px 0;
    box-shadow: 0 8px 15px -3px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.privacy-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
}

.privacy-notice p {
    color: #1e40af;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
}

.info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    margin: 28px 0;
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
}

.info-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: #6366f1;
}

.info-card h3 {
    color: #1a1a1a;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-card p {
    color: #4b5563;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
}

.info-card strong {
    color: #1a1a1a;
    font-weight: 600;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    transition: all 0.3s ease;
}

.info-section:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.info-section h4 {
    color: #374151;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-section p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 12px;
}

.info-section ul {
    margin: 12px 0;
    padding-left: 20px;
}

.info-section li {
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.6;
}

.table-container {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.privacy-table thead {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

.privacy-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 2px solid #e2e8f0;
}

.privacy-table td {
    padding: 16px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}

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

.privacy-table ul {
    margin: 0;
    padding-left: 16px;
}

.privacy-table li {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.5;
}

.retention-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.retention-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.retention-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #6366f1;
}

.retention-item h4 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.retention-item p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.security-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.security-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.security-section:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #6366f1;
}

.security-section h4 {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.security-section ul {
    margin: 0;
    padding-left: 20px;
}

.security-section li {
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 14px;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.right-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.right-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #6366f1;
}

.right-item h4 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.right-item p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive styles for privacy policy elements */
@media (max-width: 768px) {

    .privacy-notice,
    .info-card {
        padding: 20px;
        margin: 20px 0;
    }

    .info-section {
        padding: 20px;
        margin: 20px 0;
    }

    .retention-info,
    .security-info,
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .privacy-table {
        font-size: 12px;
    }

    .privacy-table th,
    .privacy-table td {
        padding: 12px;
    }
}

@media (max-width: 480px) {

    .privacy-notice,
    .info-card {
        padding: 16px;
        margin: 16px 0;
    }

    .info-section {
        padding: 16px;
        margin: 16px 0;
    }

    .retention-item,
    .security-section,
    .right-item {
        padding: 16px;
    }

    .privacy-table {
        font-size: 11px;
    }

    .privacy-table th,
    .privacy-table td {
        padding: 8px;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-top: 3px solid #6366f1;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.cookie-icon {
    font-size: 32px;
    margin-top: 4px;
    flex-shrink: 0;
}

.cookie-text h3 {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookie-text p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.cookie-text p:last-of-type {
    margin-bottom: 0;
}

.cookie-policy-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-policy-link:hover {
    color: #8b5cf6;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    align-items: flex-start;
}

.cookie-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 100px;
}

.reject-btn {
    background: #f3f4f6;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.reject-btn:hover {
    background: #e5e7eb;
    color: #374151;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.configure-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    border: 2px solid #f59e0b;
}

.configure-btn:hover {
    background: linear-gradient(135deg, #d97706 0%, #ea580c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.3);
}

.accept-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: 2px solid #6366f1;
}

.accept-btn:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.3);
}

/* Responsive styles for cookie banner */
@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 12px;
    }

    .cookie-icon {
        font-size: 28px;
        margin-top: 0;
    }

    .cookie-text h3 {
        font-size: 18px;
    }

    .cookie-text p {
        font-size: 13px;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .cookie-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .cookie-container {
        padding: 16px;
    }

    .cookie-text h3 {
        font-size: 16px;
    }

    .cookie-text p {
        font-size: 12px;
    }

    .cookie-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* Cookie Configuration Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 0 24px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 24px;
}

.modal-header h2 {
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.modal-body {
    padding: 0 24px;
}

.cookie-category {
    margin-bottom: 32px;
    padding: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    border-color: #6366f1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.category-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.category-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.category-info {
    flex: 1;
}

.category-info h3 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.category-info p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    flex-shrink: 0;
}

.toggle-switch input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: relative;
    display: block;
    width: 50px;
    height: 26px;
    background: #d1d5db;
    border-radius: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch label:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input[type="checkbox"]:checked+label {
    background: #10b981;
}

.toggle-switch input[type="checkbox"]:checked+label:before {
    transform: translateX(24px);
}

.toggle-switch input[type="checkbox"]:disabled+label {
    background: #10b981;
    cursor: not-allowed;
}

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

.cookie-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
}

.cookie-name {
    color: #374151;
    font-weight: 600;
    min-width: 120px;
}

.cookie-description {
    color: #6b7280;
}

.modal-footer {
    padding: 24px;
    border-top: 1px solid #e5e7eb;
    margin-top: 24px;
    text-align: center;
}

.save-preferences-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.save-preferences-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

/* Responsive styles for cookie modal */
@media (max-width: 768px) {
    .cookie-modal {
        padding: 10px;
    }

    .modal-content {
        max-height: 95vh;
    }

    .modal-header {
        padding: 20px 20px 0 20px;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .modal-body {
        padding: 0 20px;
    }

    .cookie-category {
        padding: 16px;
        margin-bottom: 24px;
    }

    .category-header {
        flex-direction: column;
        gap: 12px;
    }

    .category-icon {
        font-size: 20px;
        margin-top: 0;
    }

    .cookie-list {
        margin-left: 0;
        margin-top: 12px;
    }

    .cookie-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .cookie-name {
        min-width: auto;
    }

    .modal-footer {
        padding: 20px;
    }

    .save-preferences-btn {
        width: 100%;
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    .modal-header {
        padding: 16px 16px 0 16px;
    }

    .modal-header h2 {
        font-size: 18px;
    }

    .modal-body {
        padding: 0 16px;
    }

    .cookie-category {
        padding: 12px;
        margin-bottom: 20px;
    }

    .category-info h3 {
        font-size: 16px;
    }

    .category-info p {
        font-size: 13px;
    }

    .modal-footer {
        padding: 16px;
    }
}

/* Cookie Policy specific styles */
.cookie-category-detail {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.cookie-category-detail:hover {
    border-color: #6366f1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.cookie-category-detail h4 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookie-category-detail ul {
    margin: 12px 0;
    padding-left: 20px;
}

.cookie-category-detail li {
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 14px;
}

.cookie-info {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 16px;
    text-align: center;
}

.cookie-info p {
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}

.cookie-info strong {
    color: #1a1a1a;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.third-party-cookies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.third-party-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.third-party-item:hover {
    border-color: #6366f1;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

.third-party-item h3 {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 16px 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.third-party-item p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.data-section,
.legal-section {
    margin-top: 20px;
}

.data-section h4,
.legal-section h4 {
    color: #374151;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.data-section ul,
.legal-section ul {
    margin: 0;
    padding-left: 16px;
}

.data-section li,
.legal-section li {
    color: #4b5563;
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.5;
}

.legal-section a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #8b5cf6;
    text-decoration: underline;
}

.rights-by-region {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.region-rights {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.region-rights:hover {
    border-color: #6366f1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.region-rights h4 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.region-rights ul {
    margin: 0;
    padding-left: 16px;
}

.region-rights li {
    color: #4b5563;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.browser-settings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.browser-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.browser-item:hover {
    border-color: #6366f1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.browser-item h4 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.browser-item p {
    color: #4b5563;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Responsive styles for cookie policy elements */
@media (max-width: 768px) {
    .cookie-category-detail {
        padding: 16px;
        margin: 16px 0;
    }

    .third-party-cookies {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .third-party-item {
        padding: 20px;
    }

    .rights-by-region {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .browser-settings {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .browser-item {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .cookie-category-detail {
        padding: 12px;
        margin: 12px 0;
    }

    .cookie-category-detail h4 {
        font-size: 16px;
    }

    .third-party-item {
        padding: 16px;
    }

    .third-party-item h3 {
        font-size: 18px;
    }

    .region-rights {
        padding: 16px;
    }

    .region-rights h4 {
        font-size: 16px;
    }

    .browser-item {
        padding: 12px;
    }

    .browser-item h4 {
        font-size: 16px;
    }
}

