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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

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

.cookie-content a {
    color: #e8b87d;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #e8b87d;
    color: #2c3e50;
}

.btn-accept:hover {
    background-color: #d4a56a;
}

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

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-disclaimer {
    font-size: 0.75rem;
    color: #7f8c8d;
    font-style: italic;
    padding: 0.25rem 0.75rem;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f8f9fa;
}

.hero-offset-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-text-block {
    max-width: 520px;
    margin-left: 8%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #e8b87d;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #d4a56a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 184, 125, 0.3);
}

.hero-image-offset {
    position: absolute;
    right: 0;
    top: 15%;
    width: 55%;
    height: 70%;
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.intro-block {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.intro-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-left {
    flex: 1;
    padding-top: 3rem;
}

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

.intro-left p {
    font-size: 1.125rem;
    color: #546e7a;
}

.intro-right-offset {
    flex: 1;
    margin-top: -3rem;
}

.intro-right-offset p {
    font-size: 1.125rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.intro-right-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: -20px 20px 0 #e8b87d;
}

.services-creative {
    padding: 8rem 2rem;
    background-color: #f8f9fa;
}

.section-title-offset {
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2c3e50;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15%;
}

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

.service-card {
    background-color: #ffffff;
    width: calc(33.333% - 2rem);
    min-width: 320px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.card-offset-1 {
    margin-top: 0;
}

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

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

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

.card-offset-5 {
    margin-top: -1rem;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #ecf0f1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-content {
    padding: 2rem;
}

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

.service-content p {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #e8b87d;
    margin-bottom: 1.5rem;
}

.service-select {
    width: 100%;
    padding: 0.875rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.process-section {
    padding: 6rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.process-container-offset {
    max-width: 1400px;
    margin: 0 auto;
}

.process-container-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    margin-left: 10%;
}

.process-steps-irregular {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
}

.step-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    width: calc(33.333% - 2rem);
    min-width: 280px;
    border-left: 4px solid #e8b87d;
}

.step-pos-1 {
    margin-top: 0;
}

.step-pos-2 {
    margin-top: 4rem;
}

.step-pos-3 {
    margin-top: -2rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e8b87d;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ecf0f1;
}

.contact-form-section {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

.form-container-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro-text {
    flex: 1;
    padding-top: 2rem;
}

.form-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.2;
}

.form-intro-text p {
    font-size: 1.125rem;
    color: #546e7a;
}

.contact-form {
    flex: 1;
    background-color: #f8f9fa;
    padding: 3rem;
    box-shadow: 15px -15px 0 #e8b87d;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #dfe6e9;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #e8b87d;
    color: #2c3e50;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

.footer-col ul li a:hover {
    color: #e8b87d;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.thanks-service-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #e8b87d;
}

.thanks-service-info strong {
    color: #2c3e50;
}

.about-hero {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 1.125rem;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 20px -20px 0 #e8b87d;
}

.values-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-top: 4px solid #e8b87d;
}

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

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

.contact-hero {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-hero p {
    font-size: 1.125rem;
    color: #546e7a;
}

.contact-info-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-info-container {
    max-width: 900px;
    margin: 0 auto;
}

.info-block {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #e8b87d;
}

.info-block h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-block p {
    font-size: 1.125rem;
    color: #546e7a;
    margin-bottom: 0.5rem;
}

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

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

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

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

.legal-container p {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-container ul li {
    margin-bottom: 0.5rem;
    color: #546e7a;
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .hero-image-offset {
        width: 50%;
    }

    .service-card {
        width: calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

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

    .hero-image-offset {
        position: relative;
        width: 100%;
        height: 400px;
        margin-top: 2rem;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 2rem;
    }

    .intro-right-offset {
        margin-top: 0;
    }

    .service-card {
        width: 100%;
        margin-top: 0 !important;
    }

    .section-title-offset {
        padding-left: 0;
    }

    .process-steps-irregular {
        flex-direction: column;
    }

    .step-item {
        width: 100%;
        margin-top: 0 !important;
    }

    .form-container-asymmetric {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-form {
        box-shadow: 10px -10px 0 #e8b87d;
    }

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