* {
    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-color: #ffffff;
}

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.nav-left .logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

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

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

.hero-content {
    flex: 1;
    padding: 60px 8%;
    background-color: #f8f9fa;
}

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

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

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

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

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

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.intro-offset {
    display: flex;
    padding: 80px 8%;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.intro-visual {
    flex: 1;
    background-color: #d4e4f0;
}

.intro-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.services-preview h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: #2c3e50;
}

.services-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s, transform 0.3s;
}

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

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

.service-card h3 {
    font-size: 22px;
    padding: 20px 24px 12px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 24px 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.service-card .price {
    display: block;
    padding: 12px 24px 20px;
    font-size: 20px;
    font-weight: 700;
    color: #3498db;
}

.link-secondary {
    display: block;
    text-align: center;
    margin-top: 24px;
    color: #3498db;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: color 0.3s;
}

.link-secondary:hover {
    color: #2980b9;
}

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

.process-visual {
    flex: 1;
    background-color: #d4e4f0;
    overflow: hidden;
}

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

.process-content {
    flex: 1;
    padding: 60px 8%;
    background-color: #ffffff;
}

.process-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    min-width: 40px;
}

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

.testimonials-inline {
    padding: 80px 8%;
    background-color: #f8f9fa;
}

.testimonials-inline h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: #2c3e50;
}

.testimonial {
    background-color: #ffffff;
    padding: 32px 40px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    display: block;
    font-size: 15px;
    color: #888;
    font-style: normal;
}

.form-section {
    padding: 80px 8%;
    background-color: #ffffff;
}

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

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

.form-container > p {
    font-size: 16px;
    margin-bottom: 32px;
    color: #666;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
select {
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus {
    outline: none;
    border-color: #3498db;
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 48px 8% 24px;
}

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

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

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

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

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding-top: 24px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

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

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

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

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

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

.btn-accept:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #6c7a7b;
    transform: translateY(-2px);
}

.page-hero {
    display: flex;
    min-height: 500px;
}

.page-hero-content {
    flex: 1;
    padding: 80px 8%;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.page-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.page-hero-image {
    flex: 1;
    background-color: #d4e4f0;
    overflow: hidden;
}

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

.about-story {
    padding: 80px 8%;
    background-color: #ffffff;
}

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

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.team-visual {
    background-color: #d4e4f0;
}

.team-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.values-section {
    padding: 80px 8%;
    background-color: #f8f9fa;
}

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

.values-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

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

.about-cta {
    padding: 80px 8%;
    background-color: #ffffff;
    text-align: center;
}

.about-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.about-cta p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #666;
}

.page-intro {
    padding: 80px 8%;
    background-color: #f8f9fa;
    text-align: center;
}

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

.page-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
}

.service-detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    background-color: #d4e4f0;
}

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 24px;
}

.price-label {
    font-size: 15px;
    color: #666;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
}

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

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.services-cta p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #666;
}

.contact-page {
    padding: 80px 8%;
    background-color: #ffffff;
}

.contact-page h1 {
    font-size: 48px;
    margin-bottom: 48px;
    text-align: center;
    color: #2c3e50;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c3e50;
}

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

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

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

.contact-visual {
    flex: 1;
    background-color: #d4e4f0;
}

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

.contact-note {
    padding: 80px 8%;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-note h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-note p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #666;
}

.thanks-page {
    padding: 120px 8%;
    background-color: #f8f9fa;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.legal-page {
    padding: 80px 8%;
    background-color: #ffffff;
}

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

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

.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: #2c3e50;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
}

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

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

.cookies-table td {
    font-size: 15px;
    color: #555;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-offset,
    .process-split,
    .service-detail,
    .contact-split,
    .page-hero {
        flex-direction: column;
    }

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

    .hero-content,
    .process-content {
        padding: 40px 6%;
    }

    .hero-content h1,
    .page-hero-content h1,
    .thanks-content h1,
    .legal-page h1,
    .page-intro h1,
    .contact-page h1 {
        font-size: 36px;
    }

    .split-nav {
        padding: 16px 6%;
    }

    .nav-right {
        gap: 16px;
    }

    .services-cards {
        flex-direction: column;
        align-items: center;
    }

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