/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #007bff;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1rem;
}

/* Hero Section */
.hero {
   /* background: url('hero-background.jpg') center/cover no-repeat; */
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    color: #00f;
}

.content {
    text-align: center;
    color: #333;
}

/* CTA Button */
.cta-btn {
    background-color: #007bff;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.cta-btn:hover {
    background-color: #0056b3;
}

/* Other Sections (Features, Pricing, About Us, Contact) */
/* Add your custom styles here */

/* Footer Section */
footer {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

