@charset "utf-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f8f9f8;
    color: #243447;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.hero {
    padding: 60px 20px;
    background: linear-gradient(
        to bottom,
        #ffffff,
        #eef7f7
    );
}

.logo {
    max-width: 100%;
    width: 900px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,.15);
}

.contact {
    margin-top: 35px;
    font-size: 1.2rem;
    color: #006d77;
}

.contact a {
    color: #006d77;
    text-decoration: none;
    font-weight: 600;
}

.footer {
    padding: 30px;
    background: #006d77;
    color: white;
}

.footer h3 {
    margin-bottom: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 20px;
}

.card {
    padding: 15px;
}

.card h4 {
    margin-bottom: 10px;
    color: #f4d58d;
}

@media(max-width:768px){

.footer-grid{
    grid-template-columns:1fr;
}

.logo{
    width:100%;
}

.contact{
    font-size:1rem;
}
}