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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.brand {
    font-size: 1.4rem;
    font-weight: bold;
    color: #e74c3c;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 15px;
}

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

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

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

.hero-asymmetric {
    margin-top: 100px;
    padding: 60px 20px;
    min-height: 85vh;
}

.hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-text-block {
    width: 55%;
    padding: 60px;
    background: #ecf0f1;
    margin-left: 8%;
    margin-bottom: -120px;
    z-index: 2;
    position: relative;
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-text-block p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #c0392b;
}

.hero-image-overlap {
    align-self: flex-end;
    width: 68%;
    margin-top: 0;
}

.hero-image-overlap img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.intro-zigzag {
    max-width: 1200px;
    margin: 120px auto 80px;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-left {
    flex: 1.5;
}

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

.content-left p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #555;
}

.image-right-small {
    flex: 1;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.image-right-small img {
    width: 100%;
    display: block;
}

.services-asymmetric {
    background: #f8f9fa;
    padding: 100px 20px;
    margin: 80px 0;
}

.services-header-offset {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding-left: 15%;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-header-offset p {
    font-size: 1.1rem;
    color: #666;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card.large {
    flex: 1 1 calc(60% - 25px);
}

.service-card.medium {
    flex: 1 1 calc(48% - 25px);
}

.service-card.small {
    flex: 1 1 calc(38% - 25px);
}

.service-visual {
    background: #ecf0f1;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    display: block;
    transition: transform 0.4s;
}

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

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.service-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 15px;
    display: block;
}

.select-service {
    padding: 12px 28px;
    background: #34495e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #2c3e50;
}

.overlap-content {
    position: relative;
    margin: 100px 0;
    min-height: 600px;
}

.background-image-section {
    position: absolute;
    width: 60%;
    right: 0;
    top: 80px;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}

.background-image-section img {
    width: 100%;
    display: block;
}

.text-overlay-box {
    position: relative;
    max-width: 550px;
    margin-left: 10%;
    padding: 50px;
    background: #ffffff;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    z-index: 2;
}

.text-overlay-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.text-overlay-box p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
}

.cta-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: #34495e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 15px;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #2c3e50;
}

.form-section-offset {
    max-width: 900px;
    margin: 100px auto 100px 15%;
    padding: 0 20px;
}

.form-container-asymmetric {
    background: #ecf0f1;
    padding: 50px;
    border-radius: 12px;
}

.form-intro {
    margin-bottom: 35px;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 1rem;
    color: #666;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-submit {
    padding: 15px 40px;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.form-submit:hover {
    background: #c0392b;
}

.disclaimer-section {
    background: #fef5e7;
    padding: 40px 20px;
    margin: 80px 0;
}

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

.disclaimer-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}

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

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

.footer-block h3,
.footer-block h4 {
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-block p {
    font-size: 0.95rem;
    color: #bdc3c7;
}

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

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

.footer-block ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block ul li a:hover {
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    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 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    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;
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

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

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

.cookie-btn.reject:hover {
    background: #7f8c8d;
}

.page-header-offset {
    margin-top: 120px;
    padding: 80px 20px 40px;
    background: #ecf0f1;
}

.header-content-irregular {
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 10%;
}

.header-content-irregular h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.header-content-irregular p {
    font-size: 1.2rem;
    color: #555;
}

.services-detailed {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.service-row-left,
.service-row-right {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-image {
    flex: 1;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    display: block;
}

.service-text {
    flex: 1.2;
}

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

.service-text p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
}

.service-details {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-large {
    font-size: 2.2rem;
    font-weight: bold;
    color: #e74c3c;
}

.cta-section-centered {
    text-align: center;
    padding: 80px 20px;
    background: #2c3e50;
    color: #ffffff;
    margin: 80px 0;
}

.cta-section-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section-centered p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.cta-large {
    display: inline-block;
    padding: 18px 45px;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-large:hover {
    background: #c0392b;
}

.about-hero-split {
    margin-top: 120px;
    padding: 0 20px;
    display: flex;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    gap: 0;
}

.about-text-side {
    flex: 1;
    background: #e74c3c;
    color: #ffffff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-side h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.about-text-side p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.about-image-side {
    flex: 1.2;
    background: #ecf0f1;
    overflow: hidden;
}

.about-image-side img {
    width: 100%;
    height: 100%;
}

.story-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 20px;
}

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

.story-content-narrow p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.values-offset {
    background: #f8f9fa;
    padding: 80px 20px;
    margin: 80px 0;
}

.values-header {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding-left: 12%;
}

.values-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
}

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

.value-card {
    flex: 1 1 calc(33.333% - 30px);
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #e74c3c;
}

.value-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.team-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 20px;
}

.team-intro-offset {
    max-width: 700px;
    margin: 0 0 40px 10%;
}

.team-intro-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-intro-offset p {
    font-size: 1.1rem;
    color: #555;
}

.team-visual {
    width: 75%;
    margin-left: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.team-visual img {
    width: 100%;
    display: block;
}

.approach-section {
    background: #2c3e50;
    color: #ffffff;
    padding: 80px 20px;
    margin: 80px 0;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    text-align: center;
}

.approach-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    flex: 1 1 calc(25% - 40px);
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.step p {
    font-size: 0.95rem;
    color: #ecf0f1;
    line-height: 1.6;
}

.cta-about {
    text-align: center;
    padding: 80px 20px;
    background: #ecf0f1;
    margin: 80px 0;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cta-about p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-hero {
    margin-top: 120px;
    padding: 80px 20px 60px;
    text-align: center;
    background: #ecf0f1;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #555;
}

.contact-content-split {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
}

.contact-info-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.info-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.email-display {
    color: #2c3e50;
    font-weight: 600;
}

.contact-map-right {
    flex: 1.2;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
}

.visit-info {
    max-width: 900px;
    margin: 60px auto 100px;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 12px;
}

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

.visit-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.thanks-content {
    margin-top: 150px;
    padding: 100px 20px;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thanks-message {
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    font-weight: bold;
}

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

.thanks-message p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
}

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

.legal-page {
    margin-top: 120px;
    padding: 60px 20px;
}

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

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

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

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

.legal-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content ul li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.7;
}

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

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

.legal-content em {
    color: #7f8c8d;
}

@media (max-width: 1024px) {
    .hero-text-block {
        width: 70%;
        padding: 40px;
    }

    .hero-image-overlap {
        width: 80%;
    }

    .service-card.large,
    .service-card.medium,
    .service-card.small {
        flex: 1 1 100%;
    }

    .services-grid-irregular {
        flex-direction: column;
    }

    .intro-zigzag,
    .service-row-left,
    .service-row-right,
    .contact-content-split {
        flex-direction: column;
    }

    .about-hero-split {
        flex-direction: column;
    }

    .approach-steps {
        flex-direction: column;
    }

    .step {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 15px 20px;
        border-radius: 20px;
    }

    .nav-links {
        width: 100%;
        justify-content: space-around;
        margin-top: 10px;
        gap: 15px;
    }

    .hero-text-block h1 {
        font-size: 2rem;
    }

    .hero-text-block {
        width: 90%;
        margin-left: 0;
    }

    .hero-image-overlap {
        width: 100%;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
    }
}