/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-green: #5E9431;
    --color-pink: #D78A9F;
    --color-white: #FFFFFF;
    --color-black: #302D2D;
    --color-bg-dark: #11100E;
    --color-text-light: #FFFFFF;
    --font-main: 'Nunito', 'Arial', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 60px 0;
}

/* Main Form Section */
.hero-section {
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 75px;
}

.form-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.logo-container {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

.logo-img {
    width: 40%;
    max-width: 300px;
}

.form-header {
    margin-bottom: 25px;
    margin-top: 20px;
}

.form-header p {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-black);
}

/* Form Elements */
.form-group {
    margin-bottom: 25px;
}

.f-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #653732;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.f-input:focus {
    border: 2px solid #653732;
}

/* Checkbox Styles */
.checkbox-group {
    text-align: left;
    margin-bottom: 25px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--color-pink);
    transform: scale(1.2);
}

.checkbox-group a {
    color: var(--color-pink);
    text-decoration: underline;
}

/* Button */
.submit-btn {
    background-color: var(--color-green);
    color: var(--color-white);
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.submit-btn:hover {
    background-color: #4a7526; /* Darker green */
}

/* Offer Text */
.offer-text {
    font-size: 14px;
    color: var(--color-black);
    margin-top: 25px;
}

.offer-text a {
    color: var(--color-pink);
    text-decoration: underline;
}

/* Footer Section */
.footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding-top: 45px;
    padding-bottom: 15px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3, .footer-col strong {
    color: var(--color-white);
    margin-bottom: 15px;
    display: block;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.social-icons img {
    width: 32px;
    height: 32px;
}

.footer a {
    color: var(--color-pink);
}

.footer-legal-text {
    font-size: 14px;
    margin-top: 15px;
    color: #cccccc;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    padding-top: 15px;
    font-size: 14px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .logo-img {
        width: 60%;
    }
}
