/* ========== GLOBAL ========== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    background: #f4f6f8;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* ========== HEADER ========== */

.header {
    background: #0a3d62;
    color: white;
    padding: 20px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 26px;
}

.slogan {
    font-size: 14px;
    opacity: 0.8;
}

.nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}

.nav a:hover {
    text-decoration: underline;
}

/* ========== HERO ========== */

.hero {
    background: linear-gradient(135deg, #1e5799, #2980b9);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

/* ========== CONTENT ========== */

.content {
    padding: 60px 0;
}

.grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.text {
    flex: 1;
}

.image {
    flex: 1;
    text-align: center;
}

.image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ========== FOOTER ========== */

.footer {
    background: #0a3d62;
    color: white;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer a {
    color: white;
    text-decoration: none;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {

    .header-inner {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        margin-top: 15px;
    }

    .nav a {
        margin: 0 10px;
    }

    .grid {
        flex-direction: column;
    }

    .hero h2 {
        font-size: 22px;
    }
}
