* {
    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: #333;
    background-color: #fff;
}

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

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

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-disclosure {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ad-label {
    font-size: 12px;
    color: #666;
    background-color: #f5f5f5;
    padding: 4px 12px;
    border-radius: 4px;
}

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

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

.nav-menu a:hover {
    color: #0066cc;
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.btn-hero {
    display: inline-block;
    padding: 16px 32px;
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-hero:hover {
    background-color: #0052a3;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.intro-section {
    padding: 80px 0;
}

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

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

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

.content-left h2,
.content-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.content-left p,
.content-right p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
}

.content-right img,
.content-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

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

.btn-card {
    display: inline-block;
    padding: 12px 24px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-card:hover {
    background-color: #333;
}

.cta-split {
    display: flex;
    min-height: 500px;
}

.cta-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f0f0f0;
}

.cta-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-text p {
    font-size: 18px;
    color: #555;
}

.cta-form-container {
    flex: 1;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    width: 100%;
    max-width: 450px;
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #fff;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #0066cc;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.values-list {
    list-style: none;
    margin-bottom: 24px;
}

.values-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 17px;
    color: #555;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.disclaimer-section {
    padding: 40px 0;
    background-color: #f5f5f5;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.8;
}

.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 15px;
}

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

.btn-primary {
    padding: 12px 24px;
    background-color: #0066cc;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #0052a3;
}

.btn-secondary {
    padding: 12px 24px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #1a1a1a;
}

.page-hero {
    padding: 80px 0 40px;
    background-color: #f8f9fa;
}

.page-hero h1 {
    font-size: 48px;
    color: #1a1a1a;
}

.about-intro,
.approach-section {
    padding: 80px 0;
}

.team-values {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-values h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
}

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

.value-item p {
    font-size: 16px;
    color: #555;
}

.cta-section {
    padding: 80px 0;
}

.cta-box {
    text-align: center;
    padding: 60px 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

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

.btn-cta {
    display: inline-block;
    padding: 16px 32px;
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-cta:hover {
    background-color: #0052a3;
}

.services-full {
    padding: 60px 0;
}

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

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

.service-content {
    flex: 1;
}

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

.service-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
}

.service-price-box {
    margin-top: 24px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.price-label {
    font-size: 16px;
    color: #666;
    margin-right: 12px;
}

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

.service-image {
    flex: 1;
}

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

.services-cta {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cta-split-service {
    display: flex;
    min-height: 500px;
}

.cta-text-service {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-text-service h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-text-service p {
    font-size: 18px;
    color: #555;
}

.cta-form-service {
    flex: 1;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.contact-info-box h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.contact-note p {
    font-size: 15px;
    color: #666;
}

.contact-image-box {
    flex: 1;
}

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

.map-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.map-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.map-placeholder p {
    font-size: 18px;
    color: #666;
}

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
}

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

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

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

.thanks-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.selected-service-info {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.selected-service-info p {
    font-size: 16px;
    color: #0066cc;
    font-weight: 600;
}

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

.legal-content {
    padding: 60px 0;
}

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

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

.legal-text h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #333;
}

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

.legal-text ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.legal-text ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #555;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero-split,
    .split-layout,
    .cta-split,
    .service-detail,
    .cta-split-service,
    .contact-layout {
        flex-direction: column;
    }

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

    .nav {
        flex-direction: column;
    }

    .nav-menu {
        flex-direction: column;
        gap: 16px;
    }

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

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