* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-main {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.nav-main a:hover {
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 12px;
    color: #888;
    padding: 6px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin-left: 16px;
}

.hero-split {
    background-color: #ffffff;
    padding: 80px 0;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

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

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

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

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

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

.intro-split {
    padding: 100px 0;
    background-color: #f5f5f5;
}

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

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

.split-image {
    flex: 1;
    background-color: #d8d8d8;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 28px;
    font-weight: 400;
}

.split-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.split-text ul {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #444;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.services-presentation {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-wrapper {
    flex: 1;
    background-color: #e0e0e0;
}

.service-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.service-content {
    flex: 1;
}

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

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

.service-price {
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 700;
    margin: 24px 0;
}

.btn-service {
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials-flow {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.testimonials-flow h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.testimonial-item {
    margin-bottom: 40px;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
}

.testimonial-author {
    font-size: 15px;
    color: #777;
    text-align: right;
}

.why-choose-split {
    padding: 100px 0;
    background-color: #ffffff;
}

.form-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.form-section h2 {
    font-size: 38px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 400;
}

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

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

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

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

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #1a1a1a;
    padding: 24px;
    z-index: 10000;
    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;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #333;
}

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

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

.btn-cookie-accept {
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background-color: #e0e0e0;
    color: #333;
}

.btn-cookie-reject:hover {
    background-color: #d0d0d0;
}

.page-header {
    background-color: #f5f5f5;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: #666;
}

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

.service-detail-card {
    margin-bottom: 80px;
}

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

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

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

.service-detail-content h2 {
    font-size: 34px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 22px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 28px 0 12px;
}

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

.service-detail-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.service-detail-content ul li {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-price {
    margin: 32px 0;
    padding: 24px;
    background-color: #f5f5f5;
    border-left: 4px solid #1a1a1a;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.price-value {
    font-size: 36px;
    color: #1a1a1a;
    font-weight: 700;
}

.cta-services {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

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

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

.about-intro-split {
    padding: 60px 0;
}

.values-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

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

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

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

.approach-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.approach-image {
    flex: 1;
    background-color: #e0e0e0;
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
}

.approach-text {
    flex: 1;
}

.approach-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.expertise-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.expertise-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

.cta-about {
    padding: 80px 0;
    text-align: center;
}

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

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

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

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

.contact-info {
    flex: 1;
}

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

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

.contact-detail h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

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

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

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.thanks-content {
    text-align: center;
}

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

.thanks-message {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
}

.thanks-service-info {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 4px;
    margin: 32px 0;
    font-size: 16px;
    color: #333;
}

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

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

.legal-content h2 {
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 32px 0 16px;
}

.legal-content h4 {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 24px 0 12px;
}

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

.legal-content ul {
    margin: 16px 0;
    padding-left: 28px;
}

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

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

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

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

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

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

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

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

    .section-title-center {
        font-size: 32px;
    }

    .nav-main {
        flex-direction: column;
        gap: 12px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

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

    .value-card {
        flex: 1 1 100%;
    }

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