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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.cookie-content a {
    color: #63b3ed;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #48bb78;
    color: #ffffff;
}

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

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

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

.split-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
}

.header-right {
    display: flex;
    gap: 30px;
}

.header-right a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-right a:hover {
    color: #2b6cb0;
}

.hero-split {
    display: flex;
    flex-direction: row;
    min-height: 600px;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 60px 80px;
    background-color: #f7fafc;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-intro {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
}

.stats-section {
    padding: 60px 80px;
    background-color: #ffffff;
}

.stats-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #2b6cb0;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #718096;
}

.intro-asymmetric {
    display: flex;
    flex-direction: row;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
    background-color: #edf2f7;
}

.intro-content-offset {
    flex: 1.2;
    padding-left: 40px;
}

.intro-content-offset h2 {
    font-size: 38px;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-content-offset p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
}

.intro-image-offset {
    flex: 0.8;
}

.intro-image-offset img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 28px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: #4a5568;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
    font-size: 20px;
}

.cta-inline {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #2b6cb0;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: #2c5282;
    border-bottom-color: #2c5282;
}

.why-visual {
    flex: 0.9;
}

.why-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-section {
    padding: 80px 40px;
    background-color: #f7fafc;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 16px;
}

.services-intro {
    font-size: 18px;
    color: #718096;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 15px;
    color: #718096;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2c5282;
}

.form-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 60px;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 38px;
    color: #1a202c;
    margin-bottom: 20px;
}

.form-left p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 32px;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    font-size: 16px;
    color: #48bb78;
    font-weight: 600;
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    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: #2b6cb0;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #2c5282;
}

.trust-section {
    padding: 60px 40px;
    background-color: #edf2f7;
    text-align: center;
}

.trust-section h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 40px;
}

.logos-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-item {
    padding: 20px 40px;
    background-color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    color: #4a5568;
    font-size: 16px;
}

.final-cta {
    padding: 100px 40px;
    background-color: #2b6cb0;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
}

.final-cta-content p {
    font-size: 20px;
    color: #e2e8f0;
    margin-bottom: 32px;
}

.cta-large {
    display: inline-block;
    padding: 18px 40px;
    background-color: #ffffff;
    color: #2b6cb0;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

.footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
}

.footer-bottom p {
    font-size: 14px;
    color: #718096;
}

.page-hero {
    padding: 80px 40px 60px;
    background-color: #f7fafc;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #1a202c;
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 20px;
    color: #718096;
}

.about-story {
    padding: 80px 40px;
    background-color: #ffffff;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 24px;
}

.story-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
}

.values-section {
    padding: 80px 40px;
    background-color: #edf2f7;
    text-align: center;
}

.values-section h2 {
    font-size: 38px;
    color: #1a202c;
    margin-bottom: 50px;
}

.values-grid {
    display: flex;
    flex-direction: row;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: left;
}

.value-card h3 {
    font-size: 24px;
    color: #1a202c;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 16px;
    color: #718096;
    line-height: 1.6;
}

.team-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-intro h2 {
    font-size: 38px;
    color: #1a202c;
    margin-bottom: 20px;
}

.team-intro p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

.team-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-stat {
    text-align: center;
}

.stat-big {
    font-size: 64px;
    font-weight: 800;
    color: #2b6cb0;
    margin-bottom: 12px;
}

.team-stat p {
    font-size: 16px;
    color: #718096;
}

.approach-section {
    padding: 80px 40px;
    background-color: #f7fafc;
}

.approach-section h2 {
    font-size: 38px;
    color: #1a202c;
    text-align: center;
    margin-bottom: 60px;
}

.approach-steps {
    display: flex;
    flex-direction: row;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
}

.step-number {
    font-size: 32px;
    font-weight: 800;
    color: #e2e8f0;
    margin-bottom: 16px;
}

.step-item h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 16px;
}

.step-item p {
    font-size: 15px;
    color: #718096;
    line-height: 1.6;
}

.mission-section {
    padding: 80px 40px;
    background-color: #2b6cb0;
}

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

.mission-content h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 28px;
}

.mission-content p {
    font-size: 18px;
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-section {
    padding: 80px 40px;
    background-color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 32px;
}

.services-detailed {
    padding: 60px 40px;
    background-color: #ffffff;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    background-color: #f7fafc;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.service-detail-right {
    flex: 1;
    padding: 40px;
}

.service-detail-right h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 20px;
}

.service-detail-right p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-detail-right ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.service-detail-right li {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 8px;
}

.service-detail-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 16px;
    color: #718096;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2b6cb0;
}

.btn-service-cta {
    display: inline-block;
    padding: 14px 28px;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service-cta:hover {
    background-color: #2c5282;
}

.pricing-note {
    padding: 60px 40px;
    background-color: #edf2f7;
}

.note-container {
    max-width: 800px;
    margin: 0 auto;
}

.note-container h3 {
    font-size: 28px;
    color: #1a202c;
    margin-bottom: 20px;
}

.note-container p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
}

.contact-split {
    padding: 60px 40px;
    background-color: #ffffff;
}

.contact-split {
    display: flex;
    flex-direction: row;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-block {
    margin-bottom: 40px;
}

.contact-block h2 {
    font-size: 24px;
    color: #1a202c;
    margin-bottom: 16px;
}

.contact-detail {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
}

.contact-detail a {
    color: #2b6cb0;
    text-decoration: none;
}

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

.contact-map-side {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-additional {
    padding: 60px 40px;
    background-color: #f7fafc;
    text-align: center;
}

.additional-content {
    max-width: 700px;
    margin: 0 auto;
}

.additional-content h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 20px;
}

.additional-content p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 32px;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #f7fafc;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #48bb78;
    color: #ffffff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #edf2f7;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #2d3748;
}

.thanks-next-steps {
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    color: #1a202c;
    margin-bottom: 32px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    width: 40px;
    height: 40px;
    background-color: #2b6cb0;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.step p {
    font-size: 16px;
    color: #4a5568;
    padding-top: 8px;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2c5282;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background-color: transparent;
    color: #2b6cb0;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #2b6cb0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2b6cb0;
    color: #ffffff;
}

.legal-page {
    padding: 60px 40px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 40px;
    color: #1a202c;
    margin-bottom: 12px;
}

.legal-date {
    font-size: 14px;
    color: #718096;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 26px;
    color: #1a202c;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-container h3 {
    font-size: 20px;
    color: #2d3748;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-container p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-container li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-container a {
    color: #2b6cb0;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .split-header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

    .hero-left h1 {
        font-size: 36px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .why-container {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .form-container {
        flex-direction: column;
    }

    .story-container {
        flex-direction: column;
    }

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

    .team-stats {
        flex-direction: column;
        gap: 30px;
    }

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

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
    }
}