/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Hero section */
.hero {
    background-color: #000000;
    text-align: center;
}

/* Form section */
.form-section {
    padding: 1rem 0 4rem 0;
    background-color: white;
}

.title {
    color: #54595F;
    font-weight: 600!important;
    line-height: 30px;
    letter-spacing: -1.5px;
    font-size: 2rem;
}

.subtitle {
    margin-bottom: 2rem;
    color: #54595F;
    font-weight: 400;
    line-height: 1px;
    letter-spacing: -1px;
}

.separator {
    margin-bottom: 1.5rem;
}


form {
    margin: 0 auto;
    position: relative;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

label span {
    color: #888;
    font-size: 0.8rem;
    font-weight: 300;
    margin-left: 0.5rem;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
}

textarea {
    resize: vertical;
}

.input-group {
    display: flex;
    gap: 20px;
}

.input-group input {
    flex: 1;
}

button {
    background-color: #000000;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    width: 100%;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #333333;
}

/* Phone validation field for anti-spam */
.phone-validation {
    display: none;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .input-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-section {
        padding: 2rem 0;
    }
}
