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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7e;
    --accent-color: #e8965e;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 1200px;
    width: 90%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
}

.ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: 20px;
}

.hero-offset {
    padding: 140px 40px 80px;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-left {
    flex: 1;
    padding-left: 40px;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-image-right {
    flex: 1;
    position: relative;
}

.hero-image-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-light);
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232, 150, 94, 0.3);
    color: var(--bg-white);
}

.intro-offset {
    padding: 100px 40px;
    background: var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-narrow {
    flex: 2;
    max-width: 700px;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

.services-asymmetric {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-offset {
    margin-bottom: 60px;
    padding-left: 60px;
}

.section-header-offset h2 {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card.card-large {
    width: calc(60% - 15px);
}

.service-card.card-medium {
    width: calc(40% - 15px);
}

.service-card.card-wide {
    width: calc(66% - 15px);
}

.service-card.card-small {
    width: calc(34% - 15px);
}

.service-image {
    background-color: var(--bg-light);
}

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

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-select-service {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.process-section {
    padding: 100px 40px;
    background: var(--primary-color);
    color: var(--bg-white);
}

.process-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.process-text {
    flex: 1;
}

.process-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.process-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.process-image {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
}

.process-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.form-section {
    padding: 100px 40px;
    background: var(--bg-light);
}

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

.form-container-centered h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.form-container-centered p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232, 150, 94, 0.3);
}

.testimonials-offset {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial cite {
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 40px 30px;
}

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

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.page-header-minimal {
    padding: 140px 40px 60px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.page-header-minimal h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.page-header-minimal p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-intro {
    padding: 60px 40px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content-asymmetric {
    display: flex;
    align-items: center;
    gap: 80px;
}

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

.about-text-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.about-text-block p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image-offset {
    flex: 1;
    background-color: var(--bg-light);
}

.about-image-offset img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.values-section {
    padding: 100px 40px;
    background: var(--bg-light);
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 700;
}

.values-grid-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.team-approach {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-content-split {
    display: flex;
    align-items: center;
    gap: 80px;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.team-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-image {
    flex: 1;
    background-color: var(--bg-light);
}

.team-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
}

.experience-numbers {
    padding: 100px 40px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.experience-numbers h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.numbers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

.number-large {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.number-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-section-simple {
    padding: 100px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section-simple h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section-simple p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.btn-cta-large {
    display: inline-block;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 50px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232, 150, 94, 0.3);
    color: var(--bg-white);
}

.services-detailed {
    padding: 60px 40px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-asymmetric {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-dark);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-pricing-box {
    background: var(--bg-light);
    padding: 20px 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.service-detail-image {
    flex: 1;
    background-color: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.contact-section {
    padding: 60px 40px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-layout-split {
    display: flex;
    gap: 80px;
}

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

.contact-info-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-detail p {
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-note {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.contact-note p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.contact-form-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.thanks-section {
    padding: 140px 40px 100px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    min-height: 60vh;
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.8;
}

.thanks-details {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 50px;
}

.thanks-details p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-content {
    padding: 140px 40px 100px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-content p {
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    color: var(--text-dark);
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        padding-top: 120px;
    }

    .hero-content-left {
        padding-left: 0;
        text-align: center;
    }

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

    .intro-offset {
        flex-direction: column;
        gap: 40px;
    }

    .services-grid-irregular .service-card {
        width: 100%;
    }

    .process-content-offset {
        flex-direction: column;
    }

    .about-content-asymmetric,
    .team-content-split,
    .contact-layout-split,
    .service-detail-asymmetric {
        flex-direction: column;
    }

    .service-detail-asymmetric.reverse {
        flex-direction: column;
    }

    .testimonial-grid {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .numbers-grid {
        flex-direction: column;
    }
}