/* Google Font for a modern look */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Color Variables */
:root {
    --primary-green: #2C6038;
    --secondary-gold: #C99349;
    --light-gray: #f4f4f4;
    --dark-text: #333333;
    --border-color: #dddddd;
    --white: #ffffff;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-gray);
    color: var(--dark-text);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

/* --- Containers --- */
.container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.form-container {
    max-width: 550px;
}

.content-page-container {
    max-width: 800px;
    text-align: left;
}

/* --- Logo & Header --- */
.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

/* --- Typography & Links --- */
h1, h2, h3 {
    color: var(--secondary-gold);
    font-weight: 600;
}

h1 { font-size: 2em; margin-bottom: 10px; }
h2 { font-size: 1.5em; margin-top: 40px; margin-bottom: 15px; border-bottom: 2px solid var(--primary-green); padding-bottom: 5px;}
h3 { font-size: 1.2em; margin-top: 30px; margin-bottom: 10px; color: var(--primary-green); }

p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

a {
    color: var(--secondary-gold);
    text-decoration: none;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

strong {
    color: var(--primary-green);
    font-weight: 600;
}

ul {
    padding-left: 20px;
}
li {
    margin-bottom: 10px;
}


/* --- Form Specific --- */
form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9em;
    color: var(--primary-green);
}

form input, form select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1em;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
}

form input:focus, form select:focus {
    outline: none;
    border-color: var(--secondary-gold);
    box-shadow: 0 0 0 3px rgba(201, 147, 73, 0.2);
}

form .submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: var(--primary-green);
    color: white;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

form .submit-btn:hover {
    background-color: #1e4226;
    transform: translateY(-2px);
}

#form-message {
    margin-top: 20px;
    font-weight: 500;
}
.success { color: var(--primary-green); }
.error { color: #d9534f; }

/* --- Footer --- */
footer {
    text-align: center;
    font-size: 0.9em;
}

footer a {
    margin: 0 10px;
}


/* --- Cookie & POPI Act Banner --- */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-green);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s, transform 0.5s;
}

.cookie-consent-banner.active {
    opacity: 1;
    transform: translateY(0);
}

.cookie-consent-banner p {
    margin: 0;
    color: white;
    font-size: 0.9em;
}

.cookie-consent-banner a {
    color: var(--secondary-gold);
    text-decoration: underline;
    font-weight: 600;
}

.consent-btn {
    background-color: var(--secondary-gold);
    color: var(--primary-green);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    margin-left: 20px;
    white-space: nowrap;
}
