/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

/* Hero Section */
#hero {
    background: #4CAF50;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #ff6600;
    padding: 12px 30px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e65c00;
}

/* Content Section */
#content {
    padding: 40px 20px;
    background-color: white;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2d2d2d;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d2d2d;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

a.cta-button {
    margin-top: 20px;
    display: inline-block;
}

/* Footer Section */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

footer a {
    color: #ff6600;
    text-decoration: none;
}

footer a:hover {
    color: #e65c00;
}

ul {
    list-style-type: none;
}

ul li {
    display: inline;
    margin: 0 10px;
}