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

:root {
    --primary-color: #1a4d6d;
    --secondary-color: #2c7da0;
    --accent-color: #5ba4cf;
    --dark-color: #0d1f2d;
    --light-color: #f8f9fa;
    --text-color: #2d3748;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --warning-color: #ed8936;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #ffffff;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #1a4d6d 0%, #2c7da0 100%);
    color: white;
}

.hero-content {
    max-width: 540px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

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

.intro-block {
    padding: 80px 20px;
    background: #ffffff;
}

.intro-block h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.intro-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
}

.split-reverse {
    display: flex;
    gap: 80px;
    padding: 100px 60px;
    background: var(--light-color);
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.link-arrow {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    position: relative;
    padding-right: 25px;
}

.link-arrow::after {
    content: "→";
    position: absolute;
    right: 0;
    transition: right 0.3s;
}

.link-arrow:hover::after {
    right: -5px;
}

.value-cards {
    padding: 100px 20px;
    background: #ffffff;
}

.value-cards h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 60px;
    color: var(--dark-color);
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: var(--light-color);
    border-radius: 8px;
    transition: transform 0.3s;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.card-icon img {
    width: 100%;
    height: 100%;
}

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

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

.testimonial-flow {
    padding: 80px 20px;
    background: var(--primary-color);
    color: white;
}

.testimonial-flow blockquote {
    font-size: 1.4rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-flow cite {
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
}

.services-pricing {
    padding: 100px 20px;
    background: #ffffff;
}

.services-pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-color);
}

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

.service-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    padding: 35px 30px;
    background: var(--light-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-item p {
    flex: 1;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.btn-select {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: var(--primary-color);
}

.btn-select.selected {
    background: var(--success-color);
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.form-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group input[readonly] {
    background: var(--light-color);
    cursor: not-allowed;
}

.btn-submit {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--primary-color);
}

.btn-submit:disabled {
    background: var(--border-color);
    cursor: not-allowed;
}

.trust-block {
    padding: 80px 20px;
    background: #ffffff;
}

.trust-block h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.trust-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--secondary-color);
}

.btn-primary-large {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 18px 45px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.btn-primary-large:hover {
    transform: scale(1.05);
}

.main-footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

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

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: white;
    padding: 25px 20px;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    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;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: var(--success-color);
    color: white;
}

.btn-accept:hover {
    background: #38a169;
}

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

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

.page-header {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.page-header h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    max-width: 900px;
}

.header-lead {
    font-size: 1.2rem;
    margin-top: 20px;
    max-width: 700px;
    opacity: 0.95;
}

.about-intro {
    padding: 100px 20px;
    background: #ffffff;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

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

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.philosophy-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.philosophy-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.philosophy-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-split {
    display: flex;
    flex-wrap: wrap;
}

.value-block {
    flex: 1;
    min-width: 300px;
    padding: 60px 40px;
    background: var(--primary-color);
    color: white;
}

.value-block:nth-child(2) {
    background: var(--secondary-color);
}

.value-block:nth-child(3) {
    background: var(--accent-color);
}

.value-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.value-content p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.team-section {
    padding: 100px 20px;
    background: #ffffff;
}

.team-section h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    text-align: center;
}

.client-types {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.client-card {
    flex: 1;
    min-width: 280px;
    padding: 35px 30px;
    background: var(--light-color);
    border-left: 4px solid var(--secondary-color);
}

.client-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.client-card p {
    line-height: 1.7;
}

.credentials-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.credentials-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.credentials-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-about {
    padding: 100px 20px;
    background: var(--dark-color);
    color: white;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

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

.services-detailed {
    padding: 60px 20px 100px;
    background: #ffffff;
}

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

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-includes {
    margin: 25px 0 30px 0;
    padding-left: 20px;
}

.service-includes li {
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.btn-service {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-service:hover {
    background: var(--primary-color);
}

.service-cta {
    padding: 80px 20px;
    background: var(--light-color);
    text-align: center;
}

.service-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-cta p {
    font-size: 1.15rem;
    margin-bottom: 35px;
}

.contact-section {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    line-height: 1.7;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: #718096;
    margin-top: 8px;
}

.contact-note-block {
    margin-top: 40px;
    padding: 25px;
    background: var(--light-color);
    border-radius: 8px;
}

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

.contact-note-block p {
    line-height: 1.7;
}

.contact-note-block a {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    background: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.faq-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
    background: #ffffff;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.thanks-content .lead {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-details {
    background: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-details h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.thanks-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.next-steps {
    text-align: left;
    max-width: 700px;
    margin: 0 auto 50px;
    padding-left: 20px;
}

.next-steps li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 13px 33px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

.legal-page {
    padding: 60px 20px 100px;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.updated {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 25px;
}

.legal-page li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-page a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

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

.cookie-table th {
    background: var(--light-color);
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        min-height: 400px;
    }

    .split-reverse {
        flex-direction: column;
        gap: 40px;
        padding: 60px 30px;
    }

    .container-split {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-intro {
        padding: 60px 20px;
    }

    .values-split {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
    }

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

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

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

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

    .hero-left {
        padding: 60px 30px;
    }
}
