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

body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #333;
    background: linear-gradient(180deg, #fdfbf7 0%, #fff 100%);
}

header {
    background: linear-gradient(90deg, #00b894 0%, #55efc4 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 184, 148, 0.3);
}

nav {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

nav ul li a:hover {
    background: rgba(255,255,255,0.2);
}

.timeline-header {
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.9), rgba(85, 239, 196, 0.9)), url('img5_healthy_cooking.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 2rem;
    text-align: center;
    color: white;
}

.timeline-header h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.timeline-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #00b894, #55efc4);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: #00b894;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0, 184, 148, 0.3);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.timeline-content h2 {
    color: #00b894;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.timeline-content img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 1rem;
}

.team-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.team-section h2 {
    text-align: center;
    color: #00b894;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid #55efc4;
}

.team-card h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.team-card .role {
    color: #00b894;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.values-section {
    background: white;
    padding: 4rem 2rem;
}

.values-section h2 {
    text-align: center;
    color: #00b894;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    background: linear-gradient(135deg, #f0fff4 0%, #fff 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #00b894;
}

.value-card h3 {
    color: #00b894;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

footer {
    background: #2d3436;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #55efc4;
    margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
    color: #b2bec3;
    font-size: 0.9rem;
    line-height: 1.8;
    text-decoration: none;
    display: block;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #636e72;
    color: #95a5a6;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .timeline-header h1 {
        font-size: 2rem;
    }
}
