* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Myriad Pro, Arial, Helvetica, sans-serif;
    color: #103040;
    line-height: 1.7;

    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.9), transparent 40%),
        radial-gradient(circle at bottom right, rgba(180,220,255,0.5), transparent 35%),
        linear-gradient(180deg, #dff4ff 0%, #f8fcff 45%, #d6eef8 100%);

    min-height: 100vh;
}

/* HERO SECTION */

.hero {
    position: relative;
    height: 55vh;
    min-height: 320px;
    background-image: linear-gradient(rgba(0, 45, 70, 0.35), rgba(0, 45, 70, 0.35)), url('pozadi.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    text-align: center;
	text-transform: uppercase;
    color: white;
    padding: 2rem;
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 0.15em;
    font-weight: 700;
    text-shadow: 0 4px 18px rgba(0,0,0,0.45);
}

/* MAIN CONTENT */

.content {
    max-width: 92ex;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

section {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(6px);

    border: 1px solid rgba(255,255,255,0.6);

    border-radius: 1.2rem;

    padding: 2rem;
    margin-bottom: 2rem;

    box-shadow:
        0 10px 30px rgba(0, 70, 100, 0.08),
        0 2px 8px rgba(0, 70, 100, 0.06);
}

section h1 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #0f4d68;
}

section p {
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

/* MOBILE */

@media (max-width: 700px) {

    .hero {
        height: 45vh;
        min-height: 260px;
    }

    .content {
        padding: 2rem 1rem 4rem;
    }

    section {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    section h1 {
        font-size: 1.4rem;
    }
}