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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.8rem;
    color: #b71c1c;
}

h3 {
    font-size: 1.4rem;
    color: #b71c1c;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

header {
    background-color: #b71c1c;
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 500;
    max-width: 900px;
}

main {
    padding-bottom: 3rem;
}

.card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.intro {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-left: 5px solid #b71c1c;
    padding-left: 1.5rem;
}

.list-container {
    background-color: #f9f9f9;
    border-left: 4px solid #b71c1c;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.list-footer {
    font-style: italic;
    margin-top: -0.5rem;
    font-weight: 500;
}

.people-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.person {
    background-color: #f9f9f9;
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 3px solid #b71c1c;
}

.person h3 {
    margin-bottom: 0.5rem;
}

.quote {
    font-size: 1.4rem;
    font-style: italic;
    padding: 1rem 0;
    border-left: 3px solid #b71c1c;
    padding-left: 1rem;
    margin-bottom: 1rem;
    color: #b71c1c;
    font-weight: 500;
}

.conclusion {
    background-color: #283239;
    color: white;
}

.conclusion h2 {
    color: white;
}

.conclusion h3 {
    color: #ff9e80;
}

.conclusion .list-container {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ff9e80;
}

.highlight {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.8;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin: 1.5rem 0;
}

.highlight ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.highlight li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

footer {
    background-color: #b71c1c;
    color: white;
    padding: 2rem 0;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .people-list {
        grid-template-columns: 1fr;
    }
    
    .highlight {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    .card {
        padding: 1.5rem;
    }
}