/* Core Layout & Typography */
main.container {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    color: #1e293b !important;
    background-color: #f8fafc;
    padding: 40px 15px !important;
    border-radius: 16px;
}

.age-hero {
    text-align: center;
    margin-bottom: 35px;
}
.age-title-main {
    font-size: 2.2rem !important;
    font-weight: 850 !important;
    color: #0f172a !important;
    letter-spacing: -1px !important;
    margin-bottom: 10px !important;
}
.age-subtitle-main {
    font-size: 16px !important;
    color: #64748b !important;
    font-weight: 500 !important;
}

.age-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .age-grid {
        grid-template-columns: 1fr 1.3fr;
    }
}

.age-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.control-label {
    font-weight: 700 !important;
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pro-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.pro-input:focus {
    border-color: #f59e0b;
}

.age-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700 !important;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
    transition: all 0.2s;
}
.age-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

/* Results Display Styling */
.result-card {
    background: #ffffff;
    border: 2px dashed #cbd5e1;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    padding: 30px;
    box-sizing: border-box;
}
.empty-state-text {
    text-align: center;
    color: #64748b;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    background: #fffbeb;
    color: #d97706;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: left;
    width: fit-content;
}

/* Main Big numbers */
.main-age-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 15px 0;
}
.age-big-number {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
}
.age-big-number span {
    display: block;
    font-size: 32px;
    font-weight: 850;
    color: #1e293b;
}
.age-big-number small {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.info-box {
    background: #f8fafc;
    border-radius: 10px;
    padding: 15px;
    text-align: left;
    border-left: 4px solid #f59e0b;
}
.info-title {
    font-size: 12px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.info-value {
    font-size: 16px;
    font-weight: 750;
    color: #1e293b;
}

/* Deep stats list */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: left;
}
@media (min-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.stat-item {
    background: #f8fafc;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 550;
    color: #475569;
    display: flex;
    justify-content: space-between;
}
.stat-item span {
    font-weight: 850;
    color: #1e293b;
}

/* FAQ Styles */
.faq-section { max-width: 850px; margin: 60px auto 30px auto; }
.faq-main-title { font-size: 24px !important; font-weight: 850 !important; color: #0f172a; margin-bottom: 30px; text-align: center; }
.faq-item { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 22px; margin-bottom: 16px; }
.faq-question { font-size: 16.5px !important; font-weight: 750 !important; color: #0f172a; margin-top: 0; margin-bottom: 10px; }
.faq-answer { font-size: 14.5px; color: #475569; line-height: 1.6; margin: 0; }