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

:root {
    --primary-color: #2AB6D9;
    --primary-dark: #1A9FBF;
    --bg-light: #E6F6FF;
    --bg-white: #FFFFFF;
    --text-dark: #1f2937;
    --text-gray: #4b5563;
    --text-light: #6b7280;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    color: var(--text-dark);
}


html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #E6F6FF 0%, #D4EBFF 50%, #2AB6D9 100%);
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 30%, rgba(255,255,255,0.5) 100%);
    z-index: 1;
}

/* Floating Particles */
.particle {
    position: absolute;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    filter: blur(2px);
}

.particle-1 {
    width: 16px;
    height: 16px;
    top: 5rem;
    left: 2.5rem;
    animation: float 6s ease-in-out infinite;
}

.particle-2 {
    width: 24px;
    height: 24px;
    top: 10rem;
    right: 5rem;
    animation: float-delay-1 8s ease-in-out infinite;
}

.particle-3 {
    width: 20px;
    height: 20px;
    bottom: 10rem;
    left: 25%;
    animation: float-delay-2 7s ease-in-out infinite;
}

.particle-4 {
    width: 12px;
    height: 12px;
    top: 33%;
    right: 33%;
    animation: float-delay-3 9s ease-in-out infinite;
}

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

@keyframes float-delay-1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-15px, -30px); }
}

@keyframes float-delay-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -25px); }
}

@keyframes float-delay-3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -15px); }
}

/* Water Droplets */
.water-droplet {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.droplet-1 {
    width: 128px;
    height: 128px;
    top: 25%;
    left: 25%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
}

.droplet-2 {
    width: 192px;
    height: 192px;
    bottom: 25%;
    right: 25%;
    background: linear-gradient(225deg, rgba(42,182,217,0.2), transparent);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Image */
.product-image {
    position: relative;
    width: auto;
    height: auto;
    margin: 0 auto;
    animation: scaleIn 0.8s ease-out 0.2s backwards;
}
.product-image img {
  max-width: 400px;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.product-box {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2AB6D9, #49E3ED);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(42, 182, 217, 0.3);
    transform: rotate(3deg);
}

.product-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), transparent);
    border-radius: 1.5rem;
    transform: rotate(-3deg);
}

