.hero-section {
    position: relative;
    height: 500px; /* Adjust height as needed */
    background-image: url('../images/hero-bg.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    padding: 12px 30px;
    font-size: 1rem;
    background-color: #26355D;
    border: none;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1A2541;
}

.features-section {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    color: #26355D;
    margin-bottom: 40px;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.feature-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: left;
}

.feature-item img {
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #26355D;
    margin-top: 15px;
}

.feature-item p {
    font-size: 1rem;
    color: #555;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
    
}