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

body{

    font-family:Arial, Helvetica, sans-serif;
    background:#f4f6f5;
    color:#333;
    line-height:1.8;
}

.container{

    width:90%;
    max-width:1100px;
    margin:auto;
}

.hero{

    background:linear-gradient(135deg,#0d4d42,#1d6f5b);
    color:white;
    padding:70px 20px;
    text-align:center;
}

.hero h1{

    font-size:2.6rem;
    margin-bottom:15px;
}

.subtitle{

    font-size:1.2rem;
    opacity:.95;
}

.card{

    background:white;
    margin:35px 0;
    padding:35px;
    border-radius:10px;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
}

.card h2{

    color:#0d4d42;
    margin-bottom:20px;
}

.card p{

    margin-bottom:20px;
}

.cta{

    text-align:center;
    background:#0d4d42;
    color:white;
    padding:50px;
    border-radius:10px;
    margin:50px 0;
}

.button{

    display:inline-block;
    margin-top:25px;
    background:#d6a53d;
    color:#fff;
    text-decoration:none;
    padding:16px 40px;
    border-radius:6px;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

.button:hover{

    background:#b88928;
}

footer{

    text-align:center;
    color:#666;
    padding:40px 0;
    font-size:14px;
}
