/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

a {
    color: #d32f2f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-color: #d32f2f;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero h1 a {
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #d32f2f;
    padding: 12px 30px;
    margin-top: 20px;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f5f5f5;
}

/* Main Content */
.content {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.content section {
    margin-bottom: 40px;
}

.content h2 {
    color: #d32f2f;
    margin-bottom: 15px;
}

.content h3 {
    color: #444;
    margin-bottom: 10px;
}

.content p {
    margin-bottom: 15px;
}

.content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.content ul li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 40px 15px;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
    }
}
