* {
    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: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: #1a5490;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

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

.hero-image-container {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background-color: #1a5490;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    color: white;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    max-width: 900px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: white;
    color: #1a5490;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #1a5490;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.intro-narrative {
    max-width: 800px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.narrative-wrap p {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: #34495e;
}

.opening-line {
    font-weight: 500;
    font-size: 1.5rem;
    color: #1a5490;
}

.visual-story {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.story-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.story-card {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.story-card.reverse {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
    background-color: #1a5490;
}

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

.story-text {
    flex: 1;
    padding: 2rem;
}

.story-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
    font-weight: 400;
}

.story-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #34495e;
}

.story-link {
    display: inline-block;
    color: #1a5490;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #1a5490;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.story-link:hover {
    color: #27ae60;
    border-bottom-color: #27ae60;
}

.values-minimal {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.values-content h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    font-weight: 300;
    color: #1a5490;
}

.values-list {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.value-item {
    flex: 1;
    max-width: 300px;
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.services-preview {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    color: #1a5490;
}

.services-header p {
    font-size: 1.3rem;
    color: #7f8c8d;
}

.services-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.service-minimal {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 400px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-visual {
    height: 300px;
    overflow: hidden;
    background-color: #1a5490;
}

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

.service-details {
    padding: 2rem;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-details p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #7f8c8d;
}

.price {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background: #1a5490;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.booking-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a5490 0%, #27ae60 100%);
}

.booking-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.booking-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a5490;
}

.selected-display {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    text-align: center;
}

.selected-display strong {
    color: #1a5490;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #dfe6e9;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: white;
}

.footer-column p {
    margin-bottom: 0.75rem;
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

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

.footer-column ul li a:hover {
    color: #27ae60;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .story-card,
    .story-card.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .values-list {
        flex-direction: column;
        gap: 2rem;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }
}

.services-page-header {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #1a5490 0%, #27ae60 100%);
    color: white;
    text-align: center;
}

.services-page-header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.services-page-header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-full {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.about-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #34495e 0%, #1a5490 100%);
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.about-story {
    max-width: 900px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.about-story p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: #34495e;
}

.team-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-header h2 {
    font-size: 3rem;
    color: #1a5490;
    margin-bottom: 1rem;
    font-weight: 300;
}

.contact-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #27ae60 0%, #1a5490 100%);
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.contact-content {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a5490;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.info-item p {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.legal-page {
    padding: 8rem 2rem 4rem;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a5490;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin: 3rem 0 1rem;
    color: #2c3e50;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.legal-container ul {
    margin: 1rem 0 2rem 2rem;
    line-height: 1.8;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #27ae60 0%, #1a5490 100%);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 4rem 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
}

.thanks-content h1 {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1rem;
}

.thanks-content .cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #1a5490;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-content .cta-button:hover {
    background: #27ae60;
    transform: translateY(-2px);
}