:root {
    --primary-color: #efba48;
    --secondary-color: #000000;
    --background-color: #FFFFFF;
    --text-color: #333333;
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
}

.main-header {
    background-color: var(--secondary-color);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.hero-section {
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.lead-form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.features-section {
    padding: 4rem 2rem;
    background-color: var(--background-color);
}

.features-section h2 {
    text-align: center;
    /* padding: 3rem 2rem; */
    margin-top: -3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.main-footer {
    background-color: var(--secondary-color);
    padding: 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* thanks page */
.thankyou-section {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
}

.thankyou-card {
    max-width: 750px;
    background-color: #ffffff;
    padding: 3rem 2rem;
    box-shadow: 0 0 25px rgba(0,0,0,0.08);
    border-radius: 12px;
    text-align: center;
    animation: fadeIn 0.6s ease;
}

.thankyou-title {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.thankyou-text {
    margin-top: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.thankyou-highlight {
    margin-top: 2rem;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-color);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

