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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 5px 12px;
    background: #ecf0f1;
    border-radius: 20px;
}

.hero-visual {
    margin-top: 100px;
    position: relative;
    height: 85vh;
    min-height: 600px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: inline-block;
    padding: 15px 40px;
    background: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.image-story-block {
    display: flex;
    align-items: center;
    padding: 100px 5%;
    gap: 60px;
    flex-wrap: wrap;
}

.story-content {
    flex: 1;
    min-width: 300px;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #34495e;
}

.story-image {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
}

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

.services-preview {
    padding: 100px 5%;
    background: #f8f9fa;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.service-cards-visual {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image-top {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-content p {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3498db;
}

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

.services-cta a {
    display: inline-block;
    padding: 15px 45px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.services-cta a:hover {
    background: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.visual-break {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: #34495e;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.break-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.break-text h2 {
    font-size: 3rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.approach-section {
    padding: 100px 5%;
    background: #ffffff;
}

.approach-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
}

.approach-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-item p {
    font-size: 1.05rem;
    color: #7f8c8d;
}

.booking-visual {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap;
}

.booking-content {
    flex: 1;
    min-width: 350px;
    padding: 80px 5%;
    background: #ecf0f1;
}

.booking-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.booking-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #34495e;
}

.booking-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #bdc3c7;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.booking-image {
    flex: 1;
    min-width: 350px;
    background-color: #95a5a6;
}

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

.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 5% 20px;
}

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

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

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #bdc3c7;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.email-display {
    color: #bdc3c7;
    font-style: normal;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(52, 73, 94, 0.5);
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #27ae60;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #2ecc71;
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background: #95a5a6;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

.cookie-link {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-link:hover {
    text-decoration: underline;
}

.page-hero {
    position: relative;
    height: 400px;
    margin-top: 100px;
    overflow: hidden;
    background-color: #34495e;
}

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

.page-hero-text {
    position: absolute;
    bottom: 50px;
    left: 5%;
    color: #ffffff;
}

.page-hero-text h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.about-content {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 60px;
}

.content-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.content-block p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.8;
}

.mission-visual {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.mission-image {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
}

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

.mission-text {
    flex: 1;
    min-width: 300px;
}

.mission-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.mission-text p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: #34495e;
}

.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.value-item h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-item p {
    font-size: 1rem;
    color: #7f8c8d;
}

.expertise-block {
    margin-bottom: 60px;
}

.expertise-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.expertise-block p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.8;
}

.team-visual {
    padding: 80px 5%;
    background: #ecf0f1;
}

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

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.team-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.8;
}

.services-intro-section {
    padding: 80px 5%;
    text-align: center;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 1.15rem;
    color: #7f8c8d;
    line-height: 1.8;
}

.services-detailed {
    padding: 0 5% 80px;
}

.service-full {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.service-full.reverse {
    flex-direction: row-reverse;
}

.service-full-image {
    flex: 1;
    min-width: 350px;
    background-color: #ecf0f1;
}

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

.service-full-content {
    flex: 1;
    min-width: 350px;
}

.service-full-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-full-content p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: #34495e;
    line-height: 1.8;
}

.service-details {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.detail-item {
    font-size: 1rem;
    color: #7f8c8d;
}

.detail-item strong {
    color: #2c3e50;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
}

.booking-prompt {
    padding: 80px 5%;
    background: #2c3e50;
    color: #ffffff;
}

.prompt-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.prompt-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.prompt-content p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: #ecf0f1;
}

.inline-booking-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-row input,
.form-row select {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: 2px solid #bdc3c7;
    border-radius: 8px;
    font-size: 1rem;
}

.submit-inline {
    padding: 12px 35px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-inline:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.contact-main {
    padding: 80px 5%;
}

.contact-layout {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1.5;
    min-width: 350px;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info-block p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #34495e;
    line-height: 1.8;
}

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

.info-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.hours-note {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
    background-color: #ecf0f1;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.location-context {
    padding: 60px 5%;
    background: #f8f9fa;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
}

.location-context h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.location-context p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: #34495e;
    line-height: 1.8;
}

.thanks-hero {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 100px;
    min-height: calc(100vh - 100px);
    flex-wrap: wrap;
}

.thanks-content {
    flex: 1.5;
    min-width: 400px;
    padding: 80px 5%;
    background: #f8f9fa;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #34495e;
}

.thanks-details {
    margin: 30px 0;
    padding: 20px;
    background: #ffffff;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.service-reference {
    font-size: 1.1rem;
    color: #2c3e50;
}

.next-steps {
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.step-item {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background: #ffffff;
    border-radius: 8px;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-item p {
    font-size: 1rem;
    color: #7f8c8d;
}

.thanks-explore {
    margin-top: 50px;
}

.thanks-explore h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.thanks-link {
    padding: 12px 30px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-link:hover {
    background: #3498db;
    transform: translateY(-2px);
}

.thanks-image {
    flex: 1;
    min-width: 350px;
    background-color: #95a5a6;
}

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

.legal-page {
    padding: 120px 5% 80px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.updated {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: #34495e;
    line-height: 1.8;
}

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

.legal-content ul li {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #34495e;
    line-height: 1.7;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #34495e;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }

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

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

    .nav-container {
        justify-content: center;
    }

    .image-story-block,
    .mission-visual,
    .service-full,
    .booking-visual,
    .contact-layout,
    .thanks-hero {
        flex-direction: column;
    }

    .service-full.reverse {
        flex-direction: column;
    }

    .thanks-content h1 {
        font-size: 2.2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        flex-direction: column;
    }

    .submit-inline {
        width: 100%;
    }
}