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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    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: 1rem;
}

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

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

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

.cookie-btn.accept {
    background-color: #2563eb;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #1e40af;
}

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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

.ad-disclosure {
    font-size: 0.85rem;
    color: #6b7280;
    font-style: italic;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-right a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #2563eb;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content-left {
    flex: 1;
    padding: 5rem 5% 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4b5563;
}

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

.cta-primary:hover {
    background-color: #1e40af;
}

.hero-image-right {
    flex: 1;
    overflow: hidden;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
}

.intro-diagonal {
    display: flex;
    align-items: stretch;
    margin: 4rem 0;
}

.diagonal-block {
    flex: 1;
    padding: 5rem 5%;
}

.diagonal-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.diagonal-block p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.diagonal-image {
    flex: 1;
    overflow: hidden;
    transform: skewX(-3deg);
    margin-left: -3rem;
}

.diagonal-image img {
    width: 100%;
    height: 100%;
    transform: skewX(3deg);
    transform-origin: center;
    scale: 1.2;
}

.services-offset {
    padding: 6rem 5%;
    background-color: #f9fafb;
}

.services-header-float {
    max-width: 700px;
    margin-bottom: 4rem;
    margin-left: 10%;
}

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

.services-header-float p {
    font-size: 1.2rem;
    color: #6b7280;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    width: calc(50% - 1rem);
    min-width: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card.offset-top {
    margin-top: 3rem;
}

.service-card.offset-bottom {
    margin-top: -2rem;
}

.service-card.offset-center {
    margin-top: 1.5rem;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 1.5rem 1.5rem;
    color: #4b5563;
    font-size: 1rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin: 1rem 1.5rem;
}

.service-select {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-select:hover {
    background-color: #2563eb;
}

.form-section-diagonal {
    padding: 6rem 5%;
    background-color: #f0f4f8;
    display: none;
}

.form-section-diagonal.active {
    display: block;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-intro {
    margin-bottom: 2rem;
    color: #4b5563;
    font-size: 1.1rem;
}

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

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

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

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

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

.cta-submit {
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-submit:hover {
    background-color: #1e40af;
}

.trust-block {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.trust-content-overlap {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-text {
    flex: 1;
    padding: 2rem;
}

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

.trust-text p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.trust-image {
    flex: 1;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

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

.footer-offset {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

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

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

.page-hero-offset {
    padding: 5rem 5% 3rem 8%;
    background-color: #f9fafb;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: #6b7280;
}

.about-content-asymmetric {
    padding: 4rem 5%;
}

.about-block-left,
.about-block-right {
    padding: 4rem 8%;
    margin: 3rem 0;
}

.about-block-left h2,
.about-block-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-block-left p,
.about-block-right p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.about-image-offset {
    height: 500px;
    overflow: hidden;
    margin: 3rem 8% 3rem 15%;
    border-radius: 12px;
}

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

.about-values-floating {
    padding: 5rem 8%;
    background-color: #f9fafb;
    margin: 4rem 0;
}

.about-values-floating h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    text-align: center;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.value-item p {
    color: #4b5563;
}

.team-section-diagonal {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.team-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.team-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.team-header p {
    font-size: 1.1rem;
    color: #6b7280;
}

.team-image-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.team-image-container img {
    width: 100%;
    height: 100%;
}

.cta-section-offset {
    padding: 6rem 5%;
    background-color: #2563eb;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background-color: #ffffff;
    color: #2563eb;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.services-detailed {
    padding: 4rem 5%;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 4rem auto;
    max-width: 1300px;
    border-radius: 12px;
    overflow: hidden;
    padding: 3rem;
}

.service-detail-card.offset-left {
    margin-left: 0;
}

.service-detail-card.offset-right {
    margin-right: 0;
    flex-direction: row-reverse;
}

.service-detail-card.offset-center {
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style-position: inside;
    margin-bottom: 2rem;
}

.service-features li {
    color: #4b5563;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.service-pricing-block {
    margin: 2rem 0;
}

.price-label {
    font-size: 1rem;
    color: #6b7280;
    margin-right: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
}

.process-section {
    padding: 6rem 5%;
    background-color: #f9fafb;
}

.process-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.process-step p {
    color: #6b7280;
}

.form-section-services {
    padding: 6rem 5%;
    background-color: #e8f5e9;
    display: none;
}

.form-section-services.active {
    display: block;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.contact-section-asymmetric {
    display: flex;
    gap: 3rem;
    padding: 4rem 5%;
}

.contact-info-block {
    flex: 1;
    padding: 3rem;
    border-radius: 12px;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-info-block p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-item p {
    color: #4b5563;
    margin: 0;
}

.contact-image-offset {
    flex: 1;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-image-offset img {
    width: 100%;
    height: 100%;
}

.location-section {
    padding: 4rem 5%;
    background-color: #f9fafb;
}

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

.location-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.location-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.location-highlight {
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.location-highlight p {
    margin: 0;
    font-style: italic;
}

.cta-section-contact {
    padding: 6rem 5%;
    background-color: #1a1a1a;
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content-centered p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
}

.thanks-section {
    display: flex;
    min-height: 70vh;
    padding: 4rem 5%;
    gap: 4rem;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.thanks-info {
    background-color: #f0f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-info p {
    margin: 0;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-next-steps ul {
    list-style-position: inside;
    margin-bottom: 2rem;
}

.thanks-next-steps li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: #4b5563;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e40af;
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: #2563eb;
    text-decoration: none;
    border: 2px solid #2563eb;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.thanks-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    height: 600px;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
}

.legal-page {
    padding: 4rem 5%;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    color: #4b5563;
    line-height: 1.8;
}

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1e40af;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    font-style: italic;
    color: #6b7280;
}

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-offset {
        flex-direction: column;
    }

    .hero-content-left h1 {
        font-size: 2.5rem;
    }

    .intro-diagonal {
        flex-direction: column;
    }

    .diagonal-image {
        transform: none;
        margin-left: 0;
    }

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

    .service-card {
        width: 100%;
    }

    .trust-content-overlap {
        flex-direction: column;
    }

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

    .service-detail-card.offset-right {
        flex-direction: column;
    }

    .contact-section-asymmetric {
        flex-direction: column;
    }

    .thanks-section {
        flex-direction: column;
    }

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