/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero {
    background-color: #f7f7f7;
    padding: 60px 20px;
    text-align: center;
}

.hero h1 a {
    text-decoration: none;
    color: #222;
}

.hero p {
    margin: 20px 0;
    font-size: 1.2rem;
}

.cta-btn {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #0056b3;
}

/* Content */
.content {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
}

.content h2 {
    margin-bottom: 15px;
    color: #222;
}

.content h3 {
    margin-top: 20px;
    color: #555;
}

.content p, .content ul {
    margin-bottom: 15px;
}

.content ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* Contact Section */
.contact {
    background-color: #f1f1f1;
    padding: 40px 20px;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
}

.contact a.cta-btn {
    display: inline-block;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 40px 15px;
    }

    .content {
        padding: 20px 15px;
    }
}
