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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    padding: 0.5rem 1rem;
    display: inline-block;
}

nav ul li a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Main Content */
main {
    flex: 1;
    padding: 2rem 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Sections */
section {
    margin-bottom: 3rem;
}

section h2 {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about {
    background: white;
    padding: 3rem 0;
}

.about p {
    font-size: 1.1rem;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Menu Highlight */
.menu-highlight {
    background: white;
    padding: 3rem 0;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.menu-item h3 {
    color: #8B4513;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.menu-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Info */
.contact-info {
    background: white;
    padding: 3rem 0;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 10px;
}

.contact-item strong {
    display: block;
    color: #8B4513;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    font-size: 1rem;
}

.contact-item a {
    color: #8B4513;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #A0522D;
    text-decoration: underline;
}

/* Cooperation Section */
.cooperation-section {
    background: white;
    padding: 3rem 0;
}

.intro-text {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cooperation-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.btn-submit {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(139, 69, 19, 0.3);
}

.contact-alternative {
    max-width: 600px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
}

.contact-alternative h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.contact-alternative ul {
    list-style: none;
    padding-left: 0;
}

.contact-alternative ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.contact-alternative ul li:before {
    content: "•";
    color: #8B4513;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-alternative a {
    color: #8B4513;
    text-decoration: none;
}

.contact-alternative a:hover {
    text-decoration: underline;
}

/* Privacy Section */
.privacy-section {
    background: white;
    padding: 3rem 0;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content h3 {
    color: #8B4513;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    text-align: justify;
}

.privacy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.contact-list {
    list-style: none;
    margin-left: 0;
}

.contact-list li {
    margin-bottom: 0.75rem;
}

.contact-list a {
    color: #8B4513;
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

footer p {
    margin: 0;
}

/* Privacy Modal */
.privacy-modal {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    padding: 1.5rem;
    animation: slideUp 0.3s ease-out;
}

.privacy-modal.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.privacy-modal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.3);
}

.privacy-modal-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

.privacy-modal-content a {
    color: #8B4513;
    text-decoration: none;
    font-weight: 500;
}

.privacy-modal-content a:hover {
    text-decoration: underline;
}

.privacy-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-accept {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(139, 69, 19, 0.3);
}

.btn-details {
    background: #f5f5f5;
    color: #8B4513;
    padding: 0.75rem 2rem;
    border: 2px solid #8B4513;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s, color 0.3s;
}

.btn-details:hover {
    background: #8B4513;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }

    nav ul {
        gap: 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 1.75rem;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .privacy-modal-content {
        padding: 1.5rem;
    }

    .privacy-modal-buttons {
        flex-direction: column;
    }

    .btn-accept,
    .btn-details {
        width: 100%;
    }
}


