/* --- About Us Section (solo desktop) --- */
.aboutus-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 60px auto 80px auto;
    padding: 40px 0;
    gap: 60px;
}

.aboutus-photo {
    flex: 0 0 350px;
    display: flex;
    justify-content: flex-end;
}

.aboutus-photo img {
    width: 320px;
    height: 420px;
    object-fit: cover;
    object-position: top;
}

.aboutus-bio {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 10px;
}

.aboutus-bio h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #b22235;
}

.aboutus-bio p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #444;
    line-height: 1.7;
    max-width: 600px;
}

@media (max-width: 1024px) {
    .aboutus-section {
        display: none;
    }
}
* {
    font-family: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
    color: #333;
    font-weight: 100;
}

/* HEADER */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.header__logo {
    height: 20px;
    width: auto;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.header__menu-item {
    margin: 0;
}

.header__link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.header__link:hover {
    color: #000;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.header__icon:hover {
    opacity: 0.7;
}

/* FOOTER */

.footer {
    background-color: #000;
    color: #e5e5e5;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 80px 100px;
}

.newsletter-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
}

.newsletter-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 420px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background-color: #2b2b2b;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px;
    color: #fff;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #aaa;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    padding: 0 20px;
    cursor: pointer;
}

.newsletter-legal {
    font-size: 11px;
    line-height: 1.5;
    color: #aaa;
    max-width: 420px;
    margin-bottom: 10px;
}

.newsletter-lang {
    font-size: 11px;
    text-decoration: underline;
    cursor: pointer;
}

.footer-info {
    font-size: 13px;
}

.footer-info p {
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li,
.footer-column p {
    font-size: 13px;
    margin-bottom: 12px;
    color: #ccc;
}

.footer-logo {
    border-top: 1px solid #222;
    padding: 40px 0;
}

.footer-logo img {
    width: 90%;
    display: block;
    margin: auto;
}