/* Legal Pages Styles (Terms, Privacy, Refund) */

/* Legal Hero Section */
.legal-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--white) 50%, var(--light-green) 100%);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.legal-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.legal-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
}

.legal-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 15px;
}

.legal-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto 15px;
    line-height: 1.6;
}

.legal-date {
    display: inline-block;
    background-color: var(--light-green);
    color: var(--dark-green);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Legal Content Section */
.legal-content {
    padding: 60px 20px 80px;
    background-color: var(--white);
    width: 100%;
    box-sizing: border-box;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Table of Contents */
.toc-card {
    background: linear-gradient(135deg, var(--lightest-green), var(--light-green));
    padding: 30px 35px;
    border-radius: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.toc-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
}

.toc-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.toc-list li {
    position: relative;
    z-index: 2;
}

.toc-list li a {
    display: block;
    padding: 12px 15px;
    background-color: var(--white);
    border-radius: 10px;
    text-decoration: none;
    color: var(--gray);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.toc-list li a:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Legal Sections */
.legal-section {
    background-color: var(--white);
    padding: 35px 40px;
    border-radius: 20px;
    margin-bottom: 25px;
    border: 1px solid var(--border-gray);
    position: relative;
    transition: all 0.3s ease;
}

.legal-section:hover {
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.1);
    border-color: var(--light-green);
}

.section-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin: 25px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--light-green);
}

.legal-section p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

/* Legal Lists */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 15px;
    background-color: var(--lightest-green);
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.legal-list li::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.legal-list.warning li::before {
    content: "✕";
    color: var(--red);
}

.legal-list.warning li {
    background-color: #fef2f2;
}

/* Account Type Cards */
.account-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.account-card {
    padding: 25px;
    border-radius: 16px;
    text-align: center;
}

.account-card.free {
    background-color: var(--light-gray);
    border: 2px solid var(--border-gray);
}

.account-card.paid {
    background: linear-gradient(135deg, var(--lightest-green), var(--light-green));
    border: 2px solid var(--primary-green);
}

.account-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.account-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Warning Box */
.warning-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #fffbeb;
    border: 1px solid #fbbf24;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.warning-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.warning-box p {
    margin: 0;
    color: #92400e;
    font-weight: 500;
}

/* Refund Box */
.refund-box {
    background: linear-gradient(135deg, var(--lightest-green), var(--light-green));
    border-radius: 16px;
    padding: 25px;
    margin: 20px 0;
}

.refund-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.refund-icon {
    font-size: 28px;
}

.refund-header h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark-green);
    margin: 0;
}

.refund-box ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.refund-box ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: var(--gray);
}

.refund-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

.refund-box .note {
    font-size: 13px;
    font-style: italic;
    color: var(--gray);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--border-gray);
}

/* Disclaimer Box */
.disclaimer-box {
    background-color: var(--light-gray);
    border-left: 4px solid var(--gray);
    border-radius: 0 12px 12px 0;
    padding: 25px;
}

.disclaimer-box p {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Contact Box */
.contact-box {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white) !important;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.contact-icon {
    font-size: 20px;
}

/* Legal Copyright */
.legal-copyright {
    text-align: center;
    padding: 40px 0 0;
    border-top: 1px solid var(--border-gray);
    margin-top: 40px;
}

.legal-copyright p {
    font-size: 14px;
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .toc-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .legal-title {
        font-size: 36px;
    }
    
    .legal-subtitle {
        font-size: 16px;
    }
    
    .legal-icon {
        width: 70px;
        height: 70px;
    }
    
    .legal-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .toc-list {
        grid-template-columns: 1fr;
    }
    
    .toc-card {
        padding: 25px;
    }
    
    .legal-section {
        padding: 30px 25px;
    }
    
    .legal-section h2 {
        font-size: 20px;
        padding-left: 0;
        padding-top: 10px;
    }
    
    .section-number {
        top: -12px;
        left: 20px;
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .account-types {
        grid-template-columns: 1fr;
    }
    
    .legal-hero {
        padding: 50px 15px;
    }
    
    .legal-content {
        padding: 40px 15px 60px;
    }
}

@media (max-width: 480px) {
    .legal-title {
        font-size: 28px;
    }
    
    .legal-subtitle {
        font-size: 14px;
    }
    
    .legal-date {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .legal-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    
    .legal-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .toc-card {
        padding: 20px;
    }
    
    .toc-title {
        font-size: 18px;
    }
    
    .toc-list li a {
        font-size: 13px;
        padding: 12px 15px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .legal-section {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .legal-section h2 {
        font-size: 18px;
    }
    
    .legal-section h3 {
        font-size: 16px;
    }
    
    .legal-section p {
        font-size: 14px;
    }
    
    .legal-list li {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .account-card {
        padding: 20px;
    }
    
    .account-card h4 {
        font-size: 16px;
    }
    
    .refund-box {
        padding: 20px;
    }
    
    .refund-header h4 {
        font-size: 18px;
    }
    
    .warning-box {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    .disclaimer-box {
        padding: 20px;
    }
    
    .disclaimer-box p {
        font-size: 12px;
    }
    
    .contact-link {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* ================================================
   PRIVACY POLICY PAGE SPECIFIC STYLES
   ================================================ */

/* Third Party Links */
.third-party-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.third-party-link {
    display: inline-block;
    padding: 10px 18px;
    background-color: var(--lightest-green);
    border: 1px solid var(--light-green);
    border-radius: 25px;
    color: var(--dark-green) !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.third-party-link:hover {
    background-color: var(--primary-green);
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* Data Sharing Grid */
.data-sharing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.data-sharing-card {
    background-color: var(--lightest-green);
    border: 1px solid var(--light-green);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.data-sharing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.15);
}

.data-card-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.data-sharing-card h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
}

.data-sharing-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 8px;
}

.data-sharing-card a {
    font-size: 13px;
    color: var(--primary-green);
    font-weight: 600;
}

.note-small {
    font-style: italic;
    font-size: 12px !important;
    color: var(--gray);
}

/* Security Grid */
.security-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.security-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: var(--lightest-green);
    padding: 18px 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
}

.security-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.security-item strong {
    display: block;
    color: var(--black);
    margin-bottom: 5px;
}

.security-item p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

/* Retention Table */
.retention-table {
    background-color: var(--lightest-green);
    border-radius: 16px;
    overflow: hidden;
    margin: 20px 0;
}

.retention-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--light-green);
}

.retention-row:last-child {
    border-bottom: none;
}

.retention-type {
    font-weight: 700;
    color: var(--black);
    font-size: 14px;
}

.retention-period {
    font-size: 13px;
    color: var(--gray);
    text-align: right;
}

/* Deletion Steps */
.deletion-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.deletion-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    padding: 20px;
    border-radius: 12px;
}

.step-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.deletion-step strong {
    display: block;
    color: var(--black);
    margin-bottom: 5px;
}

.deletion-step p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.right-card {
    background-color: var(--lightest-green);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid var(--light-green);
}

.right-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.right-card h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
}

.right-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.right-card li {
    font-size: 13px;
    color: var(--gray);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.right-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Age Badge */
.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--lightest-green), var(--light-green));
    padding: 15px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 2px solid var(--primary-green);
}

.age-icon {
    font-size: 28px;
}

.age-badge span {
    font-size: 15px;
    color: var(--black);
}

/* Child Privacy Contact */
.child-privacy-contact {
    background-color: var(--lightest-green);
    border-radius: 16px;
    padding: 25px;
    margin-top: 25px;
    border-left: 4px solid var(--primary-green);
}

.child-privacy-contact h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
}

