body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

header {
    background: white;
    border-bottom: 1px solid #eee;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

header h1 {
    font-size: 20px;
    margin: 0;
    color: #b11226;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav a:hover {
    color: #b11226;
}

.hero {
    background: #f7f7f7;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    color: #555;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #b11226;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.button:hover {
    background: #8f0e1f;
}

section {
    padding: 60px 0;
}

h2 {
    margin-bottom: 20px;
}

.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 6px;
}

.card h3 {
    margin-top: 0;
    color: #b11226;
}

#about p {
    max-width: 700px;
}

#contact {
    background: #f7f7f7;
    text-align: center;
}

.email {
    font-size: 20px;
    font-weight: bold;
    color: #b11226;
}

footer {
    border-top: 1px solid #eee;
    padding: 20px 0;
    text-align: center;
    color: #777;
}