/* Basic Reset and Font Setup */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333; /* Dark gray for text */
    background-color: #f4f4f9; /* Light, subtle background */
}

/* Header/Hero Section Styling */
.hero-section {
    background-color: #007bff; /* A prominent blue background */
    color: white;
    padding: 100px 20px;
    text-align: center;
    /* Optional: Add a subtle linear gradient for depth */
    background-image: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-content .tagline {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    background-color: #28a745; /* A contrasting green for the CTA */
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #218838;
}

/* General Section Styling */
section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-section {
    background-color: white;
    border-bottom: 1px solid #ddd;
}

.contact-section {
    background-color: #e9ecef;
}

section h2 {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 20px;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 5px;
}

.email-link a {
    color: #007bff;
    text-decoration: none;
    font-weight: 700;
}

.email-link a:hover {
    text-decoration: underline;
}

/* Footer Styling */
footer {
    background-color: #343a40; /* Dark footer */
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}
