/* ===== GENERAL ===== */

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

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

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

/* ===== HEADER ===== */

header{
    background:white;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

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

.logo{
    font-size:2rem;
    font-weight:bold;
    color:#2f6b45;
}

nav a{
    text-decoration:none;
    color:#333;
    margin-left:30px;
    font-weight:bold;
    transition:.3s;
}

nav a:hover{
    color:#2f6b45;
}

/* ===== HERO ===== */

.hero{
    height:80vh;
    display:flex;
    align-items:center;
    text-align:center;
    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
        url("boxboys3.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    color:white;
}

.hero h2{
    font-size:4rem;
    margin-bottom:20px;
}

.hero p{
    font-size:1.2rem;
    max-width:700px;
    margin:auto;
    margin-bottom:35px;
}

/* ===== BUTTON ===== */

.button{
    display:inline-block;
    padding:16px 34px;
    background:#2f6b45;
    color:white;
    text-decoration:none;
    border-radius:6px;
    font-weight:bold;
    transition:.3s;
}

.button:hover{
    background:#245338;
}

/* ===== SERVICES ===== */

.services{
    padding:90px 0;
}

.services h2{
    text-align:center;
    margin-bottom:60px;
    font-size:2.5rem;
}

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

.card{
    background:white;
    padding:35px;
    border-radius:10px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.card h3{
    margin-bottom:15px;
    color:#2f6b45;
}

/* ===== FOOTER ===== */

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:30px 0;
}

/* ===== MOBILE ===== */

@media(max-width:900px){

.cards{
    grid-template-columns:1fr;
}

.hero h2{
    font-size:2.6rem;
}

header .container{
    flex-direction:column;
}

nav{
    margin-top:20px;
}

nav a{
    margin:0 12px;
}

}

/* ===== ABOUT PAGE ===== */

.about-page{
    padding:100px 0;
    background:white;
}

.about-page .container{
    max-width:850px;
}

.about-page h2{
    font-size:3rem;
    margin-bottom:30px;
    color:#2f6b45;
}

.about-page p{
    font-size:1.1rem;
    margin-bottom:22px;
}

.about-page .button{
    margin-top:15px;
}

/* ===== CONTACT PAGE ===== */

.contact-page{
    padding:100px 0;
}

.contact-page .container{
    max-width:700px;
}

.contact-page h2{
    font-size:3rem;
    color:#2f6b45;
    margin-bottom:20px;
}

.contact-page p{
    margin-bottom:35px;
    font-size:1.1rem;
}

form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

input,
textarea{
    width:100%;
    padding:16px;
    font-size:1rem;
    border:1px solid #ccc;
    border-radius:6px;
    font-family:inherit;
}

textarea{
    resize:vertical;
}

button{
    border:none;
    cursor:pointer;
    font-size:1rem;
}
