/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #0072ff, #00c6ff);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff9900;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s ease;
}

.cta-button:hover {
    background-color: #e68a00;
}

/* Main Content */
.content {
    padding: 50px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.content h2 {
    color: #0072ff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content h3 {
    color: #00c6ff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

.contact h2 {
    color: #0072ff;
    margin-bottom: 20px;
}

.contact p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact .cta-button {
    margin-top: 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 25px;
    }
}
