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

.ad-disclosure {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #dee2e6;
}

.floating-nav {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 35px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 800px;
    width: 90%;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-right: 40px;
}

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

.nav-links a {
    color: #34495e;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    position: relative;
    margin-top: 40px;
}

.hero-offset-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #ecf0f1;
}

.hero-text-block {
    max-width: 500px;
    margin-left: 40px;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 1.15rem;
    color: #34495e;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-image-overlap {
    flex: 1.3;
    position: relative;
    overflow: hidden;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.intro-offset {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 100px 60px;
    gap: 80px;
}

.intro-narrow {
    flex: 1;
    padding-right: 40px;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
}

.intro-narrow p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.8;
}

.intro-image-right {
    flex: 0.8;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

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

.services-grid-irregular {
    padding: 120px 60px;
    background: #f8f9fa;
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 60px;
}

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

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

.service-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.service-card {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-card-offset {
    flex: 1 1 calc(40% - 15px);
    margin-top: 40px;
}

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

.service-card-wide {
    flex: 1 1 calc(65% - 15px);
    margin-top: -60px;
}

.service-card-tall {
    flex: 1 1 calc(45% - 15px);
}

.service-image {
    height: 280px;
    overflow: hidden;
}

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

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

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

.service-content p {
    color: #6c757d;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 1.6rem;
    color: #3498db;
    font-weight: 600;
}

.form-section-diagonal {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 700px;
}

.form-container-offset {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-container-offset p {
    color: #6c757d;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.project-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background: #3498db;
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-bg-image {
    flex: 1.2;
    overflow: hidden;
}

.form-bg-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonial-scattered {
    padding: 100px 60px;
    background: #2c3e50;
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.testimonial-item {
    flex: 1;
}

.testimonial-left {
    margin-top: 0;
}

.testimonial-right {
    margin-top: 60px;
}

.testimonial-item blockquote {
    border-left: 4px solid #3498db;
    padding-left: 30px;
}

.testimonial-item p {
    font-size: 1.2rem;
    color: #ecf0f1;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-item cite {
    color: #95a5a6;
    font-style: normal;
    font-size: 0.95rem;
}

.footer-asymmetric {
    background: #34495e;
    color: #ecf0f1;
    padding: 60px 60px 30px;
}

.footer-content-split {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

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

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

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid #4a5f7f;
    border-bottom: 1px solid #4a5f7f;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    color: #95a5a6;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-copyright {
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 25px 40px;
    z-index: 10000;
    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;
    margin: 0;
    color: #2c3e50;
}

.cookie-content a {
    color: #3498db;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cookie-reject {
    background: #ecf0f1;
    color: #2c3e50;
}

.cookie-reject:hover {
    background: #bdc3c7;
}

.about-hero-diagonal {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 70vh;
    margin-top: 40px;
}

.about-hero-content {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

.about-hero-content h1 {
    font-size: 3.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 500px;
}

.about-hero-image {
    flex: 1.1;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-story-offset {
    padding: 100px 60px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.story-text-narrow {
    flex: 1.2;
    padding-right: 40px;
}

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

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

.story-image-overlap {
    flex: 0.8;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 60px;
}

.story-image-overlap img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-irregular {
    padding: 100px 60px;
    background: #ecf0f1;
}

.values-irregular h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: center;
}

.values-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-block {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.value-block-1 {
    flex: 1 1 calc(55% - 20px);
}

.value-block-2 {
    flex: 1 1 calc(45% - 20px);
    margin-top: 40px;
}

.value-block-3 {
    flex: 1 1 calc(60% - 20px);
}

.value-block h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-block p {
    color: #6c757d;
    line-height: 1.7;
}

.team-section-scattered {
    padding: 100px 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.team-intro {
    flex: 1 1 100%;
    max-width: 700px;
}

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

.team-intro p {
    font-size: 1.1rem;
    color: #6c757d;
}

.team-image-left {
    flex: 1 1 calc(45% - 25px);
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.team-image-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.team-text-right {
    flex: 1 1 calc(55% - 25px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
}

.team-text-right p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-header-split {
    padding: 140px 60px 80px;
    background: #ecf0f1;
    text-align: left;
}

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

.services-header-text p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 700px;
}

.services-detailed-asymmetric {
    padding: 80px 60px;
}

.service-detail-item {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail-left {
    flex-direction: row;
}

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

.service-detail-image {
    flex: 1;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
}

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

.service-detail-content {
    flex: 1;
}

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

.service-detail-content p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #34495e;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-label {
    color: #6c757d;
    font-size: 1rem;
}

.price-amount {
    font-size: 2rem;
    color: #3498db;
    font-weight: 700;
}

.cta-section-offset {
    padding: 100px 60px;
    background: #2c3e50;
}

.cta-content-diagonal {
    max-width: 700px;
    margin-left: 80px;
}

.cta-content-diagonal h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content-diagonal p {
    font-size: 1.15rem;
    color: #ecf0f1;
    margin-bottom: 35px;
}

.cta-link-button {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-link-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.contact-hero-minimal {
    padding: 140px 60px 60px;
    text-align: center;
    background: #f8f9fa;
}

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

.contact-hero-minimal p {
    font-size: 1.2rem;
    color: #6c757d;
}

.contact-info-asymmetric {
    padding: 80px 60px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-details-offset {
    flex: 1;
}

.contact-block {
    margin-bottom: 50px;
}

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

.contact-block p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.8;
}

.contact-image-overlap {
    flex: 1;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
}

.contact-image-overlap img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-cta-diagonal {
    padding: 80px 60px;
    background: #ecf0f1;
}

.contact-cta-content {
    max-width: 800px;
}

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

.contact-cta-content p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 15px;
}

.cta-button-secondary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.thanks-hero-centered {
    padding: 140px 60px 80px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-content p {
    font-size: 1.15rem;
    color: #34495e;
    margin-bottom: 30px;
}

.thanks-service-confirmation {
    margin-bottom: 30px;
}

.service-selected {
    background: #ecf0f1;
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 1.05rem;
}

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

.btn-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: #ecf0f1;
    color: #2c3e50;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #bdc3c7;
}

.thanks-image {
    flex: 0.8;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
}

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

.thanks-next-steps {
    padding: 80px 60px;
    background: #f8f9fa;
}

.thanks-next-steps h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 12px;
}

.step-item p {
    color: #6c757d;
    line-height: 1.7;
}

.legal-page {
    padding: 140px 60px 80px;
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

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

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.cookie-table th {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

.cookie-table td {
    color: #34495e;
}

@media (max-width: 1024px) {
    .hero-asymmetric,
    .about-hero-diagonal,
    .form-section-diagonal,
    .intro-offset,
    .contact-info-asymmetric,
    .thanks-hero-centered {
        flex-direction: column;
    }

    .service-detail-item {
        flex-direction: column !important;
    }

    .floating-nav {
        top: 20px;
        width: 95%;
        padding: 12px 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .footer-content-split,
    .testimonial-scattered,
    .steps-grid,
    .team-section-scattered {
        flex-direction: column;
        gap: 40px;
    }

    .service-cards-asymmetric .service-card {
        flex: 1 1 100%;
        margin-top: 0 !important;
    }
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .nav-brand {
        font-size: 1.1rem;
        margin-right: 20px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}