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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    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;
    margin: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #74c0fc;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    position: relative;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #5a7a9a;
}

.ad-label {
    position: absolute;
    top: 0.5rem;
    right: 3rem;
    font-size: 0.75rem;
    color: #7f8c8d;
    font-weight: 500;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 0 0 45%;
    padding: 6rem 3rem 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.hero-image-container {
    flex: 1;
    position: relative;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

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

.intro-overlap {
    display: flex;
    margin: -5rem 3rem 5rem 3rem;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

.intro-text-block {
    flex: 0 0 55%;
    background: white;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.intro-text-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #2c3e50;
}

.intro-text-block p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.intro-visual-accent {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.services-grid-asymmetric {
    padding: 5rem 3rem;
    background: #fafbfc;
}

.section-header-offset {
    margin-bottom: 3rem;
    margin-left: 15%;
}

.section-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-offset p {
    font-size: 1.2rem;
    color: #6c757d;
}

.service-card {
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

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

.card-large {
    width: 70%;
    margin-left: 5%;
    display: flex;
}

.card-medium {
    width: 55%;
    margin-left: 35%;
    display: flex;
}

.card-small {
    width: 65%;
    margin-left: 10%;
    display: flex;
}

.card-offset {
    width: 60%;
    margin-left: 25%;
    display: flex;
}

.card-featured {
    width: 75%;
    margin-left: 15%;
    display: flex;
}

.service-image {
    flex: 0 0 45%;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

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

.service-info p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background: #5a7a9a;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.form-section-asymmetric {
    padding: 6rem 3rem;
    background: #e8f1f5;
}

.form-container-offset {
    max-width: 600px;
    margin-left: 20%;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.form-container-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-container-offset > p {
    margin-bottom: 2rem;
    color: #6c757d;
    font-size: 1rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a7a9a;
}

.form-group input[readonly] {
    background: #f3f4f6;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.philosophy-section {
    padding: 6rem 3rem;
    background: white;
}

.philosophy-content-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.philosophy-text {
    flex: 0 0 50%;
    padding-right: 2rem;
}

.philosophy-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.philosophy-text p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.link-inline {
    display: inline-block;
    margin-top: 1rem;
    color: #5a7a9a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #2c3e50;
}

.philosophy-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

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

.footer-asymmetric {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 4rem 3rem 2rem 3rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    color: #b0b0b0;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

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

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.8rem;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    max-width: 800px;
    margin: 1rem auto 0;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: #f8f9fa;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

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

.thanks-content p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.thanks-service-info {
    background: white;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.thanks-service-info strong {
    color: #2c3e50;
}

.btn-back-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.page-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.page-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    color: #4a5568;
}

.page-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.page-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.page-content ul li {
    margin-bottom: 0.7rem;
    color: #4a5568;
}

.contact-info-section {
    padding: 4rem 3rem;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

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

.contact-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.email-display {
    color: #4a5568;
    font-weight: 500;
}

@media (max-width: 968px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        flex: 1;
    }

    .hero-image-container {
        min-height: 400px;
        clip-path: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .intro-overlap {
        flex-direction: column;
        margin: 2rem 1.5rem;
    }

    .intro-text-block,
    .intro-visual-accent {
        flex: 1;
    }

    .service-card {
        flex-direction: column;
        width: 100% !important;
        margin-left: 0 !important;
    }

    .service-image {
        flex: 0 0 250px;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .form-container-offset {
        margin-left: 0;
    }

    .philosophy-content-split {
        flex-direction: column;
    }

    .philosophy-text {
        flex: 1;
    }

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

    .nav-asymmetric {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
    }

    .ad-label {
        position: static;
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
}
