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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8ecef;
}

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

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

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

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

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

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

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

.hero-left p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #4a5568;
}

.hero-right {
    flex: 1;
    background-color: #e8ecef;
}

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

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

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

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

.intro-narrow {
    flex: 1.2;
}

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

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

.intro-image {
    flex: 0.8;
    background-color: #e8ecef;
}

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

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

.services-asymmetric h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a252f;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 30px);
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
    background-color: #e8ecef;
}

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

.service-card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

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

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

.approach-split {
    display: flex;
    background-color: #2c3e50;
    color: #ffffff;
}

.approach-content {
    flex: 1;
    padding: 80px 60px;
}

.approach-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
}

.approach-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.approach-visual {
    flex: 1;
    background-color: #1a252f;
}

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

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

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a252f;
}

.form-container > p {
    text-align: center;
    margin-bottom: 40px;
    color: #4a5568;
    font-size: 18px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.footer-split {
    display: flex;
    padding: 60px 60px 40px;
    background-color: #1a252f;
    color: #ffffff;
    gap: 60px;
}

.footer-left {
    flex: 1.5;
}

.footer-left p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.disclaimer {
    font-size: 14px;
    color: #cbd5e0;
    margin-top: 24px;
}

.footer-right {
    flex: 1;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    display: none;
    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;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

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

.cookie-accept:hover {
    opacity: 0.9;
}

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

.cookie-reject:hover {
    opacity: 0.9;
}

.about-hero {
    padding: 100px 60px 60px;
    background-color: #f8f9fa;
}

.about-hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a252f;
}

.about-hero-content p {
    font-size: 22px;
    color: #4a5568;
}

.about-story {
    display: flex;
    min-height: 500px;
}

.story-left {
    flex: 1;
    background-color: #e8ecef;
}

.story-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.story-right p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.8;
}

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

.team-section h2 {
    font-size: 42px;
    margin-bottom: 32px;
    text-align: center;
    color: #1a252f;
}

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

.team-content p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.team-image {
    margin-top: 40px;
    background-color: #e8ecef;
}

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

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

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

.values-content h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a252f;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 32px;
    position: relative;
    color: #4a5568;
    line-height: 1.8;
}

.values-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.values-visual {
    flex: 1;
    background-color: #e8ecef;
}

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

.cta-about {
    padding: 80px 60px;
    text-align: center;
    background-color: #2c3e50;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 20px;
    margin-bottom: 32px;
}

.services-hero {
    padding: 100px 60px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a252f;
}

.services-hero p {
    font-size: 22px;
    color: #4a5568;
}

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

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

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

.service-detail-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.service-detail:nth-child(even) .service-detail-content {
    background-color: #f8f9fa;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.service-detail-content p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 24px 0;
}

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

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

.contact-hero {
    padding: 100px 60px 60px;
    background-color: #f8f9fa;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a252f;
}

.contact-hero p {
    font-size: 22px;
    color: #4a5568;
}

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

.contact-info {
    flex: 1;
}

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

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

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

.contact-block p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
}

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

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

.contact-approach {
    padding: 80px 60px;
    background-color: #f8f9fa;
    max-width: 900px;
    margin: 0 auto;
}

.contact-approach h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a252f;
}

.contact-approach p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.thanks-section {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-content p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.thanks-content a {
    color: #3498db;
}

.thanks-visual {
    flex: 1;
    background-color: #e8ecef;
}

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

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

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

.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: #4a5568;
}

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

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

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

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

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

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

.cookie-table td {
    color: #4a5568;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .header-right {
        gap: 20px;
    }

    .hero-split,
    .intro-offset,
    .approach-split,
    .about-story,
    .values-split,
    .service-detail,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

    .hero-left,
    .approach-content,
    .story-right,
    .values-content,
    .service-detail-content,
    .contact-info,
    .thanks-content {
        padding: 40px 30px;
    }

    .services-asymmetric,
    .form-section,
    .team-section,
    .contact-approach {
        padding: 60px 30px;
    }

    .service-card {
        flex: 0 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-split {
        flex-direction: column;
        gap: 30px;
        padding: 40px 30px;
    }
}