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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #294151;
    padding-top: 140px;
    padding-bottom: 50px;
    background-color: #f5f7fa;
}

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(41, 65, 81, 0.15);
}

html {
    scroll-behavior: smooth;
}

header {
    background: #294151;
    color: white;
    padding: 30px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 1px;
    color: #e65844;
}

header h1:hover {
    color: #ffffff;
    transform: translateY(-2px);
}


nav {
    background-color: #754a4c;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 8px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    background-color: transparent;
    transition: all 0.3s ease;
    display: block;
    border: 2px solid transparent;
    font-weight: 500;
    font-size: 15px;
}

nav ul li a:hover {
    background-color: #e65844;
    border-color: #e65844;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230, 88, 68, 0.3);
}

nav ul li a.active {
    background-color: #e65844;
    border-color: #e65844;
    box-shadow: 0 4px 8px rgba(230, 88, 68, 0.3);
}

section {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
    scroll-margin-top: 160px;
}

.hero {
    background: #294151;
    text-align: center;
    padding: 150px 20px;
    border-radius: 15px;
    margin: 20px;
    max-width: none;
    width: calc(100% - 40px);
    min-height: 450px;
    box-shadow: 0 10px 30px rgba(41, 65, 81, 0.2);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(230, 88, 68, 0.1), transparent 60%);
    pointer-events: none;
}

.hero h1 {
    color: #e65844;
    font-size: 2.8em;
    margin-bottom: 20px;
    width: 100%;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.3em;
    color: #f0f4f8;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.content-box {
    background-color: white;
    margin: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(41, 65, 81, 0.08);
    padding: 40px;
    max-width: none;
    width: calc(100% - 40px);
    min-height: 360px;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}

.content-box:hover {
    box-shadow: 0 4px 15px rgba(41, 65, 81, 0.12);
    transform: translateY(-3px);
}

.content-box h2 {
    color: #294151;
    margin-bottom: 25px;
    padding-bottom: 15px;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: 2em;
    font-weight: 600;
    position: relative;
}

.content-box h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 5px;
    border-radius: 3px;
    background-color: #754a4c;
}

.content-box p {
    text-align: center;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #294151;
    font-size: 1.05em;
    line-height: 1.8;
}

.underline-orange {
    text-decoration: underline;
    text-decoration-color: #e65844;
    text-decoration-thickness: 2px;
}

.flag-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 25px auto;
    flex-wrap: wrap;
}

.flag-container img {
    display: block;
}

.contact-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px auto;
    width: 100%;
}

.contact-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #754a4c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #754a4c;
    text-align: center;
}

.contact-button:hover {
    background-color: #e65844;
    border-color: #e65844;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 88, 68, 0.3);
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #294151;
    color: #754a4c;
    padding: 10px 15px;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(41, 65, 81, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
}

.footer-text {
    text-align: center;
    flex: 1;
    min-width: 250px;
    width: 100%;
}

.footer-text h3 {
    font-size: 1em;
    margin-bottom: 4px;
    color: #754a4c;
    font-weight: 600;
}

.footer-text p {
    font-size: 0.85em;
    margin: 0;
    color: #754a4c;
}

.email-form {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 6px;
    overflow: hidden;
}

.email-form input {
    padding: 8px 12px;
    width: 220px;
    border: 2px solid #754a4c;
    border-radius: 6px 0 0 6px;
    font-size: 13px;
    border-right: none;
    background-color: white;
    transition: all 0.3s ease;
}

.email-form input:focus {
    outline: none;
    border-color: #754a4c;
    background-color: #fff;
}

.email-form button {
    padding: 8px 18px;
    background-color: #754a4c;
    color: white;
    border: 2px solid #754a4c;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.email-form button:hover {
    background-color: #e65844;
    border-color: #e65844;
    transform: translateX(2px);
}

.footer-copyright {
    width: 100%;
    text-align: center;
    font-size: 0.75em;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(117, 74, 76, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #754a4c;
}

@media (max-width: 768px) {
    body {
        padding-top: 200px;
        padding-bottom: 140px;
    }

    header h1 {
        font-size: 1.8em;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 5px 0;
        width: 90%;
        max-width: 300px;
    }

    nav ul li a {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 80px 20px;
        min-height: 300px;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .hero p {
        font-size: 1.1em;
    }

    .content-box {
        padding: 25px;
        min-height: 240px;
    }

    .content-box h2 {
        max-width: 100%;
        font-size: 1.6em;
        border-radius: 3px;
    }

    .content-box h2::after {
        left: 10px;
        right: 10px;
    }

    .content-box p {
        margin-top: 15px;
        font-size: 1em;
    }

    .flag-container {
        gap: 20px;
    }

    .contact-button {
        padding: 12px 24px;
        font-size: 15px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-text {
        text-align: center;
        width: 100%;
    }

    .email-form {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        box-shadow: none;
        justify-content: center;
    }

    .email-form input,
    .email-form button {
        width: 100%;
        max-width: 300px;
        border-radius: 6px;
        border: 2px solid #754a4c;
    }

    section {
        scroll-margin-top: 220px;
    }

    footer {
        padding: 10px 10px;
    }

    .footer-copyright {
        flex-direction: row;
        gap: 10px;
    }
}
