* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: "Lovin' Sans", sans-serif;
}

body {
    background: #ffffff;
    font-family: "Lovin' Sans", sans-serif;

}

header {
    position: relative;
    width: 100%;
    height: 80px; 
    display: flex;
    align-items: center; 
    justify-content: center;
    background-color: #435067;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    padding: 0; 
}

.burger-icon {
    display: block;
    position: absolute;
    top: 50%; 
    transform: translateY(-50%); 
    right: 25px;
    font-size: 34px;
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
    transition: transform 0.2s ease;
}

.burger-icon:hover {
    transform: translateY(-50%) scale(1.08);
}

.menu {
    display: none;
    flex-direction: column;
    width: 100%;
    list-style: none;
    background-color: #435067;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 1000;
}

.menu.show {
    display: flex;
}

.menu li a {
    padding: 1.2rem 1.5rem; 
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
}

.menu li a:hover {
    opacity: 0.65;
}

@media screen and (min-width: 1200px) {
    .burger-icon {
        display: none;
    }

    .menu {
        display: flex !important;
        flex-direction: row;
        align-items: center; 
        justify-content: center;
        background: transparent;
        position: static;
        top: auto;
        left: auto;
        width: auto;
        margin: 0;
        height: 100%; 
    }

    .menu li a {
        padding: 0 2.8rem; 
        font-size: 22px;
        color: #ffffff;
        line-height: 80px; 
    }

    .menu li a:hover {
        opacity: 0.7;
    }

    .menu li.active a {
        border-bottom: 3px solid black;
        padding-bottom: 10px;
    }
}

.page-header {
    background: #435067;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.image-container {
    position: relative;
    width: 100%;
    height: auto;
}

.image-container img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: relative;
    width: 75%;
    max-width: 1200px;
    margin: 50px auto;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 30px;
    border-radius: 10px;
    box-sizing: border-box;
}

.overlay h1 {
    margin: 0 0 10px 0;
    font-size: 2rem;
}

.overlay p {
    margin: 0;
    font-size: 1.2rem;
}

.form-container textarea {
    width: 100%;
    height: 150px;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #435067;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    color: #000;
    background: #fff;
    resize: none;
    box-sizing: border-box;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-container textarea:focus {
    outline: none;
    border-color: #2c3e50;
    box-shadow: 0 0 10px rgba(67, 80, 103, 0.5);
}

.form-container button {
    display: block;
    margin: 20px auto;
    padding: 12px 30px;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: #435067;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.form-container button:hover {
    background-color: #2c3e50;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(67, 80, 103, 0.4);
}

.form-container button:active {
    transform: scale(0.98);
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    color: #fff;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #435067;
    border-radius: 4px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #435067;
    border-color: #435067;
}

.checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
