/* Reset some default styles */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header styles */
header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
}

header h1 {
    float: left;
}

nav ul {
    float: right;
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Hero section styles */
#hero {
    background: #f4f4f4;
    padding: 4rem 0;
    text-align: center;
}

#hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.btn-primary {
    background: #007BFF;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    background: #28a745;
}

.btn-secondary:hover {
    background: #218838;
}

/* Features section styles */
#features {
    padding: 4rem 0;
    text-align: center;
}

#features h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.features-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
}

.feature {
    flex: 1 1 calc(33.333% - 2rem); /* Adjusts the width of each feature box */
    box-sizing: border-box;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: background 0.3s;
}

.feature:hover {
    background: #e9ecef;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature p {
    font-size: 1rem;
}

/* CTA section styles */
#cta {
    background: #007BFF;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

#cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

#cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer styles */
footer {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}
