:root {
    --primary-color: #2E7D32;
    /* Forest Green */
    --secondary-color: #81C784;
    /* Light Green */
    --accent-color: #FF7043;
    /* Campfire Orange */
    --light-bg: #F1F8E9;
    --text-dark: #263238;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    /* Subtle pattern */
}

.main-container {
    max-width: 1100px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 0;
    /* Removed padding to allow full-width banner */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* border-top: 5px solid var(--primary-color); Removed top border, banner covers it */
    overflow: hidden;
    /* Ensures banner respects border radius */
}

/* Inner wrapper for content padding */
.content-wrapper {
    padding: 40px;
}

h1,
h2,
h3 {
    color: var(--primary-color);
    font-weight: 700;
}

.section-title {
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 10px;
    color: var(--accent-color);
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 12px;
    background-color: #fcfcfc;
    transition: all 0.3s;
    height: auto;
    /* Fixes text clipping in select elements with large padding */
}

.form-control::placeholder {
    color: #bdc3c7;
    /* Lighter gray */
    font-style: italic;
    font-weight: 300;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.25);
    background-color: #fff;
}

.btn-submit {
    background-color: var(--primary-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.btn-submit:hover {
    background-color: #1B5E20;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}

.custom-control-input:checked~.custom-control-label::before {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.contact-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    margin-top: 20px;
}

/* Note toggle styling */
.note-field {
    display: none;
    /* Hidden by default, toggled by JS */
    margin-top: 10px;
}

.storno-box {
    background-color: #fff3e0;
    border: 1px solid #ffe0b2;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #e65100;
}

.consent-box {
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #2e7d32;
}

/* Header Banner Styling */
.header-banner {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    border-bottom: 5px solid var(--primary-color);
}

.header-banner img {
    width: 100%;
    display: block;
    height: auto;
    transition: transform 0.5s ease;
}

.header-banner:hover img {
    opacity: 0.95;
}

/* Add search-plus icon on hover */
.header-banner::after {
    content: '\f00e';
    /* FontAwesome search-plus */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s;
    pointer-events: none;
}

.header-banner:hover::after {
    opacity: 0.9;
}