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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    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-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #3498db;
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    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: 100;
}

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

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

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    border-left: 1px solid #ecf0f1;
    padding-left: 2rem;
}

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

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 4rem 2rem 4rem 8%;
}

.hero-text-block {
    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: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-text-block p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.hero-image-overlay {
    position: absolute;
    right: 0;
    top: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

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

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

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

.intro-text-narrow {
    flex: 1.5;
    padding-right: 3rem;
}

.intro-text-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-text-narrow p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

.intro-stats-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 2rem;
}

.stat-card {
    background-color: #ecf0f1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-left: 4px solid #3498db;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: #5a6c7d;
    margin-top: 0.5rem;
}

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

.section-header-offset {
    max-width: 1200px;
    margin: 0 auto 3rem 10%;
}

.section-header-offset h2 {
    font-size: 2.5rem;
    color: #2c3e50;
}

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

.service-block {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.large-block {
    flex: 1 1 calc(60% - 1rem);
    min-width: 350px;
}

.medium-block {
    flex: 1 1 calc(48% - 1rem);
    min-width: 320px;
}

.small-block {
    flex: 1 1 calc(35% - 1rem);
    min-width: 280px;
}

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

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

.service-info p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.btn-service {
    padding: 0.9rem 2rem;
    background-color: #2c3e50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #1a252f;
    transform: translateX(5px);
}

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

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

.process-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.process-steps-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-left: 5%;
}

.process-step {
    flex: 1 1 calc(45% - 1.25rem);
    min-width: 280px;
    position: relative;
    padding-left: 5rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3.5rem;
    font-weight: 700;
    color: #3498db;
    opacity: 0.3;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: white;
}

.process-step p {
    color: #bdc3c7;
    line-height: 1.7;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #ecf0f1;
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-left: 15%;
}

.form-intro {
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro p {
    font-size: 1.05rem;
    color: #5a6c7d;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #ecf0f1;
    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 {
    padding: 1.1rem 3rem;
    background-color: #3498db;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

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

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

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

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    line-height: 1.8;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #3498db;
}

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

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

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

.page-hero-content h1 {
    color: white;
    font-size: 3rem;
}

.about-intro {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.about-intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text-offset {
    flex: 1.2;
}

.about-text-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text-offset p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-image-offset {
    flex: 1;
}

.about-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.values-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    margin-left: 8%;
}

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

.value-card {
    flex: 1 1 calc(45% - 1rem);
    min-width: 280px;
    background-color: white;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.value-card:nth-child(odd) {
    margin-left: 5%;
}

.value-card:nth-child(even) {
    margin-right: 5%;
}

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

.value-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

.team-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.team-description p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.team-image {
    width: 100%;
    margin-top: 2rem;
}

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

.approach-section {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

.approach-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

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

.approach-content-offset {
    display: flex;
    gap: 4rem;
}

.approach-text {
    flex: 1.5;
}

.approach-text p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    background-color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
}

.stat-desc {
    font-size: 0.95rem;
    color: #5a6c7d;
    margin-top: 0.5rem;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.services-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.services-intro p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

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

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

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

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

.service-detail-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 2rem 0;
}

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

.service-features ul {
    list-style-position: inside;
    color: #5a6c7d;
}

.service-features li {
    margin-bottom: 0.7rem;
    padding-left: 0.5rem;
}

.service-pricing {
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-label {
    font-size: 1rem;
    color: #5a6c7d;
}

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-services {
    background-color: #3498db;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-services-content h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-services-content p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: white;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-section {
    padding: 4rem 2rem;
}

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

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

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-info-block > p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

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

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

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

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

.thanks-content p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.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: 1rem;
    color: #2c3e50;
}

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

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-container p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-container li {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-container a {
    color: #3498db;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #2980b9;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

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

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

.cookie-table td {
    color: #5a6c7d;
}

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

    .ad-disclosure {
        border-left: none;
        padding-left: 0;
        width: 100%;
        text-align: center;
    }

    .hero-asymmetric {
        min-height: 500px;
    }

    .hero-content-offset {
        padding: 2rem;
    }

    .hero-text-block {
        padding: 2rem;
    }

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

    .hero-image-overlay {
        width: 100%;
        opacity: 0.2;
    }

    .intro-wrapper,
    .about-intro-wrapper,
    .approach-content-offset,
    .contact-wrapper,
    .service-detail-block {
        flex-direction: column;
    }

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

    .large-block,
    .medium-block,
    .small-block {
        flex: 1 1 100%;
    }

    .form-container-asymmetric {
        margin-left: 0;
        padding: 2rem;
    }

    .value-card:nth-child(odd),
    .value-card:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}