:root {
    --primary-color: #1a5f7a;
    --secondary-color: #137592;
    --accent-color: #f38a12;
    --light-color: #f4f4f4de;
    --dark-color: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #000000;
    line-height: 1.6;
    background-color: white;
    font-family: 'Roboto', sans-serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

header {
    background-color: var(--primary-color);
    padding: 30px 0;
    text-align: center;
}

header .container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.hero {
    padding: 80px 0;
    background-image: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 50%), url('../images/factory.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--primary-color);
    text-align: left;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero p {
    font-size: 1.1rem;
    margin: 0;
}

.hero .container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

section {
    padding: 50px 0;
    background-color: white;
    border-bottom: 5px solid var(--light-color);
    color: #000000;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.mission-text {
    flex: 1;
}

.mission-image {
    flex: 1;
    height: 300px;
    background-color: var(--light-color);
    border-radius: 8px;
    background-image: url('/api/placeholder/600/400');
    background-size: cover;
    background-position: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 10px;
}

.expertise-grid, .criteria-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.expertise-item, .card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #000000;
}

.expertise-item:hover, .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact {
    text-align: center;
    background-color: var(--light-color);
    color: #000000;
}

.contact .container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

footer {
    background-color: var(--primary-color);
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin: 0;
    color: white;
}

.navbar {
    display: flex;
    background-color: white;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 10px;
}

.logo {
    flex-shrink: 0;
}

.nav-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.nav-menu.active {
    display: block;
    opacity: 1;
}

.nav-menu li {
    padding: 10px 20px;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    display: block;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.nav-menu a {
    color: black;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.team-members {
    display: flex;
    flex-direction: column;
    padding: 0px 20px;
    gap: 20px;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 20px;
}

.team-photo {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.team-member h3 {
    margin: 0 0 10px;
}

.team-member p {
    margin: 0;
}

@media (max-width: 768px) {
    .mission-content {
        flex-direction: column;
    }

    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

.approach {
    padding: 60px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.approach h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.approach p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

.approach-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.approach-list li {
    position: relative;
    padding: 10px 0 10px 30px;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.approach-list li:last-child {
    border-bottom: none;
}

.approach-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}