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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #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;
}

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

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

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

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 900;
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 0.35rem 0.75rem;
    border-radius: 3px;
}

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

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

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

.hero-asymmetric {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-offset {
    padding: 4rem 2rem 2rem 2rem;
    max-width: 700px;
    margin-left: 8%;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #495057;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

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

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

.hero-visual-block {
    position: absolute;
    right: 5%;
    top: 20%;
    width: 45%;
    height: 500px;
    z-index: 1;
    background: #dee2e6;
}

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

.intro-offset {
    padding: 5rem 2rem;
    display: flex;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.intro-narrow {
    flex: 1;
    min-width: 300px;
    padding-left: 5%;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #2c3e50;
}

.intro-wide-card {
    flex: 1.5;
    background: #3498db;
    color: #ffffff;
    padding: 2.5rem;
    min-width: 350px;
}

.intro-wide-card h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
}

.intro-wide-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-asymmetric {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.services-header-left {
    max-width: 600px;
    margin-bottom: 3rem;
    padding-left: 3%;
}

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

.services-header-left p {
    font-size: 1.15rem;
    color: #495057;
}

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

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

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

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

.service-card p {
    flex: 1;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.25rem;
    display: block;
}

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

.btn-select-service:hover {
    background: #1a252f;
}

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

.card-offset-top {
    flex: 1 1 calc(45% - 1rem);
    min-width: 350px;
    margin-top: 3rem;
}

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

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

.card-medium {
    flex: 1 1 calc(40% - 1rem);
    min-width: 320px;
    margin-top: -2rem;
}

.card-highlight {
    flex: 1 1 calc(48% - 1rem);
    min-width: 380px;
    background: #ecf0f1;
}

.form-section-diagonal {
    padding: 6rem 2rem;
    background: linear-gradient(125deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    position: relative;
}

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

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

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

.form-container > p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    font-size: 1rem;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 1.1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.trust-block {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

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

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

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 200px;
}

.footer-minimal {
    background: #1a1a1a;
    color: #ecf0f1;
    padding: 4rem 2rem 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-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

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

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

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

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

.footer-bottom p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.page-hero-simple {
    margin-top: 80px;
    padding: 5rem 2rem 3rem 2rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    text-align: center;
}

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

.hero-lead {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-story {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.story-block,
.story-block-reverse {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.story-block-reverse {
    flex-direction: row-reverse;
}

.story-block img,
.story-block-reverse img {
    flex: 1;
    min-width: 400px;
    max-width: 550px;
    height: auto;
    object-fit: cover;
    background-color: #e9ecef;
}

.story-text {
    flex: 1;
    min-width: 350px;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #2c3e50;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 1rem;
}

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

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

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

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

.value-card p {
    color: #6c757d;
    line-height: 1.7;
}

.team-approach {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

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

.approach-intro {
    font-size: 1.2rem;
    color: #495057;
    margin-bottom: 3rem;
    max-width: 800px;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #ecf0f1;
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.step p {
    color: #6c757d;
    line-height: 1.6;
}

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

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-detail-visual {
    flex: 1;
    min-width: 400px;
    background-color: #e9ecef;
}

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

.service-detail-content {
    flex: 1;
    min-width: 400px;
}

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

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

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #6c757d;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

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

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

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

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-services p {
    font-size: 1.2rem;
    color: #495057;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 350px;
}

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

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

.info-item p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    min-width: 400px;
    background-color: #e9ecef;
}

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

.additional-contact-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: #f8f9fa;
}

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

.contact-methods {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.method-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.method-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.method-card p {
    color: #6c757d;
    line-height: 1.7;
}

.thanks-hero {
    margin-top: 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

.thanks-message {
    font-size: 1.25rem;
    color: #495057;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-service-display {
    background: #ffffff;
    padding: 1.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.thanks-service-display p {
    font-size: 1.1rem;
    color: #2c3e50;
}

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

.step-list {
    text-align: left;
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #3498db;
    color: #ffffff;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    flex: 1;
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.6;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background: #bdc3c7;
}

.legal-page {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: #ffffff;
}

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

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

.last-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

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

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

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

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

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

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

.legal-container a:hover {
    text-decoration: underline;
}

.cookie-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
}

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

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

.cookie-table td {
    color: #495057;
}

@media (max-width: 1024px) {
    .hero-visual-block {
        position: static;
        width: 100%;
        height: 400px;
        margin-top: 2rem;
    }

    .hero-content-offset {
        margin-left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .card-large,
    .card-offset-top,
    .card-wide,
    .card-medium,
    .card-highlight {
        flex: 1 1 100%;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .story-block,
    .story-block-reverse,
    .service-detail-card {
        flex-direction: column;
    }

    .story-block img,
    .story-block-reverse img,
    .service-detail-visual {
        min-width: 100%;
    }

    .approach-steps {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

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