/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #4a8a6f;
    --accent-color: #e8a537;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
}

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.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-content p {
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-accept:hover {
    background: #d69430;
}

.btn-reject {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

/* Hero Split Screen */
.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-left {
    background: var(--bg-light);
    padding: 60px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 800;
}

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

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

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.cta-primary,
.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover,
.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 79, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-service-select {
    width: 100%;
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
}

/* Features Alternating (Split Screen Pattern) */
.features-alternating {
    background: var(--bg-white);
}

.feature-row {
    display: flex;
    min-height: 600px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-image,
.feature-content {
    flex: 1;
}

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

.feature-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.feature-row:nth-child(even) .feature-content {
    background: var(--bg-white);
}

.feature-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}

.content-highlight {
    background: #fff3e0;
    padding: 15px 20px;
    border-left: 4px solid var(--accent-color);
    margin-top: 20px;
}

.link-inline {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    margin-top: 15px;
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

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

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-price {
    margin: 25px 0;
    padding: 20px 0;
    border-top: 2px solid var(--bg-light);
    border-bottom: 2px solid var(--bg-light);
}

.service-price .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

.service-price .period {
    font-size: 16px;
    color: var(--text-light);
}

.services-cta {
    text-align: center;
    margin-top: 50px;
    font-size: 18px;
}

.link-underline {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title-left {
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.testimonial-card {
    flex: 1;
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
    color: var(--accent-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 16px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* Why Choose Section (Split Layout) */
.why-choose-section {
    background: var(--bg-white);
}

.split-layout {
    display: flex;
}

.split-content,
.split-image {
    flex: 1;
}

.split-content {
    padding: 80px 60px;
    background: var(--bg-light);
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 700;
}

.reason-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.reason-item {
    display: flex;
    gap: 25px;
}

.reason-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    min-width: 50px;
}

.reason-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.reason-text p {
    color: var(--text-light);
    line-height: 1.6;
}

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

/* Form Section */
.cta-section-sticky {
    padding: 100px 0;
    background: var(--primary-color);
}

.form-wrapper {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-header p {
    color: var(--text-light);
    font-size: 16px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    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(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Info Section */
.info-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.info-card {
    flex: 1;
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-col p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 14px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cccccc;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-button {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Page Hero */
.page-hero {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 20px;
    opacity: 0.9;
}

/* Services Detailed */
.services-detailed {
    padding: 60px 0;
}

.service-detailed-item {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
}

.service-detailed-item.reverse {
    flex-direction: row-reverse;
}

.service-detailed-content,
.service-detailed-image {
    flex: 1;
}

.service-detailed-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-header-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.service-header-detail h2 {
    font-size: 32px;
}

.price-tag {
    background: var(--bg-light);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.featured-price {
    background: var(--accent-color);
    color: var(--text-dark);
}

.badge-popular {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-detailed-content h4 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

.specs-list,
.equipment-list {
    list-style: none;
    margin: 15px 0;
}

.specs-list li,
.equipment-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.specs-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.equipment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-cta-inline {
    margin-top: 30px;
}

/* Pricing Notes */
.pricing-notes {
    padding: 60px 0;
    background: var(--bg-light);
}

.pricing-notes h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.notes-grid {
    display: flex;
    gap: 25px;
}

.note-card {
    flex: 1;
    background: var(--bg-white);
    padding: 25px;
    border-radius: 10px;
}

.note-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.note-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background: var(--bg-light);
}

/* About Page */
.about-hero {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-intro-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-intro-text,
.about-intro-image {
    flex: 1;
}

.about-intro-text h1 {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
}

.about-intro-image img {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Story Section */
.story-section {
    padding: 80px 0;
}

.story-block {
    margin-bottom: 50px;
}

.story-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

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

.value-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

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

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-intro {
    max-width: 800px;
    margin-bottom: 50px;
}

.team-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.team-member {
    flex: 1;
    text-align: center;
}

.member-image {
    margin-bottom: 20px;
}

.member-image img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto;
}

.team-member h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
}

.member-bio {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Numbers Section */
.numbers-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--bg-white);
}

.numbers-section .section-title-center {
    color: var(--bg-white);
}

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

.number-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.big-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}

.number-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
}

.clients-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.clients-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

/* CTA About */
.cta-about {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-box {
    background: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Contact Page */
.contact-hero {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-content {
    padding: 80px 0;
}

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-info,
.contact-map {
    flex: 1;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.info-detail {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.useful-info {
    list-style: none;
}

.useful-info li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.useful-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--bg-white);
    padding: 20px;
    text-align: center;
}

.quick-contact {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.quick-contact h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.faq-quick details {
    margin-bottom: 15px;
}

.faq-quick summary {
    cursor: pointer;
    font-weight: 600;
    padding: 12px 0;
    color: var(--text-dark);
}

.faq-quick p {
    padding: 10px 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Alternatives */
.contact-alternatives {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-alternatives h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

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

.alternative-card {
    flex: 1;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
}

.alternative-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.alternative-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.alternative-card a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
}

/* Working Hours Detail */
.working-hours-detail {
    padding: 60px 0;
}

.working-hours-detail h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

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

.hours-card {
    flex: 1;
}

.hours-card h4 {
    font-size: 22px;
    margin-bottom: 20px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid var(--border-color);
}

.hours-table td {
    padding: 12px 0;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.hours-notes {
    list-style: none;
}

.hours-notes li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.hours-notes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.thanks-box {
    background: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-box h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.selected-service-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.selected-service-box h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.service-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.next-steps {
    text-align: left;
    margin: 40px 0;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
}

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

.step-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

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

.thanks-info-box {
    background: #e8f5e9;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
    margin: 30px 0;
}

.thanks-info-box h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.thanks-info-box ul {
    list-style: none;
}

.thanks-info-box li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.thanks-info-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.social-share {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.social-share p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-btn {
    padding: 10px 20px;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

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

/* Related Content */
.related-content {
    padding: 60px 0;
}

.related-content h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

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

.related-card {
    flex: 1;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.related-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.related-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
}

.legal-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 18px;
    margin: 20px 0 12px;
    color: var(--text-dark);
}

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

.legal-content ul,
.legal-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

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

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

.gdpr-table th,
.cookies-table th {
    background: var(--bg-light);
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.gdpr-table td,
.cookies-table td {
    padding: 12px;
    border: 1px solid var(--border-color);
}

.authority-box {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
}

.authority-box h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 40px 30px;
    }

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

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
    }

    .feature-content {
        padding: 40px 30px;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .testimonials-grid,
    .info-grid,
    .values-grid,
    .team-grid {
        flex-direction: column;
    }

    .split-layout {
        flex-direction: column;
    }

    .split-content {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .feature-content h2 {
        font-size: 28px;
    }

    .section-header-center h2,
    .section-title-left,
    .section-title-center {
        font-size: 32px;
    }

    .service-detailed-item,
    .service-detailed-item.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .about-intro-split {
        flex-direction: column;
    }

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

    .hours-grid,
    .notes-grid,
    .alternatives-grid,
    .related-grid {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .sticky-cta-button {
        padding: 14px 25px;
        font-size: 14px;
    }

    .thanks-box {
        padding: 40px 25px;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .page-hero h1,
    .contact-hero h1,
    .about-intro-text h1 {
        font-size: 32px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .form-header h2,
    .cta-box h2 {
        font-size: 28px;
    }
}