body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f7f5f0;
    color: #1f2933;
}

h1 {
    color: #1e3a5f;
    font-size: 48px;
}

p {
    font-size: 20px;
    color: #4b5563;
}

header {
    background-color: #1e3a5f;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-size: 16px;
}

nav a:hover {
    color: #d4af37;
}

main {
    padding: 100px 60px;
}

/* Hero Section */

.hero {
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 60px 50px;
    background: linear-gradient(
        135deg,
        #f4f7fb 0%,
        #e8eef7 100%
    );
}




.hero-content {
    max-width: 850px;
}

.hero-image-placeholder {
    width: 420px;
    height: 300px;
    border-radius: 12px;
    background-color: #d9e2ec;
    border: 2px dashed #8aa4c2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #17345f;
    font-weight: 600;
}





.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #17284d;
}

.hero p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #4b5563;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background-color: #1d4f91;
    color: white;
}

.btn-secondary {
    border: 2px solid #1d4f91;
    color: #1d4f91;
    background-color: transparent;
}


/* Services Section */
.services {
    padding: 80px 50px;
    background-color: white;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    color: #17284d;
    margin-bottom: 40px;
}


.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}



.service-card {
    background-color: #f7f5f0;
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid #d4af37;
}

.service-card h3 {
    color: #1e3a5f;
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
}


/* About Section */
.about {
    padding: 90px 50px;
    background-color: #17284d;
    color: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 18px;
}

.about h2 {
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 25px;
}

.about p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #e5e7eb;
}


/* About Section */
.about {
    padding: 90px 50px;
    background-color: #17284d;
    color: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 18px;
}

.about h2 {
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 25px;
}

.about p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #e5e7eb;
}

/* Investment Page */

.investment-sections {
    max-width: 1100px;
    margin: 20px auto 80px;
    padding: 0 40px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.investment-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e2e6ec;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.investment-card h2 {
    color: #17325c;
    font-size: 22px;
    margin-bottom: 15px;
}

.investment-card p {
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* Responsive layout */

@media (max-width: 800px) {
    .investment-sections {
        grid-template-columns: 1fr;
    }
}

/* Our Approach Section */

.our-approach {
    background-color: #17284d;
    color: white;
    padding: 90px 50px;
}

.approach-content {
    max-width: 950px;
    margin: 0 auto;
}

.our-approach h2 {
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 25px;
    color: white;
}

.our-approach p {
    font-size: 18px;
    line-height: 1.7;
    color: #e5e7eb;
    margin-bottom: 18px;
}


/* Call to Action Section */

.cta-section {
    padding: 80px 40px;
    background-color: #f4f1ea;
    text-align: center;
}

.cta-content {
    max-width: 760px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    color: #17345f;
    margin: 12px 0 18px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 30px;
}

.cta-content .btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

.cta-content .btn-primary {
    background-color: #17345f;
    color: white;
}

.cta-content .btn-primary:hover {
    background-color: #0f2748;
}

/* Page Image Section */

.page-image-section {
    padding: 40px 50px;
    background-color: #f4f7fb;
}

.page-image-placeholder {
    max-width: 1100px;
    height: 320px;
    margin: 0 auto;
    border-radius: 12px;
    background-color: #d9e2ec;
    border: 2px dashed #8aa4c2;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #17345f;
    font-weight: 600;
}






/* Footer */



.site-footer {
    background-color: #172748;
    color: white;
    padding: 15px 40px 18px;
    margin-left: 60px;
    margin-right: 60px;
}




.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand {
    max-width: 420px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-brand p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-bottom {
    max-width: 1100px;
    margin: 15px auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
}




.footer-bottom p {
    color: #d1d5db;
    font-size: 14px;
}

/* Education Image Section */

.education-image-section {
    padding: 35px 50px;
}

.education-image-placeholder {
    max-width: 1000px;
    height: 260px;
    margin: 0 auto;

    border: 2px dashed #9aa6b2;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #17284d;
    font-weight: 600;
    background-color: #f4f6f8;
}



/* Mobility Image Section */

.mobility-image-section {
    padding: 35px 50px;
}

.mobility-image-placeholder {
    max-width: 1000px;
    height: 260px;
    margin: 0 auto;

    border: 2px dashed #9aa6b2;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #17284d;
    font-weight: 600;
    background-color: #f4f6f8;
}

/* Family Strategy Feature Section */

.family-feature-section {
    padding: 45px 50px;
}

.family-feature-content {
    max-width: 1000px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 45px;
    align-items: center;
}

.family-image-placeholder {
    height: 320px;

    border: 2px dashed #9aa6b2;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #17284d;
    font-weight: 600;
    background-color: #f4f6f8;
}

.family-feature-text h2 {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #17284d;
}

.family-feature-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}


/* Investment Image Section */

.investment-image-section {
    padding: 35px 50px;
}

.investment-image-placeholder {
    max-width: 1000px;
    height: 280px;
    margin: 0 auto;

    border: 2px dashed #9aa6b2;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #17284d;
    font-weight: 600;
    background-color: #f4f6f8;
}

/* Contact Section */

.contact-section {
    padding: 50px;
}

.contact-content {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.contact-info h2 {
    font-size: 32px;
    color: #17284d;
    margin-bottom: 20px;
}

.contact-info p {
    line-height: 1.7;
    margin-bottom: 18px;
}

.contact-form {
    background-color: #f4f6f8;
    padding: 35px;
    border-radius: 10px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: #17284d;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 12px;

    border: 1px solid #c7ced8;
    border-radius: 6px;

    font-family: inherit;
    font-size: 15px;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    border: none;
    cursor: pointer;
}

/* Contact Form Privacy Note */

.form-privacy-note {
    margin-top: 16px;
    margin-bottom: 0;

    font-size: 12px;
    line-height: 1.5;

    color: #6b7280;
    font-weight: 400;
}


.service-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Selected Opportunities Section */

.opportunities-section {
    padding: 80px 8%;
    background-color: #ffffff;
}

.opportunities-content {
    max-width: 1200px;
    margin: 0 auto;
}

.opportunities-content .section-label {
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.opportunities-content h2 {
    color: #17284d;
    font-size: 36px;
    margin-bottom: 40px;
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.opportunity-card {
    background-color: #f7f5f0;
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid #d4af37;
}

.opportunity-card h3 {
    color: #1e3a5f;
    font-size: 22px;
    margin-bottom: 15px;
}

.opportunity-card p {
    font-size: 16px;
    line-height: 1.6;
}

.opportunity-link {
    text-decoration: none;
    color: inherit;
}