/* Base styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #3b3b3b;
    margin: 0;
    padding: 0;
}

/* Headings */
h1, h2, h3 {
    font-weight: bold;
    color: #3b3b3b;
}

/* Header (cta-box) refinement */
.cta-box {
    background-color: #b89b73;
    color: white;
    padding: 20px 30px;
    border-radius: 0; /* Removed the rounding */
    box-shadow: none; /* Optional: remove drop shadow if unneeded */
    margin: 0; /* Prevent any spacing at top */
    border-bottom: 2px solid #a48660; /* Optional: subtle divider */
}


/* Form container */
.form-section {
    background-color: #333333;
    color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    max-width: 900px;
    margin: 40px auto;
}

    .form-section h2 {
        color: #b89b73;
        margin-bottom: 10px;
    }

input[type="text"], input[type="email"] {
    padding: 10px;
    margin: 8px 0;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Button */
button {
    background-color: #b89b73;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
}

    button:hover {
        background-color: #a48660;
    }

.customer-logo {
    height: 100px; /* Half the original 40px */
    vertical-align: middle;
}
a.button {
    display: inline-block;
    background-color: #b89b73;
    color: white !important;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
}

    a.button:hover {
        background-color: #a48660;
        color: white !important;
    }



main {
    padding-bottom: 80px; 
}
.site-footer {
    position: static;
    background-color: #f9f9f9;
    border-top: 1px solid #ccc;
    padding: 1rem;
    text-align: center;
}
