body {
    background: url('https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?auto=format&fit=crop&w=1600&q=80') no-repeat center center fixed;
    background-size: cover;
    color: #222;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    letter-spacing: 0.01em;
}

#navbar {
    width: 100%;
    background: #222bfa;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 18px 24px;
    box-shadow: 0 2px 12px rgba(40,62,235,0.08);
    position: sticky;
    top: 0;
    z-index: 10;
    border-radius: 18px;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    margin-right: 24px;
}

.text-primary {
    color: #ffd700;
}

#navbar ul {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 16px;
}

#navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
}

#navbar ul li a i {
    margin-right: 6px;
}

#navbar ul li a:hover {
    background: #93cb52;
    color: #222bfa;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 16px;
}

.centered {
    max-width: 800px;
    margin: 32px auto 0 auto;
    padding: 24px 18px;
    background: rgba(255,255,255,0.85);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border: none;
}

h1, h2 {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    color: #222bfa;
}

.lefted {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

p, a, li {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    font-size: 1.08em;
}

.contact-link {
    color: #ffd700;
    font-weight: bold;
    background: #a0021a;
    padding: 2px 8px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.contact-link:hover {
    background: #ffd700;
    color: #a0021a;
}

img {
    border-radius: 18px;
    margin: 16px 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    max-width: 220px;
    width: 100%;
    height: auto;
}

hr {
    border: none;
    border-top: 2px solid #222bfa;
    margin: 24px 0;
    width: 80%;
    opacity: 0.7;
}

footer {
    color: #fff;
}


@media (max-width: 700px) {
    #navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 8px;
        font-size: 1em;
    }
    #navbar ul {
        gap: 8px;
        margin-left: 0;
        flex-direction: column;
        width: 100%;
    }
    #navbar ul li {
        width: 100%;
    }
    #navbar ul li a {
        width: 100%;
        justify-content: flex-start;
    }
    .container {
        padding-top: 8px;
    }
    .centered {
        max-width: 98px;
        margin: 8px 1vw 0 1vw;
        padding: 8px 4px;
        border-radius: 10px;
    }
    h1, h2 {
        font-size: 1.1em;
    }
    img {
        max-width: 90px;
        margin: 8px 0;
    }
}
