* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: url('../images/background2.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #2e2e2e;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 30px 20px;
}

header {
    background-color: #bc6659;
    width: 100%;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

nav {
    display: flex;
    justify-content: center;
    gap: 26px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 14px;
    transition: background 0.25s ease;
    border-radius: 4px;
}

nav a:hover {
    background: rgba(255,255,255,0.25);
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin: 40px 0 20px;
    color: #2e2e2e;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2e2e2e;
}

.card {
    background-color: #f3d5a0;
    border-radius: 6px;
    padding: 25px 30px;
    margin: 25px 0;
    box-shadow: 0px 3px 7px rgba(0,0,0,0.12);
}

.card-light {
    background-color: #f9e8c8;
}

p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 14px;
}

ul, ol {
    padding-left: 25px;
    margin-bottom: 14px;
}

li {
    font-size: 18px;
    margin-bottom: 8px;
}

.flex {
    display: flex;
    gap: 20px;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

img.responsive {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.team-photo {
    width: 100%;
    max-width: 240px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

.logo-large {
    width: 80%;
    max-width: 450px;
    display: block;
    margin: 0 auto 30px;
}

.avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.avatar-large {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.25);
    margin-bottom: 10px;
}

footer {
    margin-top: 50px;
    background: #bc6659;
    color: #fff;
    padding: 35px 25px;
}

footer h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

footer a {
    color: #fff;
    text-decoration: underline;
    font-size: 17px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}


.center {
    text-align: center;
}

@media (max-width: 900px) {
    nav {
        flex-wrap: wrap;
        gap: 14px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .logo-large {
        width: 90%;
    }
}

@media (max-width: 600px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 34px;
    }

    p, li {
        font-size: 17px;
    }
}
