/* Basic Reset */
body {
    margin: 0;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; /* Professional, modern font */
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa; /* Lighter background for elegance */
}

/* Basic Header Styling */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-section {
    background-color: #0056b3; /* Deeper primary color */
    color: #fff;
    padding: 4rem 1rem; /* More padding for a substantial feel */
    text-align: center;
    background-image: url('path/to/subtle-background-image.jpg'); /* Optional: Add a subtle background */
    background-size: cover;
    background-position: center;
}

.hero-section h1 {
    margin-top: 0;
    font-size: 3em; /* Larger heading */
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.3em;
    margin-bottom: 2rem;
    opacity: 0.9; /* Slightly less prominent */
}

/* Remove old header h1 style */

/* Remove old header p style */

.cta-button {
    display: inline-block;
    background-color: #28a745; /* Keep success color for CTA */
    color: #fff;
    padding: 1rem 2.5rem; /* Larger padding */
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em; /* Slightly larger font */
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.cta-button:hover {
    background-color: #218838;
    transform: translateY(-2px); /* Slight lift effect */
}

/* Placeholder styles for sections */
section {
    padding: 3rem 1rem; /* More vertical padding */
    text-align: center;
}

#features {
    background-color: #fff;
}

#features .container {
    display: flex;
    justify-content: space-around;
    gap: 2rem; /* Space between feature items */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.feature-item {
    flex: 1; /* Distribute space */
    min-width: 250px; /* Minimum width before wrapping */
    padding: 1.5rem;
    border: 1px solid #dee2e6; /* Subtle border */
    border-radius: 8px;
    background-color: #fff;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Subtle shadow */
}

.feature-item h3 {
    margin-top: 0;
    color: #0056b3; /* Match header color */
}

#testimonials {
    background-color: #e9ecef; /* Light grey background */
}

#testimonials .container {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1;
    min-width: 300px;
    padding: 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background-color: #fff;
    text-align: left;
    font-style: italic;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.testimonial-item p:last-child {
    margin-top: 1rem;
    font-style: normal;
    font-weight: bold;
    color: #555;
}

footer {
    background-color: #343a40; /* Dark background */
    color: #fff;
    padding: 2rem 1rem; /* More padding */
    margin-top: 3rem; /* More space above footer */
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

footer p {
    margin: 0.5rem 0;
}

footer nav a {
    color: #adb5bd; /* Lighter link color */
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

footer nav a:hover {
    color: #fff;
}