/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: #f7f7f7;
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: #007BFF;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #0056b3;
}

/* Content Section */
.content {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.content h2 {
    color: #007BFF;
    margin-top: 40px;
    margin-bottom: 15px;
}

.content h3 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content p, .content ul {
    margin-bottom: 15px;
}

ul {
    padding-left: 20px;
}

/* Contact Section */
#contact {
    background: #f1f1f1;
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
}

#contact p {
    margin: 8px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
}
