/* General Styles */
body {
    font-family: 'Roboto', sans-serif; /* or 'Open Sans', sans-serif; */
    margin: 0;
    padding: 0;
    color: #333;
}

/* Hero Section */
.hero-content h1,
.features-section h2,
.services-section h2 {
    font-family: 'Roboto', sans-serif; /* or 'Open Sans', sans-serif; */
}


/* Logo */
.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 150px;
}

/* Hero Section */
.hero-section {
    background-image: url('../images/geometric-7719159_1920.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}



.hero-content {
    max-width: 600px;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
}

.hero-content h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.lead-form input {
    width: calc(100% - 22px);
    padding: 15px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

.lead-form button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lead-form button:hover {
    background-color: #0056b3;
}

.captcha {
    margin-top: 20px;
    text-align: left;
}

.captcha label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.captcha span {
    display: inline-block;
    width: 50px;
    margin-right: 10px;
}

.captcha input {
    width: calc(100% - 70px);
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.success-message {
    margin-top: 20px;
    color: #00ff00;
    font-weight: bold;
}

/* Features Section */
.features-section {
    background-color: #f8f8f8;
    padding: 50px 20px;
    text-align: center;
}

.features-section .feature {
    margin: 20px 0;
}

.features-section h2 {
    font-size: 1.6em;
    margin-bottom: 10px;
    color: #007bff;
}

.features-section p {
    font-size: 1em;
    color: #555;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer p {
    margin: 0;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .features-section h2 {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6em;
    }

    .hero-content p {
        font-size: 0.9em;
    }

    .features-section h2 {
        font-size: 1.2em;
    }
}


/* Services Section */
.services-section {
    background-color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.services-section .service {
    margin: 20px 0;
}

.services-section h2 {
    font-family: 'Comforter Brush', cursive;
    font-size: 1.6em;
    margin-bottom: 10px;
    color: #007bff;
}

.services-section p {
    font-size: 1em;
    color: #555;
}
