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

:root {
    /* Color Palette */
    --primary-color: #d4a574;
    --primary-dark: #b8895e;
    --secondary-color: #2c2c2c;
    --accent-color: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --success: #4caf50;
    --error: #f44336;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p,
.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--text-dark);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ===========================
   Header
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.logo span {
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-list li a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.header-cta {
    margin-left: 20px;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    background-image: url('https://www.genspark.ai/api/files/s/cSloj3fS');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 40px 20px;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.hero-location {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-location i {
    margin-right: 8px;
    color: var(--primary-color);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-microcopy {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-microcopy i {
    color: var(--primary-color);
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge i {
    font-size: 2rem;
    color: var(--primary-color);
}

.trust-badge p {
    margin: 0;
    text-align: left;
    font-size: 0.95rem;
}

/* ===========================
   Teachers Section
   =========================== */
.teachers {
    padding: var(--section-padding);
    background-color: var(--accent-color);
}

.maria-educator {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.educator-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.educator-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.educator-info h3 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 20px;
}

.educator-intro {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.7;
}

.educator-info h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.highlights-list {
    list-style: none;
    margin-bottom: 25px;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.highlights-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.educator-philosophy {
    background: var(--accent-color);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin: 0;
}

/* ===========================
   ROI Section
   =========================== */
.roi {
    padding: var(--section-padding);
    background: var(--white);
}

.roi-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.benefit-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit-item p {
    max-width: 200px;
    font-weight: 500;
}

.roi-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.roi-card {
    background: var(--accent-color);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.roi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.roi-card.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.roi-card.highlight h3,
.roi-card.highlight .roi-number {
    color: var(--white);
}

.roi-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.roi-card.highlight .roi-icon {
    color: var(--white);
}

.roi-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.roi-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-display);
}

.roi-footer {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
}

/* ===========================
   Income Model Section
   =========================== */
.income-model {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    color: var(--white);
}

.income-model .section-header h2,
.income-model .section-header p {
    color: var(--white);
}

.income-breakdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.income-stat {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.income-stat.highlight {
    background: var(--primary-color);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.income-multiply,
.income-equals {
    font-size: 2rem;
    font-weight: 700;
}

.income-potential {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.potential-card {
    background: var(--primary-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.potential-card h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.potential-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.potential-note {
    font-size: 0.95rem;
    margin: 0;
}

.overhead-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.overhead-info h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.overhead-info i {
    color: var(--primary-color);
    margin-right: 8px;
}

.disclaimer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   Who For Section
   =========================== */
.who-for {
    padding: var(--section-padding);
    background: var(--accent-color);
}

.who-for-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.for-you h3 {
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.not-for-you h3 {
    color: var(--error);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.checklist,
.xchecklist {
    list-style: none;
}

.checklist li,
.xchecklist li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checklist li i {
    color: var(--success);
    font-size: 1.2rem;
    margin-top: 3px;
}

.xchecklist li i {
    color: var(--error);
    font-size: 1.2rem;
    margin-top: 3px;
}

/* ===========================
   Learn Section
   =========================== */
.learn {
    padding: var(--section-padding);
    background: var(--white);
}

.learn-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.learn-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.learn-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.learn-outcomes h3 {
    margin-bottom: 30px;
    color: var(--text-dark);
}

.outcomes-list {
    list-style: none;
    margin-bottom: 40px;
}

.outcomes-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.outcome-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.outcome-text {
    flex: 1;
}

.outcome-text strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.course-details {
    background: var(--accent-color);
    padding: 25px;
    border-radius: 10px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

.tbd {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===========================
   Included Section
   =========================== */
.included {
    padding: var(--section-padding);
    background: var(--accent-color);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.included-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.included-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.included-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.included-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.included-item p {
    color: var(--text-light);
    margin: 0;
}

.included-cta {
    text-align: center;
}

/* ===========================
   Partner Section
   =========================== */
.partner {
    padding: var(--section-padding);
    background: var(--white);
}

.partner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.partner-text h2 {
    margin-bottom: 25px;
    text-align: center;
}

.partner-text > p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.partner-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.partner-benefits li {
    padding: 15px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.partner-benefits i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.partner-description {
    background: var(--accent-color);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 30px;
}

.partner-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===========================
   Location Section
   =========================== */
.location {
    padding: var(--section-padding);
    background: var(--accent-color);
}

.location-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.location-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.location-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.location-card h3 {
    margin-bottom: 15px;
}

.location-card p {
    margin: 5px 0;
}

.location-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.location-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: #f5f5f5;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===========================
   FAQ Section
   =========================== */
.faq {
    padding: var(--section-padding);
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--accent-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(212, 165, 116, 0.1);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-light);
    margin: 0;
}

/* ===========================
   Apply Section
   =========================== */
.apply {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    color: var(--white);
}

.apply-content {
    max-width: 800px;
    margin: 0 auto;
}

.apply-header {
    text-align: center;
    margin-bottom: 50px;
}

.apply-header h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.apply-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.apply-form {
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.required {
    color: var(--error);
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
}

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

.checkbox-group {
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-consent-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 15px;
    line-height: 1.5;
}

.form-consent-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-consent-text a:hover {
    color: var(--primary-dark);
}

.form-success {
    display: none;
    text-align: center;
    padding: 50px;
    background: var(--white);
    border-radius: 10px;
}

.form-success.active {
    display: block;
}

.form-success i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
}

.form-success h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.form-success p {
    color: var(--text-light);
    margin: 0;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3,
.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-column i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin-bottom: 5px;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .learn-content,
    .partner-content {
        grid-template-columns: 1fr;
    }
    
    .who-for-content {
        grid-template-columns: 1fr;
    }
    
    .income-potential {
        grid-template-columns: 1fr;
    }
    
    .maria-educator {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .trust-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-badge p {
        text-align: center;
    }
    
    .income-breakdown {
        flex-direction: column;
        gap: 15px;
    }
    
    .income-multiply,
    .income-equals {
        transform: rotate(90deg);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .apply-form {
        padding: 30px 20px;
    }
    
    .location-details,
    .location-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .potential-amount {
        font-size: 2.5rem;
    }
}