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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

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

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

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

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

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

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

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

.btn-reject:hover {
    background-color: #6c7a7b;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-main a {
    color: #34495e;
    font-weight: 500;
}

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

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 8px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
    margin-right: 10px;
}

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

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

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

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #34495e;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
    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;
    border-radius: 4px;
    font-weight: 600;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

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

.story-section {
    padding: 80px 40px;
}

.story-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: center;
}

.story-image {
    flex: 1;
    min-height: 400px;
}

.story-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.story-content {
    flex: 1;
    padding: 20px;
}

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

.story-content p {
    margin-bottom: 16px;
    font-size: 17px;
    color: #34495e;
}

.story-content a {
    color: #3498db;
    text-decoration: underline;
}

.insight-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.insight-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: center;
}

.insight-content {
    flex: 1;
    padding: 20px;
}

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

.insight-content p {
    margin-bottom: 16px;
    font-size: 17px;
    color: #34495e;
}

.insight-image {
    flex: 1;
    min-height: 400px;
}

.insight-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.trust-section {
    padding: 80px 40px;
}

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

.trust-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #2c3e50;
}

.testimonials-split {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 16px;
    color: #34495e;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #7f8c8d;
}

.services-reveal {
    background-color: #ecf0f1;
    padding: 80px 40px;
}

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

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

.services-intro p {
    font-size: 18px;
    color: #34495e;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 48%;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

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

.service-details {
    padding: 30px;
}

.service-details h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-details p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #34495e;
}

.service-price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

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

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

.form-section {
    padding: 80px 40px;
}

.form-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

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

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

.form-container {
    flex: 1;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    padding: 14px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

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

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    color: #856404;
    line-height: 1.6;
}

.footer-split {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

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

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

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

.footer-column p {
    font-size: 14px;
    color: #bdc3c7;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #bdc3c7;
    font-size: 14px;
}

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

.reference-item {
    font-size: 13px;
    margin-bottom: 8px;
}

.reference-item a {
    color: #3498db;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

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

.about-content-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 40px;
}

.about-left {
    flex: 1;
    padding-right: 40px;
}

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

.about-left p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #34495e;
}

.about-right {
    flex: 1;
}

.about-right img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

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

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    color: #34495e;
}

.approach-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 40px;
    align-items: center;
}

.approach-image {
    flex: 1;
    min-height: 400px;
}

.approach-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.approach-content {
    flex: 1;
}

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

.approach-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #34495e;
}

.services-detail-section {
    padding: 40px;
}

.service-detail-split,
.service-detail-split-reverse {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    gap: 40px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    min-height: 400px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

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

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

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
}

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

.service-detail-content ul li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #34495e;
}

.detail-price {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 24px;
}

.btn-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.contact-split-section {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-item p {
    font-size: 16px;
    color: #34495e;
}

.contact-map-placeholder {
    flex: 1;
    min-height: 400px;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

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

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

.thanks-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #34495e;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-details p {
    font-size: 16px;
}

.btn-back {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.legal-page {
    padding: 80px 40px;
    min-height: 60vh;
}

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

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

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

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

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

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

.legal-content ul li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #34495e;
}

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

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

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

    .hero-split,
    .story-split,
    .insight-split-reverse,
    .form-split,
    .about-content-split,
    .approach-split,
    .service-detail-split,
    .service-detail-split-reverse,
    .contact-split-section {
        flex-direction: column;
    }

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

    .service-card {
        max-width: 100%;
    }

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