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

/* HTML and Body Defaults */
html, body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
    background-color: #f8f9fa;
    line-height: 1.6;
}

/* Anchor Tags Reset */
a {
    text-decoration: none;
    color: inherit;
}

/* List Reset */
ul, ol {
    list-style: none;
}

/* Image Reset */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

header {
    position: relative;
    height: 100vh;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('../images/stock/photo.jpg') no-repeat center center/cover;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust the opacity here */
    z-index: 1;
}

.logo {
    width: 50%;
    max-width: 600px;
    height: auto;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.banner h1, .banner p, .buttons {
    position: relative;
    z-index: 2;
}

.banner h1 {
    font-size: 3rem;
    margin: 0;
}

.banner p {
    font-size: 1.5rem;
}

.buttons {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    background-color: #0056b3;
}

.intro {
    background-color: white; /* Adjust background color as needed */
    padding: 60px 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact {
    padding: 60px 20px;
    text-align: center;
    background-color: #e9ecef; /* Adjust background color as needed */
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact label {
    margin-top: 10px;
    font-size: 1.2rem;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: 1px solid #ced4da; /* Adjust border color */
    border-radius: 5px;
}

.contact textarea {
    height: 150px; /* Adjust textarea height */
}

.contact .btn {
    width: 100%;
    max-width: 200px; /* Adjust button max-width */
}

footer {
    background-color: #343a40; /* Adjust background color as needed */
    color: white;
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 0;
}

@media (max-width: 768px) {
    .banner h1 {
        font-size: 2.5rem;
    }

    .banner p {
        font-size: 1.2rem;
    }

    .logo {
        width: 70%;
    }

    .buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .banner h1 {
        font-size: 2rem;
    }

    .banner p {
        font-size: 1rem;
    }

    .logo {
        width: 80%;
    }

    .btn {
        width: 100%;
        margin: 10px 0;
    }
}
