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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

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

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

.nav-brand a {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-disclaimer {
    flex: 1;
    text-align: center;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px 5%;
    position: relative;
    background-color: #f8f9fa;
}

.hero-content-offset {
    width: 50%;
    padding-right: 60px;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.hero-image-overlap {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 48%;
    height: 70%;
    background-color: #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
}

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

.intro-offset {
    padding: 120px 5%;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-block-left {
    width: 55%;
}

.intro-block-left h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-block-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.intro-visual-right {
    width: 40%;
    background-color: #e8f4f8;
    border-radius: 12px;
    overflow: hidden;
}

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

.services-asymmetric {
    padding: 120px 5%;
    background-color: #f8f9fa;
}

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

.section-header-offset h2 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-offset p {
    font-size: 20px;
    color: #666;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px 24px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0 24px 16px 24px;
    flex-grow: 1;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin: 0 24px 16px 24px;
}

.btn-select-service {
    margin: 0 24px 24px 24px;
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section-diagonal {
    padding: 120px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.form-section-diagonal::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background-color: #f8f9fa;
    transform: skewY(-2deg);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-container > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.trust-section {
    padding: 120px 5%;
    background-color: #ffffff;
}

.trust-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-content-centered h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonials-stacked {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
    text-align: left;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 600;
}

.cta-final-offset {
    padding: 120px 5%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.cta-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-block h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.cta-block p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button-large {
    display: inline-block;
    padding: 20px 48px;
    background-color: #ffffff;
    color: #1e3c72;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 5% 30px 5%;
}

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

.footer-col-brand {
    flex: 2;
    max-width: 400px;
}

.footer-col-brand h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-col-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
}

.footer-col-links,
.footer-col-legal {
    flex: 1;
}

.footer-col-links h4,
.footer-col-legal h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

.footer-col-links li,
.footer-col-legal li {
    margin-bottom: 8px;
}

.footer-col-links a,
.footer-col-legal a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    padding: 24px;
    background-color: #0f0f0f;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: #999;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #777;
}

.page-header-diagonal {
    padding: 160px 5% 80px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-header-diagonal h1 {
    font-size: 56px;
    margin-bottom: 16px;
}

.page-header-diagonal p {
    font-size: 20px;
    opacity: 0.9;
}

.about-content-asymmetric {
    padding: 100px 5%;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text-block {
    width: 55%;
}

.about-text-block h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image-offset {
    width: 40%;
    background-color: #e8f4f8;
    border-radius: 12px;
    overflow: hidden;
}

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

.approach-section {
    padding: 100px 5%;
    background-color: #f8f9fa;
}

.approach-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

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

.approach-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.approach-item h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #3498db;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.values-diagonal {
    padding: 100px 5%;
    background-color: #1e3c72;
    color: #ffffff;
}

.values-content {
    max-width: 800px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 42px;
    margin-bottom: 32px;
}

.values-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.95;
}

.cta-about {
    padding: 100px 5%;
    text-align: center;
    background-color: #ffffff;
}

.cta-about h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

.services-detail-asymmetric {
    padding: 80px 5%;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-price {
    font-size: 40px;
    font-weight: 700;
    color: #3498db;
    margin: 24px 0;
}

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

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

.cta-services {
    padding: 80px 5%;
    text-align: center;
    background-color: #f8f9fa;
}

.cta-services h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-services p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.contact-section-asymmetric {
    padding: 80px 5%;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #3498db;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.contact-visual {
    flex: 1;
    background-color: #e8f4f8;
    border-radius: 12px;
    overflow: hidden;
}

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

.contact-cta {
    padding: 80px 5%;
    text-align: center;
    background-color: #f8f9fa;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 5% 80px 5%;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
}

.service-selected {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.service-selected p {
    font-size: 16px;
    margin: 0;
}

.thanks-note {
    font-size: 14px;
    color: #777;
}

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

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

.legal-page {
    padding: 160px 5% 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.legal-page th,
.legal-page td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

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

.back-link {
    display: inline-block;
    margin-top: 40px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-content-offset {
        width: 100%;
        padding-right: 0;
    }

    .hero-image-overlap {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 400px;
        margin-top: 40px;
    }

    .intro-offset,
    .about-content-asymmetric,
    .contact-section-asymmetric {
        flex-direction: column;
    }

    .intro-block-left,
    .intro-visual-right,
    .about-text-block,
    .about-image-offset,
    .contact-info-block,
    .contact-visual {
        width: 100%;
    }

    .service-detail-block {
        flex-direction: column;
    }

    .service-reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
    }

    .hero-content-offset h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

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

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