* {
    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%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 14px;
    transition: color 0.3s;
}

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

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
    padding: 3px 8px;
    border-radius: 4px;
}

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 85vh;
    overflow: hidden;
}

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

.hero-image-wrapper 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;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-title {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.intro-flow {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #34495e;
}

.visual-showcase {
    padding: 100px 20px;
}

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

.showcase-item {
    flex: 1 1 calc(50% - 20px);
    position: relative;
    overflow: hidden;
    background-color: #ecf0f1;
}

.showcase-item.large {
    flex: 1 1 100%;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcase-caption {
    padding: 30px;
    background-color: #ffffff;
}

.showcase-caption h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.showcase-caption p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #7f8c8d;
}

.price-tag {
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
    color: #3498db;
}

.story-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-visual {
    flex: 1;
    background-color: #bdc3c7;
}

.story-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #34495e;
}

.services-highlight {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 20px 15px;
    font-size: 15px;
    color: #7f8c8d;
}

.price-display {
    display: block;
    padding: 0 20px 25px;
    font-size: 20px;
    font-weight: 600;
    color: #3498db;
}

.booking-section {
    padding: 100px 20px;
    background-color: #2c3e50;
}

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

.booking-intro {
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.booking-intro h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.booking-intro p {
    font-size: 18px;
}

.booking-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.site-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 20px 30px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
}

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

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

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2980b9;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

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

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

.page-hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 10;
}

.page-hero-overlay h1 {
    font-size: 56px;
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.about-content {
    padding: 80px 20px;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.text-block {
    margin-bottom: 80px;
}

.text-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.image-text-split {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.split-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #34495e;
}

.values-section {
    margin-top: 60px;
}

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

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

.value-item {
    flex: 1;
    text-align: center;
}

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

.value-item p {
    font-size: 15px;
    color: #7f8c8d;
}

.page-header {
    margin-top: 120px;
    padding: 60px 20px;
    text-align: center;
    background-color: #f8f9fa;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-detailed {
    padding: 80px 20px;
}

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

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

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

.service-visual {
    flex: 1;
    background-color: #ecf0f1;
}

.service-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-description {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #34495e;
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    font-size: 15px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #34495e;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 25px;
}

.service-pricing .price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
}

.service-cta {
    padding: 12px 25px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #2980b9;
}

.contact-page {
    margin-top: 100px;
    padding: 80px 20px;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-header p {
    font-size: 18px;
    color: #7f8c8d;
}

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

.contact-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-card p {
    font-size: 15px;
    margin-bottom: 8px;
    color: #34495e;
}

.email-display {
    color: #7f8c8d;
}

.contact-note {
    text-align: center;
    padding: 30px;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.contact-note p {
    font-size: 15px;
    color: #34495e;
}

.thanks-page {
    margin-top: 100px;
    padding: 100px 20px;
    min-height: 60vh;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: #3498db;
}

.thanks-details {
    margin-bottom: 50px;
}

.thanks-details p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #34495e;
}

.service-selected {
    font-weight: 600;
    color: #2c3e50;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.legal-page {
    margin-top: 100px;
    padding: 80px 20px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 44px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-title {
        font-size: 40px;
    }

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

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

    .showcase-item {
        flex: 1 1 100%;
    }

    .story-container {
        flex-direction: column;
    }

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

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

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

    .image-text-split {
        flex-direction: column;
    }

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

    .contact-info-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}