/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
}

header p {
    font-size: 1.2rem;
    margin: 10px 0 0;
}

/* Hero Section Styles */
.hero {
    background-color: #3498db;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.hero img {
    width: 100%;
    height: auto;
    max-width: 600px;
    border: 5px solid #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 2rem;
    margin: 0 0 20px;
}

.hero p {
    font-size: 1.1rem;
    margin: 0 0 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d35400;
}

/* Services Section Styles */
.services {
    background-color: #ecf0f1;
    padding: 40px 0;
    text-align: center;
}

.services h3 {
    font-size: 1.8rem;
    margin: 0 0 20px;
    color: #2c3e50;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services ul li {
    background-color: #fff;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
}

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .services h3 {
        font-size: 1.5rem;
    }

    .services ul li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1.3rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .services h3 {
        font-size: 1.3rem;
    }

    .services ul li {
        font-size: 0.9rem;
    }
}