/* Base Styles */
body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #dff0e7; /* Soft mint background */
    color: #1c3b35; /* Deep forest green */
}

/* Header */
header {
    background-color: #dff0e7; /* Match body for seamless look */
    padding: 20px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Header Inner Layout */
.header-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1100px;
    width: 100%;
}

/* Logo */
.branding img {
    height: 60px;
    width: auto;
}

/* Navigation */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

nav ul li a {
    color: #1c3b35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #2a7566;
}

/* Hero Section */
#hero {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 50px 20px;
    text-align: center;
    margin: 30px auto;
    max-width: 800px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

#hero h2 {
    font-size: 2.5rem;
    color: #1c3b35;
    margin-bottom: 1rem;
}

.button {
    background: #1c3b35;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    display: inline-block;
    margin-top: 20px;
}

.button:hover {
    background: #2a7566;
}

/* Sections */
section {
    background: #ffffff;
    padding: 30px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

h2 {
    color: #1c3b35;
    font-weight: 700;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 8px;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
textarea {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
}

input:focus,
textarea:focus {
    border-color: #2a7566;
    outline: none;
}

/* Buttons */
button {
    background-color: #1c3b35;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2a7566;
}

/* Footer */
footer {
    background: transparent;
    color: #1c3b35;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
}

/* Social Icons */
.social-share a {
    background: #1c3b35;
    color: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    text-decoration: none;
}

.social-share a:hover {
    background: #2a7566;
}

/* Responsive */
@media (max-width: 768px) {
    .header-bar {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    #hero h2 {
        font-size: 2em;
    }

    .button {
        width: 100%;
    }

    section {
        padding: 20px;
        margin: 10px;
    }

    input,
    textarea {
        font-size: 14px;
    }

    .social-share a {
        width: 40px;
        height: 40px;
    }
}
