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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    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;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.container-split-reverse {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    flex-direction: row-reverse;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-label {
    font-size: 11px;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    min-width: 300px;
}

.hero-right {
    flex: 1;
    position: relative;
    min-width: 300px;
    background: #dfe6e9;
}

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

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary-large {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #3498db;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #3498db;
    cursor: pointer;
    font-size: 18px;
}

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

.intro-offset {
    padding: 100px 0;
    background: #ffffff;
}

.intro-block {
    max-width: 700px;
    margin: 0 auto 0 60px;
}

.intro-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
}

.services-preview {
    padding: 120px 0;
    background: #f8f9fa;
}

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

.section-label {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #3498db;
    margin-bottom: 12px;
    font-weight: 600;
}

.section-header-left h2 {
    font-size: 42px;
    color: #2c3e50;
    line-height: 1.2;
}

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

.service-card-wide {
    flex: 1 1 100%;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    min-height: 320px;
}

.service-card-wide .service-image {
    flex: 1;
    min-width: 300px;
    background: #dfe6e9;
}

.service-card-wide .service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.service-image {
    position: relative;
    background: #dfe6e9;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.btn-service {
    background: #3498db;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 15px;
    width: 100%;
}

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

.btn-service-large {
    background: #3498db;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px;
    width: 100%;
}

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

.split-content {
    flex: 1;
    min-width: 300px;
}

.split-image {
    flex: 1;
    min-width: 300px;
    background: #dfe6e9;
}

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

.insight-section {
    padding: 100px 0;
    background: #ffffff;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.3;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

.testimonial-inline {
    padding: 80px 0;
    background: #ecf0f1;
}

.testimonial {
    border-left: 4px solid #3498db;
    padding-left: 32px;
    font-style: italic;
}

.testimonial p {
    font-size: 22px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 16px;
}

.testimonial cite {
    font-style: normal;
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 600;
}

.approach-section {
    padding: 100px 0;
    background: #ffffff;
}

.approach-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.approach-step {
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #ecf0f1;
    margin-bottom: 16px;
}

.approach-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.approach-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

.cta-section {
    padding: 100px 0;
    background: #2c3e50;
}

.cta-box {
    text-align: center;
    padding: 40px;
}

.cta-box h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

.footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 calc(25% - 30px);
    min-width: 200px;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

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

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

.footer-disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #95a5a6;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 24px;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.btn-cookie {
    background: #3498db;
    color: #ffffff;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-cookie-alt {
    background: transparent;
    color: #ffffff;
    padding: 10px 24px;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-alt:hover {
    background: #ffffff;
    color: #2c3e50;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 32px;
    font-weight: 700;
    color: #95a5a6;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #2c3e50;
}

.modal-content h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.page-header-offset {
    padding: 80px 0 40px;
    background: #f8f9fa;
}

.page-header-offset h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: #546e7a;
}

.about-story {
    padding: 100px 0;
    background: #ffffff;
}

.values-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.value-offset {
    margin-top: 40px;
}

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

.value-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
}

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

.team-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 40px;
}

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

.approach-details {
    padding: 100px 0;
    background: #f8f9fa;
}

.approach-split {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.approach-left {
    flex: 1.5;
    min-width: 300px;
}

.approach-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.approach-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

.approach-right {
    flex: 1;
    min-width: 300px;
}

.approach-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.approach-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.approach-box ul {
    list-style: none;
}

.approach-box li {
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
    color: #546e7a;
    line-height: 1.6;
}

.approach-box li:last-child {
    border-bottom: none;
}

.mission-section {
    padding: 100px 0;
    background: #ffffff;
}

.mission-box {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 8px;
    border-left: 6px solid #3498db;
}

.mission-box h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.mission-box p:last-child {
    margin-bottom: 0;
}

.page-header-visual {
    position: relative;
    min-height: 400px;
    background: #dfe6e9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 80px;
    border-radius: 8px;
    max-width: 700px;
}

.header-overlay h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

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

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-category {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #3498db;
    background: #ebf5fb;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

.service-pricing-box {
    margin: 30px 0;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 6px;
}

.price-main {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
}

.price-note {
    font-size: 15px;
    color: #7f8c8d;
}

.service-faq {
    padding: 100px 0;
    background: #f8f9fa;
}

.service-faq h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
}

.contact-hero {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.contact-info-side {
    flex: 1;
    min-width: 300px;
}

.contact-info-side h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.2;
}

.contact-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
}

.contact-note {
    padding: 20px;
    background: #ebf5fb;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.contact-note p {
    font-size: 15px;
    color: #2c3e50;
    margin: 0;
}

.contact-form-side {
    flex: 1;
    min-width: 300px;
}

.form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.map-section {
    padding: 100px 0;
    background: #ffffff;
}

.map-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
    background: #dfe6e9;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.9);
    padding: 30px;
    text-align: center;
}

.map-overlay p {
    color: #ffffff;
    font-size: 18px;
    margin: 0;
}

.thanks-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.thanks-icon {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 40px;
}

.service-confirmation {
    background: #ebf5fb;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 40px;
    font-size: 18px;
    color: #2c3e50;
}

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

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 220px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

.step-num {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 16px;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

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

.thanks-additional {
    background: #fff3cd;
    padding: 24px;
    border-radius: 6px;
    border-left: 4px solid #ffc107;
}

.thanks-additional h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.thanks-additional p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
    margin: 0;
}

.legal-page {
    padding: 80px 0;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-updated {
    font-size: 15px;
    color: #95a5a6;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content li {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 8px;
}

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

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

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

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

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

.cookie-table td {
    color: #546e7a;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

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

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

    .nav {
        width: 100%;
        justify-content: center;
    }

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

    .service-card-wide {
        flex-direction: column;
    }

    .approach-step {
        flex: 1 1 100%;
    }

    .value-offset {
        margin-top: 0;
    }

    .contact-layout {
        gap: 40px;
    }

    .header-overlay {
        padding: 40px 30px;
    }

    .header-overlay h1 {
        font-size: 36px;
    }
}