body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background-color: #2c1a4a; /* Dark Purple */
    padding: 20px 0;
    color: #fff;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background-color: #2c1a4a; /* Dark Purple */
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.cta-button {
    background-color: #ff6f00; /* Bright Orange */
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.features {
    background-color: #ffffff;
    padding: 60px 0;
    display: flex;
    justify-content: space-between; /* Ensures equal space between columns */
    flex-wrap: wrap; /* Wraps items if the screen is too small */
}

.features .feature {
    text-align: center;
    flex: 1; /* Distributes space evenly */
    margin: 0 20px; /* Adds space between columns */
    max-width: 300px; /* Ensures columns don’t get too wide */
    box-sizing: border-box;
}

.features .feature img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

footer {
    background-color: #2c1a4a; /* Dark Purple */
    padding: 20px 0;
    color: #fff;
    text-align: center;
}
