/* style.css */

/* Color Palette */
:root {
    --deep-blue: #1E40AF;
    --vibrant-teal: #14B8A6;
    --soft-gray: #F3F4F6;
    --dark-charcoal: #111827;
    --white: #ffffff;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--soft-gray);
    color: var(--dark-charcoal);
    margin: 0;
    line-height: 1.6;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* Container for page content */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* Header & Navigation */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.logo-section {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-section .logo-img {
    height: 40px; /* Smaller logo for header */
    margin-right: 10px;
}

.logo-section .site-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    color: var(--deep-blue);
    margin: 0;
}

.logo-section .site-title span {
    color: var(--vibrant-teal);
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--dark-charcoal);
    font-weight: 500;
    font-size: 1.05em;
    padding: 5px 0;
    position: relative;
}

.main-nav ul li a:hover {
    color: var(--deep-blue);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--vibrant-teal);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease-in-out;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--white); /* White background for hero */
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-section .hero-branding-image {
    max-width: 300px; /* Larger logo for hero */
    height: auto;
    margin-bottom: 30px;
}

/* General Headings */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--deep-blue);
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.2;
}

h1 {
    font-size: 3em;
    font-weight: 700;
    color: var(--dark-charcoal); /* Default H1 to dark charcoal for contrast */
}
.hero-section h1 { /* Override H1 for hero to deep blue */
    color: var(--deep-blue);
}


h2 {
    font-size: 2.2em;
    font-weight: 600;
}

h3 {
    font-size: 1.6em;
    font-weight: 600;
    color: var(--vibrant-teal); /* Use teal for sub-section headings */
}

/* Paragraphs */
p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

.highlight {
    color: var(--vibrant-teal);
    font-weight: 500;
}

/* Sections */
.section {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

/* Call to Action Button */
.btn-primary {
    display: inline-block;
    background-color: var(--deep-blue);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
}

.btn-primary:hover {
    background-color: #1a3692; /* Slightly darker blue */
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--deep-blue);
    text-align: left;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: var(--vibrant-teal);
    outline: none;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2); /* Teal glow */
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Social Media Icons */
.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: var(--dark-charcoal);
    font-size: 2em;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: var(--deep-blue);
    transform: translateY(-2px);
}

/* Footer */
.main-footer {
    background-color: var(--dark-charcoal);
    color: var(--soft-gray);
    padding: 40px 0;
    text-align: center;
    margin-top: 50px;
}

.main-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-footer .footer-nav ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.main-footer .footer-nav ul li a {
    text-decoration: none;
    color: var(--soft-gray);
    font-weight: 400;
    transition: color 0.3s ease;
}

.main-footer .footer-nav ul li a:hover {
    color: var(--vibrant-teal);
}

.main-footer p {
    font-size: 0.9em;
    margin: 5px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        text-align: center;
    }
    .main-nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .main-nav ul li {
        margin: 0 15px 10px;
    }
    h1 {
        font-size: 2.2em;
    }
    h2 {
        font-size: 1.8em;
    }
    h3 {
        font-size: 1.4em;
    }
    .hero-section {
        padding: 60px 20px;
    }
    .hero-section .hero-branding-image {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.4em;
    }
    h3 {
        font-size: 1.2em;
    }
    p {
        font-size: 1em;
    }
    .section {
        padding: 25px;
    }
    .hero-section {
        padding: 40px 15px;
    }
    .hero-section .hero-branding-image {
        max-width: 200px;
    }
    .main-nav ul li