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

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f7f9fb;
}

ul {
    list-style-type: square; /* square bullets */
    padding-left: 30px;      /* indent from left edge */
}

li {
    margin-bottom: 10px;     /* space between bullet points */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.containeri {
background: #0cc0df;
}

header {
    background: white;
    color: #0cc0df;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    margin-left: auto;
    gap: 10px;
    list-style: none;
    
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 120px;
    height: 45px;
    color: #0cc0df;
    background: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: #0cc0df;
    color: #fff;
    transform: translateY(-2px);
}

img.responsive {
    display: block;
    height:auto;
    max-width: 100%;
    margin: 0 auto;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    background: white;
    color: #0cc0df;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    margin-top: 20px;
    border-radius: 30px;
}

.btn:hover {
    background-color: #0cc0df;
    color: white;
    transform: translateY(-2px);
}

.section {
    padding: 70px 0;
}

footer {
    background: #0cc0df;
    color: white;
    text-align: center;
    padding: 20px;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #0cc0df;
    cursor: pointer;
    background: white;
    
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    padding-bottom: 20px;
    
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        background: white;
        color: #0cc0df;
        border: none;
        cursor: pointer;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        background: white;
        color: #0cc0df;
    }

    .logo {
        display: none;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;   /* left-align flex items */
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: left;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 20px;
        text-align: left;
        color: #0cc0df;
        text-decoration: none;
        box-sizing: border-box;
    }

    .nav-links a:hover {
        background-color: #0cc0df;
        color: white;
        transform: translateY(-2px);
    }
}
