* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
}


/* HEADER */

.header {
    width: 100%;
    background: white;
    padding: 18px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}


.logo span {
    font-size: 34px;
}


.logo h2 {
    color: #b52b69;
    font-size: 22px;
}


.logo small {
    color: #777;
}


nav {
    display: flex;
    align-items: center;
    gap: 18px;
}


nav a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
}


nav a:hover,
nav a.active {
    color: #b52b69;
}


.nav-button {
    background: #b52b69;
    color: white !important;
    padding: 10px 18px;
    border-radius: 25px;
}


/* HERO */

.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 70px 8%;
    background:
        linear-gradient(
            135deg,
            #fff1f7,
            #ffe5ef,
            #fff
        );
}


.hero-content {
    max-width: 750px;
}


.welcome {
    color: #b52b69;
    font-weight: bold;
    letter-spacing: 2px;
}


.hero h1 {
    font-size: 58px;
    line-height: 1.1;
    margin: 20px 0;
}


.hero h1 span {
    color: #b52b69;
}


.hero h2 {
    color: #777;
    margin-bottom: 20px;
}


.hero p {
    font-size: 20px;
    max-width: 650px;
}


.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}


/* BUTTON */

.btn {
    display: inline-block;
    padding: 13px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
}


.primary {
    background: #b52b69;
    color: white;
}


.secondary {
    background: white;
    color: #b52b69;
    border: 2px solid #b52b69;
}


.white {
    background: white;
    color: #b52b69;
}


/* SECTIONS */

.section {
    padding: 80px 8%;
}


.section.light {
    background: #fff7fa;
}


.section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 45px;
}


.section-title span {
    font-size: 35px;
}


.section-title h2 {
    font-size: 38px;
    margin: 10px 0;
    color: #b52b69;
}


/* CARDS */

.three-columns {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 25px;
}


.info-card {
    padding: 35px;
    text-align: center;
    background: white;
    border-radius: 20px;
    box-shadow:
        0 5px 25px rgba(0,0,0,0.08);
}


.info-card .icon {
    font-size: 45px;
}


.info-card h3 {
    margin: 15px 0;
    color: #b52b69;
}


/* PROGRAMS */

.program-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 25px;
}


.program-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow:
        0 5px 20px rgba(0,0,0,0.07);
    transition: 0.3s;
}


.program-card:hover {
    transform: translateY(-6px);
}


.program-card span {
    font-size: 45px;
}


.program-card h3 {
    color: #b52b69;
    margin-top: 12px;
}


.program-card p {
    margin-top: 10px;
}


.center-button {
    text-align: center;
    margin-top: 40px;
}


/* LIST */

.list-grid {
    max-width: 850px;
    margin: auto;

    display: grid;
    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}


.list-grid > div {
    background: #fff7fa;
    padding: 22px;
    border-radius: 12px;
}


.list-grid.large > div {
    background: white;
    box-shadow:
        0 5px 20px rgba(0,0,0,0.07);
}


/* PAGE HERO */

.page-hero {
    text-align: center;
    padding: 90px 20px;
    background: #fff0f6;
}


.page-hero h1 {
    font-size: 48px;
    color: #b52b69;
}


.page-hero p {
    font-size: 19px;
    margin-top: 10px;
}


/* JOURNEY */

.journey {
    padding: 80px 8%;
    background: #fff7fa;
}


.steps {
    display: grid;
    grid-template-columns:
        repeat(5, 1fr);
    gap: 20px;
}


.steps div {
    text-align: center;
}


.steps strong,
.process-card strong {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: #b52b69;
    color: white;

    font-size: 22px;
}


/* OPPORTUNITY */

.opportunity {
    text-align: center;
    padding: 80px 8%;
    background: #b52b69;
    color: white;
}


.opportunity h2 {
    font-size: 38px;
    margin-bottom: 15px;
}


.opportunity p {
    max-width: 800px;
    margin: 15px auto;
}


/* REGISTER */

.register-section {
    text-align: center;
    padding: 80px 20px;
}


.register-section h2 {
    color: #b52b69;
    font-size: 38px;
}


/* PROCESS */

.process {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 25px;
}


.process-card {
    padding: 35px;
    text-align: center;
    background: white;
    border-radius: 20px;

    box-shadow:
        0 5px 25px rgba(0,0,0,0.08);
}


.process-card h2 {
    margin: 15px 0;
    color: #b52b69;
}


.journey-box {
    text-align: center;
    padding: 30px;
    margin-top: 50px;
    background: #fff0f6;
    border-radius: 20px;
    color: #b52b69;
}


/* OPPORTUNITIES */

.opportunity-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 25px;
}


.opportunity-card {
    padding: 30px;
    background: white;
    border-radius: 20px;
    text-align: center;
    box-shadow:
        0 5px 20px rgba(0,0,0,0.07);
}


.opportunity-card span {
    font-size: 45px;
}


.opportunity-card h3 {
    color: #b52b69;
    margin: 15px 0;
}


.notice {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 25px;
    background: #fff4dc;
    border-radius: 15px;
    text-align: center;
}


/* FAQ */

.faq {
    max-width: 900px;
    margin: auto;
}


.faq-item {
    padding: 25px;
    margin-bottom: 18px;
    background: #fff7fa;
    border-radius: 15px;
}


.faq-item h3 {
    color: #b52b69;
    margin-bottom: 10px;
}


/* HIGHLIGHT */

.highlight {
    max-width: 850px;
    margin: 50px auto;
    padding: 40px;
    text-align: center;
    background: #fff0f6;
    border-radius: 20px;
}


.highlight h2 {
    color: #b52b69;
}


/* FORM */

.form-section {
    padding: 70px 20px;
    background: #fff7fa;
}


form {
    max-width: 750px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 20px;

    box-shadow:
        0 5px 25px rgba(0,0,0,0.08);
}


form label {
    display: block;
    margin-top: 20px;
    margin-bottom: 7px;
    font-weight: bold;
}


input,
textarea,
select {
    width: 100%;
    padding: 13px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}


textarea {
    min-height: 110px;
    resize: vertical;
}


.checkboxes label {
    font-weight: normal;
    margin-top: 10px;
}


.checkboxes input {
    width: auto;
    margin-right: 8px;
}


form button {
    margin-top: 30px;
}


#formMessage {
    margin-top: 20px;
    color: #16803c;
    font-weight: bold;
}


/* FOOTER */

footer {
    padding: 45px 8%;
    text-align: center;
    background: #252025;
    color: white;
}


footer h3 {
    color: #ffb4d3;
}


.footer-links {
    margin: 20px 0;
}


.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}


.copyright {
    margin-top: 20px;
    color: #aaa;
    font-size: 14px;
}


/* MOBILE */

@media (max-width: 900px) {

    .header {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .three-columns,
    .program-grid,
    .process,
    .opportunity-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 600px) {

    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .three-columns,
    .program-grid,
    .process,
    .opportunity-grid,
    .list-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 55px 20px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    form {
        padding: 25px;
    }

}