body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

header {
    background: #d35400;
    color: white;
    padding: 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

a {
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    margin-right: 20px;
}


li {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
}

.navbar {
    display: flex;
}

.span {
    font-style: italic;
    color: #000;
}

h1 {
    color: red;
}

h3{
    text-align: center;
}



/* Reset some styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ff4d4d;
    padding: 1rem 2rem;
    color: white;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: white;
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #34495e;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 1rem;
        border-radius: 8px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .form-wrapper {
        flex-direction: column;
    }

    input{
        width: 100%;
        height: 100%;
    }

    
}

.contact-section {
    padding: 60px 20px;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
}

.contact-container {
    max-width: 100%;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.contact-container h1 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5rem;
    color: #2c3e50;
}

.contact-container p {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.form-wrapper {
    display: block;
    /* flex-wrap: wrap; */
    gap: 40px;
    justify-content: space-between;
}

form {
    flex: 1 1 60%;
}

.contact-info {
    flex: 1 1 35%;
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 10px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
}

button {
    background-color: #2980b9;
    color: white;
    padding: 20px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    /* bottom: auto; */
    display: block;
    margin: 20px auto;
}

button:hover {
    background-color: #3498db;
}