.product-text {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Hero Text */
.hero-title {
    font-size: clamp(1.5rem, 0.9539rem + 2.3301vw, 3.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.8s ease-out 0.4s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gradient-text {
    background: linear-gradient(90deg, #2AB6D9, #1A9FBF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--text-gray);
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeIn 0.8s ease-out 0.6s backwards;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(90deg, #2AB6D9, #1A9FBF);
    color: white;
    padding: 1.25rem 3.5rem;
    border: none;
    border-radius: 9999px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(42, 182, 217, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 25px 50px rgba(42, 182, 217, 0.4);
}

/* Trust Elements */
.trust-elements {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    animation: fadeIn 0.8s ease-out 1s backwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke: var(--primary-color);
    stroke-width: 2;
}

/* Scroll Indicator
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-wheel {
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 8px 0;
}

.scroll-dot {
    width: 6px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 3px;
} */

/* Section Styles */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

/* How Works Section */
.how-works-section {
    padding: 60px 0;
    background: white;
    position: relative;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.work-card {
    background: linear-gradient(135deg, #E6F6FF, white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.work-icon {
    width: 4rem;
    height: 4rem;
    stroke: var(--primary-color);
    stroke-width: 2;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.work-card:hover .work-icon {
    transform: scale(1.1);
}

.work-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.work-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Product Section */
.product-section {
    padding: 0 0 60px;
    background: linear-gradient(180deg, white, #E6F6FF);
}

.product-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(229,231,235,0.5);
}

.product-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.info-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #2AB6D9, #1A9FBF);
    border-radius: 1rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 2rem;
    height: 2rem;
    stroke: white;
    stroke-width: 2;
}

.info-label {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.info-value {
    color: var(--text-gray);
    font-size: 1rem;
}

.product-description {
    color: var(--text-gray);
    line-height: 1.8;
    text-align: center;
    font-size: 1.125rem;
}

/* How to Take Section */
.how-to-take-section {
    padding: 0 0 60px;
    background: #E6F6FF;
    text-align: center;
}

.how-to-card {
    background: white;
    border-radius: 1.5rem;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: inline-block;
    transition: transform 0.3s ease;
}

.how-to-card:hover {
    transform: scale(1.05);
}

.clock-icon {
    width: 6rem;
    height: 6rem;
    stroke: var(--primary-color);
    stroke-width: 2;
    margin: 0 auto 2rem;
    display: block;
}

.how-to-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Ingredients Section */
.ingredients-section {
    padding: 60px 0 ;
    background: white;
    position: relative;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.5rem;
}

.ingredient-item {
    background: linear-gradient(135deg, #E6F6FF, white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ingredient-item:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.ingredient-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #2AB6D9, #1A9FBF);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.ingredient-item:hover .ingredient-icon {
    transform: rotate(12deg);
}

.ingredient-icon svg {
    width: 2rem;
    height: 2rem;
    stroke: white;
    stroke-width: 2;
}

.ingredient-item p {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Benefits Section */
.benefits-section {
    padding: 0 0 60px;
    background: linear-gradient(180deg, white, #E6F6FF);
}

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

.benefit-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    stroke: var(--primary-color);
    stroke-width: 2;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-gray);
}

/* Contraindications Section */
.contraindications-section {
    padding: 0 0 60px;
    background: #E6F6FF;
}

.contraindications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.contraindication-item {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: box-shadow 0.3s ease;
}

.contraindication-item:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.contraindication-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contraindication-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: #ef4444;
    stroke-width: 2;
}

.contraindication-item p {
    color: var(--text-gray);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: white;
    position: relative;
}

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

.testimonial-card {
    background: linear-gradient(135deg, #E6F6FF, white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.result-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(90deg, #2AB6D9, #1A9FBF);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(42,182,217,0.3);
}

.testimonial-avatar {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #2AB6D9, #1A9FBF);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(42,182,217,0.3);
}

.rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-icon {
    width: 1.25rem;
    height: 1.25rem;
    fill: var(--primary-color);
    stroke: var(--primary-color);
}

.testimonial-text {
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 0 0 60px;
    background: linear-gradient(180deg, white, #E6F6FF);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    gap: 1rem;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--primary-color);
    stroke-width: 2;
    flex-shrink: 0;
}

.faq-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, #2AB6D9, #1A9FBF, #2AB6D9);
    overflow: hidden;
    text-align: center;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMzAiIGN5PSIzMCIgcj0iMiIgZmlsbD0id2hpdGUiIGZpbGwtb3BhY2l0eT0iMC4xIi8+PC9zdmc+');
    opacity: 0.3;
}

.cta-title {
    position: relative;
    z-index: 10;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cta-button-white {
    position: relative;
    z-index: 10;
    background: white;
    color: var(--primary-color);
    padding: 1.5rem 4rem;
    border: none;
    border-radius: 9999px;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    margin-bottom: 3rem;
}

.cta-button-white:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.security-icons {
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.security-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.security-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.security-icon-wrapper svg {
    width: 2rem;
    height: 2rem;
    stroke: white;
    stroke-width: 2;
}

.security-item p {
    font-weight: 500;
    text-align: center;
}

/* Mobile Fixed Button */
.mobile-cta-button {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #2AB6D9, #1A9FBF);
    color: white;
    padding: 1.25rem 1.5rem;
    border: none;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 40;
    animation: slideUp 0.5s ease-out 1s backwards;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
span.prices {
    color: #1A9FBF;
    font-weight: 800;
    display: block;
    line-height: normal;
    font-size: 55px;
}
span.prices span {
    font-size: 40px;
}
@media (max-width: 768px) {
    .mobile-cta-button {
        display: block;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 50;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    max-width: 28rem;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border: 4px solid var(--primary-color);
    animation: scaleIn 0.3s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
}

.close-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-light);
    transition: color 0.2s;
}

.close-button:hover {
    color: var(--text-dark);
}

.close-button svg {
    width: 1.75rem;
    height: 1.75rem;
    stroke-width: 2;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: none;
}

.submit-button {
    width: 100%;
    background: linear-gradient(90deg, #2AB6D9, #1A9FBF);
    color: white;
    padding: 1.25rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(42,182,217,0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(42,182,217,0.4);
}

/* Decorative Backgrounds */
.decorative-bg {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
}

.decorative-bg-right {
    top: 0;
    right: 0;
    background: #E6F6FF;
}

.decorative-bg-left {
    bottom: 0;
    left: 0;
    background: #E6F6FF;
}

/* Fade In Animation for Sections */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 20px 70px;
    }
    .hero-section {
        height: 100%;
    }
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .product-image {
        width: 100%;
    }
    .product-image img {
  width: 100%;
}

    .product-text {
        font-size: 2.5rem;
    }

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

    .ingredients-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 1rem;
    }

    .security-icons {
        flex-direction: column;
        gap: 2rem;
    }

    .trust-elements {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #E6F6FF;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.thankyou-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.thankyou-content {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 380px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.thankyou-content h3 {
    font-weight: 700;
    margin-bottom: 10px;
}
.close-thankyou {
    margin-top: 20px;
    background: #00bcd4;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}
.close-thankyou:hover {
    background: #009bb0;
}
