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

body {
    font-family: 'Times New Roman', Times, serif;
    color: #333;
    line-height: 1.8;
    background-color: #fafafa;
}

header {
    background-color: #fff;
    border-bottom: 2px solid #556B2F;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #556B2F;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #556B2F;
}

nav {
    font-family: Helvetica, Arial, sans-serif;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
}

nav a:hover {
    color: #556B2F;
}

main {
    margin-top: 80px;
    padding-bottom: 40px;
}

.hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: normal;
}

.hero p {
    font-size: 18px;
    margin-bottom: 15px;
}

.disclaimer-text {
    font-size: 14px;
    font-style: italic;
    margin-top: 15px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section {
    margin-bottom: 60px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
}

.section:last-child {
    border-bottom: none;
}

h1, h2, h3 {
    font-family: Helvetica, Arial, sans-serif;
    color: #556B2F;
    margin-bottom: 20px;
}

h2 {
    font-size: 32px;
    font-weight: normal;
}

h3 {
    font-size: 24px;
    font-weight: normal;
    margin-top: 30px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

.content-with-image {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 25px;
}

.content-with-image.reverse {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
}

.content-image {
    width: 300px;
    height: auto;
    border: 1px solid #ddd;
}

.info-box {
    background-color: #f5f5f0;
    border-left: 4px solid #556B2F;
    padding: 20px;
    margin: 30px 0;
}

.info-box h3 {
    margin-top: 0;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #556B2F;
    color: #fff;
    text-decoration: none;
    border: 2px solid #556B2F;
    font-family: Helvetica, Arial, sans-serif;
    transition: all 0.3s;
    margin-top: 10px;
}

.cta-button:hover {
    background-color: #fff;
    color: #556B2F;
}

.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-question {
    font-weight: bold;
    color: #556B2F;
    margin-bottom: 10px;
    font-size: 18px;
}

footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 40px 20px 20px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #556B2F;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 12px;
}

.contact-form {
    max-width: 600px;
    margin: 30px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #556B2F;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    font-family: 'Times New Roman', Times, serif;
}

.form-group textarea {
    min-height: 150px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
    font-family: Helvetica, Arial, sans-serif;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-text {
    flex: 1;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-family: Helvetica, Arial, sans-serif;
    transition: all 0.3s;
}

.accept-btn {
    background-color: #556B2F;
    color: #fff;
}

.accept-btn:hover {
    background-color: #6a8538;
}

.policy-link {
    color: #556B2F;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .content-with-image {
        flex-direction: column;
    }
    
    .content-with-image.reverse {
        flex-direction: column;
    }
    
    .content-image {
        width: 100%;
        max-width: 400px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 300px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 26px;
    }
    
    h3 {
        font-size: 20px;
    }
}
