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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #b91c1c, #ef4444);
    color: #1f2937;
    line-height: 1.7;
    padding: 50px 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

h1 {
    font-size: 3rem;
    margin-bottom: 24px;
    color: #111827;
    text-align: center;
    letter-spacing: -1px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #111827;
    text-align: center;
}

p {
    font-size: 1.08rem;
    margin-bottom: 20px;
    color: #374151;
}

.team {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #f9fafb;
    padding: 24px;
    border-radius: 18px;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-member:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.team-member img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    background: #e5e7eb;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.team-member-info h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
    color: #111827;
}

.team-member-info p {
    margin-bottom: 6px;
    font-size: 1rem;
}

@media (max-width: 700px) {
    .container {
        padding: 30px 22px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .team-member {
        flex-direction: column;
        text-align: center;
    }

    .team-member img {
        width: 110px;
        height: 110px;
    }
}

.email a {
    color: #ea580c;
    text-decoration: none;
    font-weight: bold;
}

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