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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #1a2332;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

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

.nav-right a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.7;
    color: #ecf0f1;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    align-self: flex-start;
    transition: background-color 0.3s;
}

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

.hero-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

.intro-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    background-color: #ffffff;
}

.intro-text {
    flex: 1.5;
}

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

.intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

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

.stat-card {
    background-color: #f8f9fa;
    padding: 32px;
    border-left: 4px solid #3498db;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

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

.services-grid {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a2332;
}

.section-header-centered p {
    font-size: 18px;
    color: #7f8c8d;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 22px);
    min-width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.card-content {
    padding: 28px;
}

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

.card-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

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

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

.service-card.selected {
    border: 3px solid #27ae60;
}

.consultation-form {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a2332;
}

.form-intro p {
    font-size: 17px;
    color: #7f8c8d;
}

.selected-service-display {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.selected-service-display strong {
    color: #155724;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-note {
    text-align: center;
    font-size: 13px;
    color: #7f8c8d;
    margin-top: 16px;
}

.form-note a {
    color: #3498db;
    text-decoration: none;
}

.approach-split {
    display: flex;
    min-height: 500px;
    background-color: #f8f9fa;
}

.approach-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

.approach-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-content h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a2332;
}

.approach-content p {
    font-size: 17px;
    margin-bottom: 28px;
    line-height: 1.7;
    color: #555;
}

.approach-list {
    list-style: none;
    padding: 0;
}

.approach-list li {
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: #2c3e50;
}

.approach-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.disclaimer-section {
    padding: 60px 60px;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #856404;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #856404;
}

.footer {
    background-color: #1a2332;
    color: #ecf0f1;
    padding: 60px 60px 30px;
}

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px 60px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

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

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

.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 100px 60px;
    text-align: center;
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-story {
    padding: 100px 60px;
    display: flex;
    gap: 80px;
    background-color: #ffffff;
}

.story-content {
    flex: 1.5;
}

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

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

.story-values {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    background-color: #f8f9fa;
    padding: 24px;
    border-left: 4px solid #3498db;
}

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

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

.team-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.team-member {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.member-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.member-role {
    font-size: 14px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.member-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.philosophy-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.philosophy-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2332;
}

.philosophy-points {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.philosophy-point {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.philosophy-point h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.philosophy-point p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.cta-section {
    padding: 100px 60px;
    background-color: #3498db;
    text-align: center;
}

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

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

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

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a2332;
}

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

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #555;
}

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

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}

.service-detail-content ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 24px;
    line-height: 1;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
}

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

.process-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.process-steps {
    display: flex;
    gap: 32px;
    margin-top: 60px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #3498db;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

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

.contact-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a2332;
}

.contact-info > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #555;
}

.contact-item {
    margin-bottom: 32px;
}

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    padding: 40px;
    max-width: 500px;
}

.map-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a2332;
}

.map-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #555;
}

.map-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.map-content ul li {
    padding: 6px 0;
    font-size: 14px;
    color: #555;
}

.thanks-section {
    padding: 120px 60px;
    background-color: #ffffff;
    min-height: 500px;
}

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

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

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

.thanks-lead {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 60px;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

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

.thanks-next h3 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    gap: 32px;
    text-align: left;
}

.next-step {
    flex: 1;
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #3498db;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

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

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

.btn-primary {
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 16px 32px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.thanks-info {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #dee2e6;
}

.thanks-info p {
    font-size: 15px;
    color: #7f8c8d;
}

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

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a2332;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #555;
}

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

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

.legal-content strong {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-asymmetric,
    .approach-split,
    .about-story,
    .contact-grid {
        flex-direction: column;
    }

    .nav-split {
        flex-direction: column;
        gap: 20px;
    }

    .service-card {
        width: 100%;
    }

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

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

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

    .process-steps,
    .next-steps,
    .philosophy-points {
        flex-direction: column;
    }

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