/* Basic Reset & Typography */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

p {
    text-align: center;
    margin-bottom: 25px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 10px; /* Space between buttons */
}

.btn-primary {
    background-color: #3498db; /* Blue */
    color: white;
    border: 2px solid #3498db;
}

.btn-primary:hover {
    background-color: #2980b9; /* Darker Blue */
    border-color: #2980b9;
}

.btn-secondary {
    background-color: white;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    color: #2980b9;
    border-color: #2980b9;
}

/* Hero Section */
.hero-section {
    background: #5a307c url('https://via.placeholder.com/1500x500/5a307c/FFFFFF?text=Hero+Background') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh; /* Minimum height for hero section */
}

.hero-section h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: white; /* Ensure heading is white on dark background */
}

.hero-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: white;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background-color: #fff;
}

.feature-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
    gap: 30px; /* Space between grid items */
    margin-top: 30px;
}

.feature-item {
    flex: 1; /* Allows items to grow/shrink */
    min-width: 280px; /* Minimum width before wrapping */
    max-width: 350px;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-item .icon {
    font-size: 3em;
    color: #3498db;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background-color: #e0f2f7; /* Light blue background */
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #2c3e50; /* Dark background */
    color: white;
    text-align: center;
}

.cta-section h2, .cta-section p {
    color: white;
}

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

.footer-section .footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-section .footer-links a:hover {
    color: #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5em;
    }

    .hero-section p {
        font-size: 1em;
    }

    .feature-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        max-width: 90%; /* Allow wider items on smaller screens */
    }
}