/* Color Palette - Inspired by Knee Pad Product */
:root {
    /* Primary Colors - From Product */
    --primary-gold: #D4AF37;        /* Therapeutic gold dots */
    --primary-black: #1a1a1a;       /* Product fabric black */
    --primary-white: #ffffff;       /* Clean medical white */
    --accent-gold: #F4D03F;         /* Lighter gold accent */
    --deep-black: #0d0d0d;          /* Deep product black */
    
    /* Medical/Therapeutic Colors */
    --medical-blue: #2563eb;        /* Trust and reliability */
    --therapeutic-green: #059669;    /* Health and healing */
    --comfort-gray: #64748b;        /* Neutral comfort */
    --light-gray: #f1f5f9;         /* Soft backgrounds */
    
    /* Semantic Colors */
    --success-color: var(--therapeutic-green);
    --warning-color: var(--primary-gold);
    --error-color: #dc2626;
    --info-color: var(--medical-blue);
    
    /* Text Colors */
    --text-primary: var(--primary-black);
    --text-secondary: var(--comfort-gray);
    --text-light: #94a3b8;
    --text-white: var(--primary-white);
}

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

/* Logo Header */
.logo-header {
    background: #ffffff;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-logo {
    max-height: 120px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

body {
    font-family: 'Tajawal', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--light-gray);
    direction: rtl;
    text-align: right;
}

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



/* Section Styles */
section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Product Description */
.product-description {
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--light-gray) 100%);
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.3rem;
    text-align: center;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.product-image {
    text-align: center;
    margin: 50px auto;
    padding: 20px;
    max-width: 800px;
}

.product-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.product-image img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .product-image {
        margin: 30px auto;
        padding: 15px;
    }
    
    .product-image img {
        max-width: 100%;
        border-radius: 20px;
    }
    
    .product-image img:hover {
        transform: scale(1.01);
    }
}

/* Benefits Section */
.benefits {
    background: var(--primary-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--light-gray) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 26, 26, 0.15);
    border-color: var(--primary-gold);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-gold);
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    color: var(--text-white);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

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

/* Technology Section */
.technology {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--deep-black) 100%);
    color: var(--text-white);
}

.technology .section-title {
    color: var(--text-white);
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.tech-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tech-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}



.tech-feature h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.tech-feature p {
    line-height: 1.7;
    opacity: 0.9;
}

/* Wormwood Explanation Section */
.wormwood-explanation {
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--light-gray) 100%);
    padding: 80px 0;
}

.wormwood-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.wormwood-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

/* Comparison Table */
.comparison {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--primary-white) 100%);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    color: var(--text-primary);
}

.comparison-col {
    padding: 30px;
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-col.our-product {
    background: #f8f9fa;
    color: #333;
    font-weight: bold;
    border-left: 3px solid #28a745;
}

.comparison-col.competitor {
    background: linear-gradient(135deg, #fef2f2, #fef7f7);
    border-left: 4px solid #ef4444;
}

.comparison-col p {
    padding: 25px;
    margin: 0;
    line-height: 1.6;
}

.feature-check {
    color: var(--therapeutic-green);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-cross {
    color: #ef4444;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: var(--primary-white);
}

.reviews .section-title {
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--primary-white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.15);
    border-color: var(--primary-gold);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.reviewer-details h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.reviewer-details .location {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 20px;
        margin: 0 10px;
    }
    
    .reviews .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .stars {
        align-self: flex-end;
    }
}



/* Tips Section */
.tips {
    background: var(--primary-white);
}

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

.tip-card {
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--light-gray) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 26, 26, 0.15);
    border-color: var(--primary-gold);
}

.tip-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.tip-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Guarantee Section */
.guarantee {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--deep-black) 100%);
    color: var(--text-white);
}

.guarantee .section-title {
    color: var(--text-white);
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-content > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.guarantee-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

.guarantee-icon {
    width: 40px;
    height: 40px;
    color: var(--therapeutic-green);
    flex-shrink: 0;
}

.guarantee-item span {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* CTA Order Form */
.cta-order-form {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--primary-white) 100%);
    color: var(--text-primary);
    position: relative;
}

