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

:root {
    --primary-color: #1a472a;
    --secondary-color: #2d7a4d;
    --accent-color: #4caf50;
    --text-dark: #1f1f1f;
    --text-light: #666;
    --text-white: #fff;
    --bg-light: #f8f9fa;
    --bg-dark: #e9ecef;
    --border-color: #ddd;
    --success-color: #28a745;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 30, 30, 0.96);
    color: var(--text-white);
    padding: 20px;
    z-index: 10000;
    box-shadow: var(--shadow-lg);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
    margin: 0;
}

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

.btn-primary,
.btn-secondary {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background-color: var(--text-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--accent-color);
}

.ad-disclosure {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 3px;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-color: #2d3e3f;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 32px;
    line-height: 1.5;
}

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--text-white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.content-wrapper-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.intro-block {
    background-color: var(--bg-light);
}

.intro-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 28px;
    line-height: 1.3;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.services-preview {
    background-color: var(--text-white);
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.section-header-centered p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    background-color: var(--text-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-dark);
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-link-center {
    text-align: center;
    margin-top: 32px;
}

.cta-link-center a {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--secondary-color);
    transition: color 0.3s ease;
}

.cta-link-center a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.visual-break {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.break-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-color: #3a3a3a;
}

.break-overlay {
    position: relative;
    z-index: 2;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

blockquote {
    max-width: 800px;
    text-align: center;
}

blockquote p {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-white);
    font-style: italic;
    line-height: 1.5;
}

.why-us-section {
    background-color: var(--text-white);
}

.why-us-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 48px;
}

.features-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.feature-large {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.feature-large h3,
.feature-large p {
    color: var(--text-white);
}

.feature-icon {
    margin-bottom: 16px;
    color: var(--accent-color);
}

.feature-large .feature-icon {
    color: var(--text-white);
}

.feature-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-form-section {
    background-color: var(--bg-light);
}

.form-container h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: var(--text-white);
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.disclaimer-section {
    background-color: #fff8e1;
    border-top: 3px solid #ffc107;
}

.disclaimer-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

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

.footer-column ul li a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.page-header {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 60px 40px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.services-detail-section {
    background-color: var(--bg-light);
}

.service-detail-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    background-color: var(--text-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 350px;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-dark);
}

.service-detail-content {
    flex: 1;
    min-width: 350px;
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.price-highlight {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.cta-bottom-section {
    background-color: var(--secondary-color);
    color: var(--text-white);
    text-align: center;
    padding: 80px 40px;
}

.cta-bottom-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-white);
}

.cta-bottom-section p {
    font-size: 20px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
}

.about-story {
    background-color: var(--text-white);
}

.story-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 28px;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-image-section {
    height: 500px;
}

.about-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-dark);
}

.team-section {
    background-color: var(--bg-light);
}

.team-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    background-color: var(--text-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.member-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-dark);
}

.team-member h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    padding: 20px 20px 8px;
}

.member-role {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
    padding: 0 20px 12px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    padding: 0 20px 24px;
}

.values-section {
    background-color: var(--text-white);
}

.values-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 48px;
    text-align: center;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value-item {
    padding: 32px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.facility-section {
    background-color: var(--bg-light);
}

.facility-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.facility-section > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.facility-features {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.facility-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 28px;
    background-color: var(--text-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.facility-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.facility-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-page-section {
    background-color: var(--bg-light);
}

.contact-info-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 320px;
}

.contact-details h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-item .note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 320px;
}

.map-box {
    width: 100%;
    height: 400px;
    background-color: var(--bg-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.map-box p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: center;
}

.contact-faq-section {
    background-color: var(--text-white);
}

.contact-faq-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.faq-item {
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.thanks-section {
    background-color: var(--bg-light);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-icon svg {
    stroke: var(--success-color);
}

.thanks-content h1 {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.service-confirmation {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 32px;
    padding: 16px;
    background-color: var(--text-white);
    border-radius: 8px;
    display: inline-block;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.next-steps {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background-color: var(--text-white);
    padding: 32px;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.next-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.legal-page {
    background-color: var(--text-white);
}

.legal-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    margin-top: 24px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--secondary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--secondary-color);
}

.legal-section a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.gdpr-table thead {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.gdpr-table th,
.gdpr-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.gdpr-table th {
    font-weight: 700;
    font-size: 16px;
}

.gdpr-table td {
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .content-wrapper,
    .content-wrapper-wide {
        padding: 60px 20px;
    }

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

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

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

    .service-detail-image {
        min-height: 300px;
    }

    .thanks-actions {
        flex-direction: column;
    }

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