/* General Layout */
body {
    background-color: #F4EBD2; /* Warm Sand */
    color: #1A1A1B;           /* Midnight Slate */
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 20px 5%;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1A1A1B;
}

.arrow {
    color: #005F6B; /* Deep Teal */
    margin-left: 4px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #1A1A1B;
    font-weight: 500;
}

/* Sections */
section {
    padding: 60px 10%;
    text-align: center;
}

.hero {
    background-color: #ffffff; /* White background for hero to pop */
}

h1 {
    font-size: 2.5rem;
    color: #005F6B;
}

.cta-button {
    background-color: #005F6B;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
}

.value-prop {
    background-color: #F4EBD2;
}

/* About Page Specifics */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.mission-statement {
    margin-top: 40px;
    padding: 20px;
    border-left: 4px solid #005F6B;
    background-color: rgba(0, 95, 107, 0.05); /* Very light teal tint */
}

/* Contact Form Styling */
.contact-section {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    text-align: left;
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #005F6B;
    box-shadow: 0 0 5px rgba(0, 95, 107, 0.2);
}

/* Footer Styling */
footer {
    background-color: #1A1A1B; /* Midnight Slate */
    color: #F4EBD2;           /* Warm Sand Text */
    padding: 40px 10% 20px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    color: #005F6B; /* Deep Teal */
    margin-bottom: 15px;
}

.footer-section a {
    color: #F4EBD2;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #005F6B;
}

.footer-sub input {
    padding: 8px;
    border: none;
    border-radius: 4px 0 0 4px;
    width: 60%;
}

.footer-sub button {
    padding: 8px 12px;
    background-color: #005F6B;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(244, 235, 210, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
}

.abn {
    font-size: 0.8rem;
    margin-top: 10px;
}