* {
    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;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

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

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

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

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

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

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

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

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

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

.nav-floating {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1100px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 12px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

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

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

.hero-visual {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.6), rgba(142, 68, 173, 0.4));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: 72px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 24px;
    color: #fff;
    margin-bottom: 40px;
    max-width: 600px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-hero {
    padding: 18px 48px;
    background: #fff;
    color: #2c3e50;
    border: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.visual-story {
    padding: 80px 0;
}

.story-image-block {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.story-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.95), transparent);
    padding: 80px 60px 60px;
    color: #fff;
}

.story-text-overlay h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 300;
}

.story-text-overlay p {
    font-size: 20px;
    line-height: 1.8;
    max-width: 800px;
}

.immersive-gallery {
    padding: 100px 40px;
    background: #f8f9fa;
}

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

.gallery-item {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #34495e;
}

.gallery-item.large {
    flex: 2;
    min-width: 600px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.gallery-caption h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.gallery-caption p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.link-cta {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    transition: color 0.3s ease;
}

.link-cta:hover {
    color: #5dade2;
}

.philosophy-visual {
    padding: 120px 60px;
    background: #fff;
}

.philosophy-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.3;
}

.philosophy-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.philosophy-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #ecf0f1;
}

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

.experiences-showcase {
    padding: 100px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.section-title-centered {
    text-align: center;
    font-size: 56px;
    color: #fff;
    margin-bottom: 80px;
    font-weight: 300;
}

.experiences-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.experience-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-4px);
}

.exp-visual {
    flex: 0 0 40%;
    background: #bdc3c7;
}

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

.exp-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.exp-details h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.exp-details p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.price-tag {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 15px 30px;
    background: #3498db;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: translateX(4px);
}

.testimonial-visual {
    padding: 100px 60px;
    background: #2c3e50;
    color: #fff;
}

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

.testimonial-content blockquote {
    border: none;
}

.testimonial-content p {
    font-size: 28px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-content cite {
    font-size: 18px;
    font-style: normal;
    opacity: 0.8;
}

.form-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.form-visual-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-container {
    background: rgba(255, 255, 255, 0.98);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.form-container h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-intro {
    margin-bottom: 40px;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.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: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #27ae60;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px;
    background: #ecf0f1;
}

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

.disclaimer-text {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.8;
    text-align: center;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

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

.footer-block h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-block p {
    color: #bdc3c7;
    line-height: 1.8;
}

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

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

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

.footer-block a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #95a5a6;
}

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

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

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

    .philosophy-content {
        flex-direction: column;
        gap: 40px;
    }

    .experience-card {
        flex-direction: column;
    }

    .exp-visual {
        flex: 0 0 300px;
    }

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

    .gallery-item.large {
        min-width: 300px;
    }
}