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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #ff6b35;
    --dark-text: #1a1a1a;
    --light-text: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 240px;
    height: 100vh;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    z-index: 100;
}

.nav-brand a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 40px;
    display: block;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-links a {
    color: var(--bg-white);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

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

.ad-notice {
    margin-top: auto;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    color: var(--bg-white);
    font-size: 0.75rem;
    line-height: 1.4;
}

.main-content {
    margin-left: 240px;
}

.hero-visual {
    position: relative;
    width: 100%;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background-color: #2c3e50;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-white);
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-overlay p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.intro-asymmetric {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.intro-block {
    flex: 1;
}

.intro-block h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.intro-block p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
}

.intro-card {
    flex: 1;
    background-color: var(--bg-white);
}

.intro-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.services-cards {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.section-header-offset {
    margin-bottom: 50px;
    padding-left: 20px;
}

.section-header-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-header-offset p {
    font-size: 1.1rem;
    color: var(--light-text);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #ecf0f1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.btn-select {
    width: 100%;
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #1e4620;
}

.booking-form-section {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-intro {
    color: var(--light-text);
    margin-bottom: 30px;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    padding: 15px 30px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #e85a26;
}

.trust-section {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.trust-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 250px;
}

.trust-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.trust-item p {
    color: var(--light-text);
    line-height: 1.7;
}

.cta-final {
    padding: 80px 60px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #e85a26;
}

.footer {
    background-color: #1a1a1a;
    color: var(--bg-white);
    padding: 50px 60px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-col p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

.disclaimer {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #aaa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--bg-white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background-color: #1e4620;
}

.btn-reject {
    background-color: #666;
    color: var(--bg-white);
}

.btn-reject:hover {
    background-color: #555;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.thanks-container {
    max-width: 700px;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-container h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 30px;
}

.thanks-info {
    margin-bottom: 40px;
    line-height: 1.8;
    color: var(--light-text);
}

.service-confirm {
    font-weight: 600;
    color: var(--primary-color);
    margin: 15px 0;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e4620;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.about-hero {
    padding: 80px 60px 40px;
    text-align: center;
    background-color: var(--bg-light);
}

.about-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-intro {
    font-size: 1.3rem;
    color: var(--light-text);
}

.about-story {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.story-image {
    flex: 1;
    background-color: #ecf0f1;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.story-text p {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.values-section {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.value-card p {
    color: var(--light-text);
    line-height: 1.7;
}

.process-section {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.process-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.process-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    min-width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.process-step p {
    color: var(--light-text);
    line-height: 1.7;
}

.team-section {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.team-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-image {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ecf0f1;
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.services-header {
    padding: 80px 60px 40px;
    text-align: center;
    background-color: var(--bg-light);
}

.services-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.services-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 60px 60px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    background-color: var(--bg-white);
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.detail-image {
    flex: 1;
    background-color: #ecf0f1;
}

.detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.detail-content {
    flex: 1;
}

.detail-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-description {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: var(--light-text);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.price-note {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 20px;
}

.pricing-info {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.pricing-info h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.info-blocks {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.info-block {
    flex: 1;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.info-block h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.info-block p {
    color: var(--light-text);
    line-height: 1.7;
}

.cta-services {
    padding: 80px 60px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cta-services h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-services p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-header {
    padding: 80px 60px 40px;
    text-align: center;
    background-color: var(--bg-light);
}

.contact-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-intro {
    font-size: 1.2rem;
    color: var(--light-text);
}

.contact-content {
    padding: 60px 60px;
    display: flex;
    gap: 60px;
    background-color: var(--bg-white);
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-detail p {
    color: var(--light-text);
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: var(--dark-text);
}

.hours-table {
    width: 100%;
    margin-bottom: 15px;
}

.hours-table tr {
    line-height: 2;
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--dark-text);
    width: 50%;
}

.hours-table td:last-child {
    color: var(--light-text);
}

.hours-note {
    font-size: 0.95rem;
    color: var(--light-text);
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
}

.contact-map-placeholder {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.map-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-info p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.directions-list {
    list-style: none;
}

.directions-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
    color: var(--light-text);
    line-height: 1.6;
}

.directions-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.faq-section {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--light-text);
    line-height: 1.7;
}

.cta-contact {
    padding: 80px 60px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cta-contact h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-contact p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.legal-page {
    padding-top: 60px;
}

.legal-header {
    padding: 60px 60px 30px;
    background-color: var(--bg-light);
}

.legal-header h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.legal-date {
    font-size: 1rem;
    color: var(--light-text);
}

.legal-content {
    padding: 60px 60px;
    max-width: 900px;
    background-color: var(--bg-white);
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-content p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-bottom: 15px;
    padding-left: 30px;
}

.legal-content li {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

@media (max-width: 1024px) {
    .nav-sidebar {
        width: 200px;
    }

    .main-content {
        margin-left: 200px;
    }

    .intro-asymmetric,
    .about-story,
    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

    .cards-grid {
        gap: 20px;
    }

    .service-card {
        flex: 1 1 calc(50% - 10px);
    }

    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 20px;
    }

    .main-content {
        margin-left: 0;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .intro-asymmetric,
    .services-cards,
    .booking-form-section,
    .trust-section,
    .about-story,
    .values-section,
    .process-section,
    .team-section,
    .services-detailed,
    .pricing-info,
    .contact-content,
    .faq-section {
        padding: 40px 30px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .trust-grid,
    .values-grid {
        gap: 20px;
    }

    .trust-item,
    .value-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

    .info-blocks {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }
}