* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

header {
    width: 100%;
}

nav {
    padding: 20px 40px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    border-radius: 0px 0px 15px 15px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo a{
    text-decoration: none;
    color: black;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.auth-buttons {
    display: flex;
}

.auth-buttons .login,
.auth-buttons .signup {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.auth-buttons .login {
    background-color: #007BFF;
}

.auth-buttons .signup {
    background-color: #007BFF;
}

/* Get In Touch Box CSS */

.get-in-touch-box {
    width: 100%;
    display: flex;
    padding: 20px;
    border-radius: 12px;
    align-items: center;
}

.text-section {
    flex: 1;
    padding-right: 20px;
}

.text-section h2 {
    font-size: 4.5em;
    margin-bottom: 15px;
    color: #000;
}

.text-section p {
    font-size: 1.6em;
    color: #333;
    margin: 0;
}

.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-section img {
    max-width: 100%;
    border-radius: 12px;
}

/* Contact Form Box */

.contact-form-box {
    width: 100%;
    background-color: #f6f6f6;
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    text-align: center;
}

.contact-form-box h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #000;
}

.contact-form-box p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

.contact-form-box form{
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.contact-form-box .form-group {
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.contact-form-box .form-group-2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact-form-box .form-field {
    width: 49%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact-form-box label {
    width: 100%;
    margin-bottom: 5px;
    font-size: 1em;
    color: #333;
    text-align: left;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
    color: #bbb;
}

.contact-form-box textarea {
    height: 120px;
    resize: none;
}

.contact-form-box button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: #ffffff;
    font-size: 1.2em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

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

/* Footer Section */

.footer-box {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.footer-box-section {
    max-width: 200px;
}

.footer-box-section h2 {
    margin-bottom: 15px;
}

.footer-box-section h3 {
    margin-bottom: 15px;
    color: #000;
}

.footer-box-section p,
.footer-box-section ul,
.footer-box-section a {
    margin: 0;
    color: #333;
    text-decoration: none;
    line-height: 1.5em;
}

.footer-box-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-box-section ul li {
    margin-bottom: 10px;
}

.footer-box-social {
    display: flex;
    gap: 15px;
}

.footer-box-social a i {
    font-size: 35px;
}

/* Responsive Code */

@media (max-width: 1045px) {
    /* Navbar */
    .logo {
        font-size: 18px;
    }
    nav{
        width: 100%;
    }
    /* Get In Touch Box CSS */
    .text-section h2{
        font-size: 3.5em;
    }
    .text-section p {
        font-size: 1.1em;
    }
}

@media (max-width: 890px) {
    /* Navbar */
    .logo {
        font-size: 18px;
    }
    nav{
        width: 100%;
    }
    .nav-links {
        display: none;
    }
}

@media (max-width: 769px) {

    /* Navbar */
    .logo {
        font-size: 18px;
    }

    .nav-links {
        display: none;
    }

    nav {
        width: 100%;
        padding: 15px 10px;
    }

    .auth-buttons .login,
    .auth-buttons .signup {
        padding: 5px 10px;
        font-size: 12px;
    }

    /* Get In Touch Box Section */

    .get-in-touch-box{
        flex-direction: column;
    }

    .text-section h2{
        font-size: 35px;
        margin-bottom: 5px;
        text-align: center;
    }
    .text-section p{
        font-size: 16px;
        margin-bottom: 5px;
        text-align: center;
    }

    /* Contact Form */

    .contact-form-box{
        padding: 20px;
    }

    .contact-form-box h2{
        font-size: 25px;
    }
    .contact-form-box p{
        font-size: 14px;
        margin-bottom: 15px;
    }
    .contact-form-box label{
        font-size: 14px;
    }
    .contact-form-box input, .contact-form-box textarea{
        font-size: 14px;
        padding: 5px 10px;
    }
    .contact-form-box .form-group{
        flex-direction: column;
        margin-bottom: 10px;
    }
    .contact-form-box .form-field{
        width: 100%;
        margin-bottom: 0px;
    }

    /* Footer Section */
    .footer-box {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        padding: 25px 10px;
    }

    .footer-box-section {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .footer-box-section p,
    .footer-box-section ul,
    .footer-box-section a {
        text-align: center;
        font-size: 14px;
    }

    .footer-box-social a i {
        font-size: 30px;
    }

    .footer-box-section h2 {
        margin-bottom: 0px;
    }
}