* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    text-align: center;
    padding: 40px 0;
}

/* HERO */
.hero {
    background: linear-gradient(to right, #0a3d62, #3c6382);
    color: white;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    margin-bottom: 20px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    text-decoration: none;
    border-radius: 5px;
}

.primary {
    background: #38ada9;
    color: white;
}

.secondary {
    background: white;
    color: #0a3d62;
}

/* SECTIONS */
.about {
    background: #f4f4f4;
}

.services .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.highlight {
    background: #3c6382;
    color: white;
}

.highlight.light {
    background: #f4f4f4;
    color: #333;
}

.cta {
    background: #0a3d62;
    color: white;
}

.contact {
    background: #222;
    color: white;
    font-size: 0.9rem;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
}

.logo img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
}
