* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-actions {
    display: flex;
    gap: 10px;
}

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

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

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

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

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

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

.header-left {
    flex: 1;
}

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

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

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

.hero-left {
    flex: 1;
    background-color: #f8f9fa;
}

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

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

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

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

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

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

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

.intro-content-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

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

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

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

.services-overview {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-header-center p {
    font-size: 18px;
    color: #555555;
    line-height: 1.7;
}

.service-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-left,
.service-card-right {
    display: flex;
    min-height: 400px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.service-card-left img,
.service-card-right img {
    width: 50%;
    object-fit: cover;
}

.service-content {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

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

.price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
    display: block;
}

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

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

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

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

.trust-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}

.trust-point {
    margin-bottom: 32px;
}

.trust-point h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #3498db;
    font-weight: 600;
}

.trust-point p {
    font-size: 16px;
    line-height: 1.7;
    color: #ecf0f1;
}

.trust-right {
    flex: 1;
    background-color: #e8eaed;
}

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

.form-section-split {
    display: flex;
    min-height: 700px;
}

.form-container-left {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container-left h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-container-left > p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 40px;
}

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

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    padding: 16px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
    background-color: #ffffff;
}

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

.inquiry-form textarea {
    resize: vertical;
}

.submit-btn {
    padding: 16px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.form-visual-right {
    flex: 1;
    background-color: #e8eaed;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background-color: #f1f3f5;
}

.disclaimer-text {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.8;
    color: #666666;
    text-align: center;
}

.footer-split {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 12px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    font-size: 13px;
    color: #7f8c8d;
}

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

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

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

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

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

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

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

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

.about-text-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-text-right p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.about-visual-left {
    flex: 1;
    background-color: #e8eaed;
}

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

.values-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.values-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 40px;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
}

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

.value-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
}

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

.team-image-left {
    flex: 1;
    background-color: #e8eaed;
}

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

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

.team-content-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

.cta-about h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-hero p {
    font-size: 18px;
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
}

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

.service-detail-split {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    min-height: 500px;
}

.service-info-left,
.service-info-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

.service-info-left p,
.service-info-right p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 24px;
}

.service-info-left ul,
.service-info-right ul {
    margin-bottom: 28px;
    padding-left: 20px;
}

.service-info-left li,
.service-info-right li {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 10px;
}

.pricing-display {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.service-image-left,
.service-image-right {
    flex: 1;
    background-color: #e8eaed;
}

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

.service-inquiry-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.inquiry-container-center h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
}

.inquiry-container-center > p {
    font-size: 16px;
    color: #555555;
    text-align: center;
    margin-bottom: 40px;
}

.contact-hero {
    padding: 100px 40px 60px;
    text-align: center;
    background-color: #2c3e50;
    color: #ffffff;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 18px;
    color: #ecf0f1;
}

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

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

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

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #3498db;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
}

.contact-note {
    margin-top: 40px;
    padding: 24px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.contact-note p {
    font-size: 14px;
    line-height: 1.8;
    color: #555555;
    margin: 0;
}

.contact-image-right {
    flex: 1;
    background-color: #e8eaed;
}

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

.contact-approach {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.contact-approach h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.approach-step {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 40px;
    background-color: #ffffff;
}

.approach-step h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #3498db;
    font-weight: 700;
}

.approach-step p {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
}

.location-context {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

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

.context-text-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.context-text-right p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.context-image-left {
    flex: 1;
    background-color: #e8eaed;
}

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

.thanks-container {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

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

.thanks-content > p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 40px;
}

.service-confirmation {
    padding: 24px;
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
    margin-bottom: 60px;
    font-size: 16px;
    color: #2c3e50;
}

.next-steps {
    margin-bottom: 60px;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
}

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

.step-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #3498db;
    font-weight: 600;
}

.step-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

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

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

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
}

.last-updated {
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 60px;
}

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

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

.legal-content h3 {
    font-size: 20px;
    margin: 30px 0 16px;
    color: #2c3e50;
    font-weight: 600;
}

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

.legal-content ul {
    margin: 16px 0 24px 20px;
}

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

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

.cookie-table thead {
    background-color: #f8f9fa;
}

.cookie-table th,
.cookie-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
}

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

.cookie-table td {
    color: #555555;
}

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

    .header-right {
        flex-direction: column;
        gap: 15px;
    }

    .hero-split,
    .intro-split,
    .trust-split,
    .form-section-split,
    .page-hero-split,
    .about-content-split,
    .team-split,
    .service-detail-split,
    .contact-split,
    .context-split {
        flex-direction: column;
    }

    .service-card-left,
    .service-card-right {
        flex-direction: column;
    }

    .service-card-left img,
    .service-card-right img,
    .service-content {
        width: 100%;
    }

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

    .section-header-center h2,
    .values-section h2,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 32px;
    }

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

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

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