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

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

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

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

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #2c3e50;
}

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

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: #f8f9fa;
}

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

.hero-content h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a2530;
    font-weight: 700;
}

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

.hero-right {
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background: #1a2530;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2c3e50;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2c3e50;
    transition: all 0.2s;
    cursor: pointer;
}

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

.btn-full {
    width: 100%;
}

.intro-section {
    padding: 80px 24px;
    text-align: center;
}

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

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5d6b;
}

.services-preview {
    padding: 100px 24px;
    background: #fafbfc;
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a2530;
}

.split-card {
    display: flex;
    margin-bottom: 60px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.split-card-reverse {
    flex-direction: row-reverse;
}

.split-card-content,
.split-card-image {
    flex: 1;
}

.split-card-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-badge {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #3498db;
    font-weight: 700;
    margin-bottom: 16px;
}

.split-card-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a2530;
}

.split-card-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5d6b;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
}

.split-card-image {
    position: relative;
    overflow: hidden;
}

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

.values-section {
    padding: 80px 24px;
}

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

.value-item {
    flex: 1;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a2530;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5d6b;
}

.cta-form-section {
    padding: 100px 24px;
    background: #2c3e50;
    color: #ffffff;
}

.form-wrapper-split {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.form-intro,
.form-container {
    flex: 1;
}

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

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #e0e6ed;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.trust-section {
    padding: 80px 24px;
    background: #f8f9fa;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.main-footer {
    background: #1a2530;
    color: #ffffff;
    padding: 60px 24px 20px;
}

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

.footer-col {
    flex: 1;
}

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

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #b0bac5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #8a95a1;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #2c3e50;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-accept {
    background: #2c3e50;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1a2530;
}

.btn-reject {
    background: transparent;
    color: #2c3e50;
    border: 1px solid #d0d7de;
}

.btn-reject:hover {
    background: #f8f9fa;
}

.page-header {
    background: #f8f9fa;
    padding: 80px 24px;
    text-align: center;
}

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

.page-subtitle {
    font-size: 20px;
    color: #4a5d6b;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 80px 24px;
}

.service-detail-card {
    display: flex;
    margin-bottom: 100px;
}

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

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

.service-detail-left {
    padding: 60px;
}

.service-category {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #3498db;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-detail-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a2530;
}

.service-detail-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5d6b;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #4a5d6b;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

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

.price-label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7f8c8d;
    margin-bottom: 8px;
}

.price-amount {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.price-detail {
    display: block;
    font-size: 14px;
    color: #7f8c8d;
}

.service-detail-right {
    position: relative;
    overflow: hidden;
}

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

.cta-services {
    padding: 80px 24px;
    background: #f8f9fa;
    text-align: center;
}

.cta-services h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a2530;
}

.cta-services p {
    font-size: 18px;
    color: #4a5d6b;
    margin-bottom: 32px;
}

.about-intro-split {
    padding: 80px 24px;
}

.about-split-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text-side,
.about-image-side {
    flex: 1;
}

.about-text-side h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a2530;
}

.about-text-side p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5d6b;
    margin-bottom: 20px;
}

.about-image-side {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

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

.philosophy-section {
    padding: 80px 24px;
    background: #f8f9fa;
}

.philosophy-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a2530;
    text-align: center;
}

.lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5d6b;
    text-align: center;
    margin-bottom: 60px;
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.principle-item h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #1a2530;
}

.principle-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5d6b;
}

.team-approach {
    padding: 80px 24px;
}

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

.approach-card {
    flex: 1 1 calc(50% - 15px);
    background: #f8f9fa;
    padding: 36px;
    border-radius: 8px;
}

.approach-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a2530;
}

.approach-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5d6b;
}

.values-statement {
    padding: 80px 24px;
    background: #2c3e50;
}

.statement-quote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.statement-quote p {
    font-size: 26px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
}

.cta-about {
    padding: 80px 24px;
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a2530;
}

.cta-about p {
    font-size: 18px;
    color: #4a5d6b;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    padding: 80px 24px;
}

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

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

.contact-info-side h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a2530;
}

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

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

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5d6b;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.hours-note {
    margin-top: 12px;
    font-size: 14px;
    color: #7f8c8d;
}

.contact-cta-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-cta-box h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a2530;
}

.contact-cta-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5d6b;
    margin-bottom: 24px;
}

.contact-additional {
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.contact-additional h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a2530;
}

.contact-additional p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5d6b;
}

.thanks-section {
    padding: 120px 24px;
    text-align: center;
}

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

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

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

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

.thanks-details {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-next {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a2530;
}

.next-steps {
    list-style: none;
}

.next-steps li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #4a5d6b;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

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

.legal-page {
    padding: 60px 24px;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5d6b;
    margin-bottom: 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a2530;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a2530;
}

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

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

.legal-page ul {
    margin: 16px 0 16px 30px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5d6b;
    margin-bottom: 8px;
}

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

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

.legal-update {
    margin-top: 40px;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid #e0e0e0;
        padding: 20px;
        gap: 16px;
    }

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

    .mobile-toggle {
        display: block;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

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

    .hero-right {
        height: 400px;
    }

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

    .split-card-content {
        padding: 30px;
    }

    .split-card-content h3 {
        font-size: 26px;
    }

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

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

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

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

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

    .service-detail-left {
        padding: 30px;
    }

    .service-detail-right {
        height: 400px;
    }

    .about-split-wrapper {
        flex-direction: column;
    }

    .about-image-side {
        height: 350px;
    }

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

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

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

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

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

    .section-title-center {
        font-size: 32px;
    }
}