* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
}


/* Header */

header {
    background: #ffffff;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo span {
    font-weight: normal;
    color: #728b62;
}

nav a {
    text-decoration: none;
    color: #333;
    margin-left: 30px;
}


/* Hero */

.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    background:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.45)
    ),
    url("images/hero.jpg");

    background-size: cover;
    background-position: center;
    color:white;
}


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

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 35px;
}


/* Buttons */

.button {
    display:inline-block;
    padding:14px 30px;
    background:#728b62;
    color:white;
    text-decoration:none;
    border-radius:3px;
}


/* Sections */

.section {
    padding:80px 0;
}

.section h2 {
    font-size:38px;
    margin-bottom:25px;
}


.section p {
    max-width:800px;
    font-size:18px;
    margin-bottom:20px;
}


.light {
    background:#f7f5f0;
}


.dark {
    background:#222;
    color:white;
}


/* Cards */

.cards {
    display:flex;
    gap:30px;
    margin-top:40px;
}


.card {
    background:white;
    padding:35px;
    flex:1;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}


.card h3 {
    margin-bottom:15px;
    font-size:24px;
}


/* Contact */

.contact {
    text-align:center;
}


/* Footer */

footer {
    background:#111;
    color:#aaa;
    padding:25px 0;
    text-align:center;
}


/* Mobile */

@media(max-width:768px){

    .nav {
        flex-direction:column;
    }

    nav {
        margin-top:20px;
    }

    nav a {
        margin:0 10px;
    }


    .hero h1 {
        font-size:38px;
    }


    .cards {
        flex-direction:column;
    }

}

/* Partner Form */

.partner-page h1 {
    font-size:42px;
    margin-bottom:25px;
}


form {
    max-width:700px;
    margin-top:40px;
}


form label {

    display:block;
    margin-top:20px;
    margin-bottom:8px;
    font-weight:bold;

}


form input,
form select,
form textarea {

    width:100%;
    padding:14px;
    border:1px solid #ddd;
    font-size:16px;

}


form button {

    border:none;
    margin-top:30px;
    cursor:pointer;
    font-size:16px;

}


.partner-section {

    background:#f7f5f0;

}