.cta-order-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
}

.cta-order-form .container {
    position: relative;
    z-index: 2;
}

.cta-order-form h2 {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-black);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-price {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-black);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.delivery-pricing {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--primary-white);
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.delivery-text {
    font-size: 1.3rem;
    font-weight: 600;
}

.old-price {
    text-decoration: line-through;
    color: #ef4444;
    margin-left: 10px;
}

.free-delivery {
    color: var(--therapeutic-green);
    font-weight: 700;
    margin-right: 10px;
}

.cta-offers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.offer-card {
    background: var(--primary-white);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.offer-card:hover {
    background: var(--primary-white);
    border-color: var(--primary-gold);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.offer-card.popular-offer {
    background: var(--primary-white);
    border-color: rgba(255, 255, 255, 0.1);
}

.offer-card.popular-offer.selected {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
}

.offer-card.selected {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.offer-card label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    width: 100%;
}

.offer-card input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-gold);
}

.offer-title {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
}

.cta-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.cta-fields input {
    padding: 18px 20px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: 'Tajawal', Arial, sans-serif;
}

.cta-fields input:focus {
    outline: none;
    background: var(--primary-white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.cta-fields input::placeholder {
    color: var(--text-secondary);
}

.confirmation-note {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 2px solid var(--primary-gold);
    color: var(--text-primary);
}

.confirmation-note p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

#submitBtn {
    width: 100%;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    color: var(--text-white);
    border: none;
    border-radius: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Tajawal', Arial, sans-serif;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

#submitBtn:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-gold));
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, var(--light-gray), var(--primary-white));
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 60px;
}

.faq-item {
    background: var(--primary-white);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(26, 26, 26, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(26, 26, 26, 0.15);
    transform: translateY(-2px);
    border-color: var(--primary-gold);
}

.faq-question {
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-gold));
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    margin-right: 15px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--primary-white);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer div {
    padding: 25px 30px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--text-white);
    padding: 40px 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
    }
    
    .comparison-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
        color: var(--text-primary);
        margin-bottom: 1rem;
    }
    
    .comparison-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .comparison-col {
        padding: 15px;
        border-radius: 8px;
        font-size: 0.9rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-offers {
        grid-template-columns: 1fr;
    }
    
    .cta-fields {
        grid-template-columns: 1fr;
    }
    
    .cta-order-form h2 {
        font-size: 2.2rem;
    }
    
    .cta-price {
        font-size: 2rem;
    }
    
    .guarantee-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .benefit-card,
    .tech-feature,
    .tip-card {
        padding: 30px 20px;
    }
    
    .cta-order-form h2 {
        font-size: 1.8rem;
    }
    
    .cta-price {
        font-size: 1.8rem;
    }

    /* FAQ Mobile Styles */
    .faq {
        padding: 60px 0;
    }

    .faq-container {
        margin-top: 40px;
        padding: 0 20px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.3;
    }

    .faq-toggle {
        font-size: 1.3rem;
        margin-right: 10px;
    }

    .faq-answer div {
        padding: 20px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

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

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

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus States */
*:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* Thank You Page Styles */
.thank-you-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.thankyou-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 5px solid var(--primary-gold);
}

.thankyou-container h1 {
    color: var(--therapeutic-green);
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.thankyou-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-gold);
}

.thankyou-details p {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

.thankyou-details strong {
    color: var(--therapeutic-green);
}

.important-notice {
    text-align: right;
    margin-top: 30px;
}

.important-notice h3 {
    color: #dc3545;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.important-notice p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.call-times {
    background: var(--therapeutic-green);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 1.1rem;
}

.urgent-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 15px;
    border-radius: 8px;
    color: #856404;
    font-weight: 500;
}

.closing-note {
    background: linear-gradient(135deg, var(--primary-gold), #f4d03f);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Print Styles */
@media print {
    .cta-order-form {
        display: none;
    }
    
    section {
        page-break-inside: avoid;
    }
}