/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Sour Gummy", sans-serif;
    box-sizing: border-box;
    text-decoration: none;
}

body,
html {
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

.navbar {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    display: flex;
    justify-content: flex-start;
    padding: 10px 20px;
    background-color: transparent;
    z-index: 100;
}

.navbar a {
    font-size: 30px;
    color: wheat;
    text-decoration: none;
    font-weight: 500;
    margin-left: 30px;
}

.navbar a:hover,
.navbar a.active {
    transition: 0.5s;
    color: rgb(255, 187, 0);
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background-color: #0066cc;
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header h1 {
    margin: 0;
    font-size: 2.5em;
}

.header p {
    margin: 10px 0 0;
    font-size: 1.2em;
}

section {
    margin: 40px 0;
}

h2 {
    font-size: 2em;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.value {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.value h3 {
    font-size: 1.5em;
    color: #0066cc;
    margin-bottom: 10px;
}

.value ul {
    list-style: none;
    padding: 0;
}

.value ul li {
    background: #f9f9f9;
    border-left: 4px solid #0066cc;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.team-member h3 {
    margin-top: 0;
    color: #0066cc;
}

.team-member p {
    margin: 5px 0;
}

.footer {
    background-color: #0066cc;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer a {
    color: #ffd700;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .header h1 {
        font-size: 2em;
    }

    .header p {
        font-size: 1em;
    }

    .value h3 {
        font-size: 1.2em;
    }

    h2 {
        font-size: 1.5em;
    }
}