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

.ad-disclosure {
    background: #f8f8f8;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
}

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

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

.nav-links a:hover {
    color: #2c3e50;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: #f9f9f9;
}

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

.hero-content p {
    font-size: 19px;
    color: #555;
    margin-bottom: 30px;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    background: #ddd;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: #2c3e50;
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #1a2633;
}

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

.cta-secondary:hover {
    background: #2c3e50;
    color: #fff;
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

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

.intro-image {
    flex: 1;
    background: #e8e8e8;
    overflow: hidden;
}

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

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

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

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

.services-preview {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

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

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

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

.section-header p {
    font-size: 18px;
    color: #666;
}

.service-split {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
}

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

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-image {
    flex: 1;
    background: #e8e8e8;
    overflow: hidden;
    min-height: 400px;
}

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

.select-service {
    background: #2c3e50;
    color: #fff;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background: #1a2633;
}

.contact-form-section {
    background: #f5f5f5;
    padding: 80px 30px;
    margin-top: 80px;
}

.form-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 80px;
}

.form-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.form-container {
    flex: 1;
    background: #fff;
    padding: 40px;
}

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

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #333;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: inherit;
}

.service-selection-info {
    background: #f9f9f9;
    padding: 16px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #666;
}

#displayService {
    font-weight: 600;
    color: #2c3e50;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: #bbb;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 24px;
    z-index: 1000;
}

.cookie-banner.active {
    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;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-hero {
    background: #f5f5f5;
    padding: 80px 30px;
    text-align: center;
}

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

.about-split,
.values-split,
.team-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 30px;
}

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

.about-content,
.values-content,
.team-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2,
.values-content h2,
.team-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-content p,
.values-content p,
.team-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
}

.about-image,
.values-image,
.team-image {
    flex: 1;
    background: #e8e8e8;
    overflow: hidden;
    min-height: 500px;
}

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

.services-detail {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 30px;
}

.service-item-split {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
}

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

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.service-details {
    background: #f9f9f9;
    padding: 24px;
    margin: 24px 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    font-weight: 600;
    color: #333;
}

.price-highlight {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.service-visual {
    flex: 1;
    background: #e8e8e8;
    overflow: hidden;
    min-height: 450px;
}

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

.cta-section {
    text-align: center;
    padding: 80px 30px;
    background: #f5f5f5;
    margin: 80px 0;
}

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

.cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 30px;
    gap: 80px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.info-block {
    margin-bottom: 30px;
}

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

.info-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.contact-note {
    font-size: 14px;
    color: #888;
    margin-top: 30px;
}

.contact-visual {
    flex: 1;
    background: #e8e8e8;
    overflow: hidden;
    min-height: 500px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thanks-container {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 30px;
    gap: 80px;
    min-height: 500px;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.thanks-visual {
    flex: 1;
    background: #e8e8e8;
    overflow: hidden;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

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

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

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 16px;
}

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

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

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

.cookie-table th {
    background: #f5f5f5;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-split,
    .form-split,
    .about-split,
    .values-split,
    .team-split,
    .contact-split,
    .thanks-container,
    .service-item-split {
        flex-direction: column;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

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

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