.child-privacy-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.child-privacy-contact li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray);
}

/* ================================================
   REFUND POLICY PAGE SPECIFIC STYLES
   ================================================ */

.refund-intro {
    background-color: var(--lightest-green);
    padding: 25px 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-green);
}

.refund-intro p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* Guarantee Hero */
.guarantee-hero {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, var(--lightest-green) 0%, var(--light-green) 100%);
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 40px;
    border: 2px solid var(--primary-green);
}

.guarantee-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.guarantee-icon {
    font-size: 28px;
}

.guarantee-percent {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
}

.guarantee-content h2 {
    font-size: 28px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 15px;
}

.guarantee-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* Refund Steps */
.refund-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.refund-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    padding: 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.refund-step:hover {
    border-color: var(--light-green);
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.1);
}

.step-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

/* Info Checklist */
.info-checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray);
}

.check-icon {
    width: 22px;
    height: 22px;
    background-color: var(--light-green);
    color: var(--dark-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Processing Info */
.processing-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.processing-card {
    text-align: center;
    background-color: var(--lightest-green);
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid var(--light-green);
}

.processing-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.processing-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 10px;
}

.processing-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.contact-card {
    text-align: center;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card.refund-contact {
    background: linear-gradient(135deg, var(--lightest-green), var(--light-green));
    border-color: var(--primary-green);
}

.contact-card.support-contact {
    background-color: var(--white);
}

.contact-card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.contact-email {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white) !important;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.contact-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.4);
}

/* Policy Note */
.policy-note {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 12px;
    margin-top: 25px;
}

.policy-note p {
    font-size: 13px;
    color: var(--gray);
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* Refund CTA */
.refund-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    padding: 40px 50px;
    border-radius: 24px;
    margin: 50px 0 30px;
    overflow: hidden;
    position: relative;
}

.cta-content {
    max-width: 60%;
}

.cta-content h3 {
    font-size: 26px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background-color: var(--white);
    color: var(--dark-green) !important;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-mascot {
    position: absolute;
    right: 30px;
    bottom: 0;
}

.cta-mascot img {
    width: 150px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

/* ================================================
   ADDITIONAL RESPONSIVE STYLES
   ================================================ */

@media (max-width: 1024px) {
    .data-sharing-grid {
        grid-template-columns: 1fr;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .processing-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .guarantee-hero {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .guarantee-badge {
        width: 100px;
        height: 100px;
    }
    
    .guarantee-content h2 {
        font-size: 24px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .refund-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .cta-content {
        max-width: 100%;
    }
    
    .cta-mascot {
        position: relative;
        right: auto;
        margin-top: 20px;
    }
    
    .cta-mascot img {
        width: 120px;
    }
    
    .retention-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .retention-period {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .third-party-links {
        flex-direction: column;
    }
    
    .third-party-link {
        text-align: center;
    }
    
    .data-sharing-card {
        padding: 20px;
    }
    
    .security-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .deletion-step {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .right-card {
        padding: 20px;
    }
    
    .age-badge {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
    }
    
    .guarantee-hero {
        padding: 25px;
    }
    
    .guarantee-badge {
        width: 90px;
        height: 90px;
    }
    
    .guarantee-icon {
        font-size: 22px;
    }
    
    .guarantee-percent {
        font-size: 22px;
    }
    
    .guarantee-content h2 {
        font-size: 20px;
    }
    
    .refund-step {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .processing-card {
        padding: 25px 15px;
    }
    
    .processing-icon {
        font-size: 30px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .refund-cta {
        padding: 25px;
    }
    
    .cta-content h3 {
        font-size: 20px;
    }
    
    .cta-content p {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .child-privacy-contact {
        padding: 20px;
    }
    
    .refund-intro {
        padding: 20px;
    }
}
