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

.header-asymmetric {
    background: #ffffff;
    padding: 1.5rem 5%;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-block {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    text-decoration: none;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.7rem;
    background: #f5f5f5;
    border-radius: 4px;
}

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

.nav-main a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-main a:hover {
    color: #0066cc;
}

.hero-offset {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5% 5% 5% 8%;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-text-block {
    flex: 1 1 400px;
    max-width: 550px;
}

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

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

.hero-visual-block {
    flex: 1 1 500px;
    position: relative;
    background-color: #e8f4f8;
}

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

.cta-primary {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #0052a3;
}

.cta-secondary {
    display: inline-block;
    background: #ffffff;
    color: #0066cc;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid #0066cc;
    transition: background 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background: #0066cc;
    color: #ffffff;
}

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

.intro-left {
    flex: 0 1 400px;
    background-color: #f8f8f8;
}

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

.intro-right {
    flex: 1 1 500px;
    padding-top: 2rem;
}

.intro-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-right p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #444;
}

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

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

.section-header-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header-offset p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
}

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

.service-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-large {
    flex: 1 1 calc(50% - 1rem);
    min-width: 400px;
}

.card-small {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 300px;
}

.card-medium {
    flex: 1 1 calc(40% - 1rem);
    min-width: 350px;
}

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

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

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

.service-content p {
    color: #555;
    font-size: 0.95rem;
    flex: 1;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0066cc;
}

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

.btn-select-service:hover {
    background: #0052a3;
}

.cta-offset-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 5%;
}

.cta-block-left {
    max-width: 650px;
    margin-left: 10%;
    padding: 3rem;
    background: #0066cc;
    color: #ffffff;
    border-radius: 6px;
}

.cta-block-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-block-left p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.form-section {
    padding: 6rem 5%;
    background: #ffffff;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto 0 15%;
}

.form-container-offset h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.form-container-offset > p {
    margin-bottom: 2.5rem;
    color: #555;
    font-size: 1.05rem;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    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: #0066cc;
}

.btn-submit {
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #0052a3;
}

.trust-section {
    background: #1a1a1a;
    color: #ffffff;
    padding: 5rem 5%;
}

.trust-content {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.stats-asymmetric {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
}

.stat-label {
    font-size: 1rem;
    color: #ccc;
    max-width: 200px;
}

.footer-asymmetric {
    background: #f9fafb;
    padding: 4rem 5% 2rem;
}

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

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

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

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

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.disclaimer {
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #777;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie-accept {
    background: #0066cc;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #0052a3;
}

.btn-cookie-reject {
    background: #ffffff;
    color: #1a1a1a;
}

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

.page-hero-offset {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 5% 0 10%;
}

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

.page-hero-content p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

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

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

.service-detail-image {
    flex: 1 1 400px;
    background-color: #f8f8f8;
}

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

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

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

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

.service-detail-content ul {
    margin: 1.5rem 0 1.5rem 2rem;
    color: #444;
}

.service-detail-content ul li {
    margin-bottom: 0.7rem;
}

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

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

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

.cta-services {
    background: #f9fafb;
    padding: 5rem 5%;
    text-align: center;
}

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

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

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

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

.about-hero-text {
    flex: 1 1 450px;
    padding-right: 2rem;
}

.about-hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-text p {
    font-size: 1.1rem;
    color: #444;
}

.about-hero-image {
    flex: 1 1 500px;
    background-color: #e8f4f8;
}

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

.about-story {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 5%;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.story-content-left {
    flex: 1 1 500px;
}

.story-content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.story-content-left p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #444;
}

.story-image-right {
    flex: 0 1 400px;
    background-color: #f8f8f8;
}

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

.values-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 5%;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
    max-width: 500px;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 6px;
}

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

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

.team-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 5%;
}

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

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-intro p {
    font-size: 1.1rem;
    color: #444;
    max-width: 800px;
}

.team-image {
    background-color: #e8f4f8;
}

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

.approach-section {
    background: #1a1a1a;
    color: #ffffff;
    padding: 6rem 5%;
}

.approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.approach-block {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    max-width: 500px;
    padding: 2rem;
    background: #2a2a2a;
    border-radius: 6px;
}

.approach-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    display: block;
    margin-bottom: 1rem;
}

.approach-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.approach-block p {
    color: #ccc;
    line-height: 1.6;
}

.stats-about {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 5%;
}

.stats-about h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.stat-box {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 200px;
    padding: 2.5rem 1.5rem;
    background: #f9fafb;
    border-radius: 6px;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.stat-desc {
    display: block;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.contact-cta-about {
    background: #0066cc;
    color: #ffffff;
    padding: 5rem 5%;
    text-align: center;
}

.contact-cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cta-about p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero {
    max-width: 1400px;
    margin: 4rem auto 6rem;
    padding: 0 5%;
    text-align: center;
}

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

.contact-hero p {
    font-size: 1.2rem;
    color: #555;
}

.contact-main {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 6rem;
    padding: 0 5%;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

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

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

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

.contact-item p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-image-block {
    flex: 1 1 400px;
    background-color: #f8f8f8;
}

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

.contact-additional {
    max-width: 1400px;
    margin: 0 auto 6rem;
    padding: 0 5%;
}

.additional-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: #f9fafb;
    border-radius: 6px;
}

.additional-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.additional-content p {
    margin-bottom: 1.2rem;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.7;
}

.additional-content .cta-primary {
    margin-top: 1rem;
}

.legal-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 5%;
}

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

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.7;
}

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

.legal-content ul li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.legal-content a {
    color: #0066cc;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #0052a3;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 5%;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    padding: 3rem;
    background: #f9fafb;
    border-radius: 6px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
    line-height: 1.7;
}

.thanks-content .cta-primary {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 2rem;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

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

    .nav-main {
        gap: 1rem;
    }

    .hero-offset {
        padding: 3rem 5%;
        min-height: auto;
    }

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

    .form-container-offset {
        margin-left: 0;
    }

    .cta-block-left {
        margin-left: 0;
    }

    .service-card {
        min-width: 100%;
    }
}