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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #f5f7f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #333;
}

.top-bar {
    background-color: #2a4c29;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container a {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.main-nav a:hover {
    opacity: 0.8;
}

.container {
    margin-top: 130px;
    min-height: calc(100vh - 130px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.main-title {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.5s ease-in;
}

.subtitle {
    color: #666;
    font-size: 1.25rem;
    animation: slideUp 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 0.9;
    }
}

.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #333;
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.cookie-notice.fade-out {
    opacity: 0;
}

.cookie-notice input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

/* Contact form styles */
.contact-container {
    max-width: 600px;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    color: #333;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a4c29;
    box-shadow: 0 0 0 2px rgba(42, 76, 41, 0.1);
}

.submit-button {
    background: #2a4c29;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-button:hover {
    background: #355934;
}

/* Active nav link */
.main-nav a.active {
    border-bottom: 2px solid white;
    padding-bottom: 3px;
}

.cookie-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.cookie-consent input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.cookie-consent label {
    margin: 0;
    font-weight: normal;
    line-height: 1.4;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s linear;
}

@media only screen and (max-width: 600px) {
    body {
        font-size: 16px;
        padding: 10px;
    }
    header, footer {
        text-align: center;
        padding: 10px 0;
    }
    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .content {
        width: 100%;
        padding: 10px;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    nav ul {
        flex-direction: column;
        padding: 0;
    }
    nav ul li {
        margin: 5px 0;
    }
    .hamburger-menu {
        display: flex;
    }
    .main-nav {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: #2a4c29;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    .main-nav.active {
        display: flex;
    }
}

/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #2b4c2b;
    min-width: 200px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.3);
    z-index: 100;
    border-radius: 4px;
    top: 100%;
    left: 0;
    margin-top: 2rem;
    padding: 5px;
}

.dropdown-content a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-content.show {
    display: block;
}

.dropdown.active > a::after {
    transform: rotate(180deg);
}

.dropdown > a::after {
    content: '▼';
    font-size: 0.7em;
    margin-left: 0.5em;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

/* Main nav dropdown adjustments */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.main-nav ul li a:hover {
    opacity: 0.8;
} 