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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.nav-asymmetric {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    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: #e74c3c;
    color: #ffffff;
}

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

.hero-offset {
    margin-top: 80px;
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-text-block {
    max-width: 600px;
    padding-right: 3rem;
    margin-left: 10%;
}

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

.hero-text-block p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

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

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: -5rem;
    background: #d5dce0;
}

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

.info-block-left {
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.text-content {
    flex: 1;
    padding-left: 8%;
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.text-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
}

.image-overlap {
    flex: 1;
    position: relative;
    margin-right: 5%;
    background: #c8d2d7;
}

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

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

.section-header-offset {
    max-width: 800px;
    margin-left: 15%;
    margin-bottom: 4rem;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.service-card.large {
    width: calc(60% - 1rem);
}

.service-card.medium {
    width: calc(45% - 1rem);
}

.service-card.small {
    width: calc(35% - 1rem);
}

.service-image {
    background: #e0e6ea;
}

.service-image img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
}

.service-info {
    padding: 2rem;
}

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

.service-info p {
    margin-bottom: 1rem;
    color: #546e7a;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.select-btn {
    width: 100%;
    padding: 0.9rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-btn:hover {
    background: #2980b9;
}

.form-section-diagonal {
    padding: 6rem 2rem;
    background: linear-gradient(165deg, #34495e 0%, #2c3e50 100%);
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    transform: skewY(2deg);
}

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

.form-container > p {
    color: #ecf0f1;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.testimonials-offset {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-offset h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.testimonial-blocks {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.testimonial {
    flex: 1;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #546e7a;
    font-size: 1.05rem;
}

.author {
    font-weight: 600;
    color: #2c3e50;
    font-style: normal;
}

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

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

.footer-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-block p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.footer-block a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.9rem;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #95a5a6;
}

.about-hero-offset {
    margin-top: 80px;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.3rem;
    color: #ecf0f1;
}

.about-story-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

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

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

.story-content {
    flex: 1;
    padding-right: 5%;
}

.story-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
}

.values-offset {
    margin-top: 4rem;
    padding-left: 10%;
}

.values-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 0 0 calc(50% - 1rem);
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 6px;
}

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

.value-item p {
    color: #546e7a;
    line-height: 1.7;
}

.team-section-irregular {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #ecf0f1 0%, #f8f9fa 100%);
    text-align: center;
}

.team-section-irregular h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.team-section-irregular > p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #546e7a;
}

.expertise-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.expertise-item {
    flex: 1;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.expertise-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.expertise-item p {
    color: #546e7a;
    line-height: 1.7;
}

.cta-offset {
    padding: 6rem 2rem;
    text-align: center;
    background: #34495e;
}

.cta-offset h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-offset p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.2s;
}

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

.services-header-diagonal {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: linear-gradient(165deg, #27ae60 0%, #229954 100%);
    text-align: center;
    transform: skewY(-2deg);
}

.services-header-diagonal h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    transform: skewY(2deg);
}

.services-header-diagonal p {
    font-size: 1.3rem;
    color: #ecf0f1;
    transform: skewY(2deg);
}

.services-detail-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

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

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

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

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
}

.service-detail-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.7rem;
    color: #546e7a;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 2rem 0 1.5rem;
}

.select-service-btn {
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #2980b9;
}

.service-detail-image {
    flex: 1;
    background: #d5dce0;
}

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

.contact-header {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

.contact-content-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

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

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.8;
}

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.contact-note p {
    color: #546e7a;
}

.contact-visual {
    flex: 1;
    background: #d5dce0;
}

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

.location-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: #ecf0f1;
}

.location-info h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.location-details {
    display: flex;
    gap: 3rem;
}

.location-item {
    flex: 1;
    padding: 2rem;
    background: #ffffff;
    border-radius: 6px;
}

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

.location-item p {
    color: #546e7a;
    line-height: 1.7;
}

.thanks-section {
    margin-top: 80px;
    padding: 6rem 2rem;
    min-height: 60vh;
}

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

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

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.thanks-details {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 6px;
    margin: 2rem 0;
}

.thanks-details p {
    font-size: 1.1rem;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background: #ecf0f1;
    border-radius: 6px;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.next-steps ul {
    padding-left: 1.5rem;
}

.next-steps ul li {
    margin-bottom: 1rem;
    color: #546e7a;
    font-size: 1.05rem;
}

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

.back-home:hover {
    background: #2980b9;
}

.legal-content {
    margin-top: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 4rem 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

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

.legal-content p {
    margin-bottom: 1rem;
    color: #546e7a;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.7rem;
    color: #546e7a;
}

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

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

@media (max-width: 768px) {
    .hero-offset,
    .info-block-left,
    .story-block-right,
    .service-detail-block,
    .contact-content-asymmetric {
        flex-direction: column;
    }

    .hero-text-block,
    .text-content,
    .story-content,
    .contact-info-offset {
        padding: 0;
        margin: 0;
    }

    .hero-image-offset {
        margin-top: 2rem;
    }

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

    .testimonial-blocks {
        flex-direction: column;
    }

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

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

    .value-item {
        flex: 0 0 100%;
    }

    .expertise-blocks,
    .location-details {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-text-block h1,
    .about-text h1,
    .contact-header h1,
    .thanks-content h1 {
        font-size: 2rem;
    }

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