* {
    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-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

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

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

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

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.hero-visual {
    flex: 1;
    background-color: #e8edf2;
    overflow: hidden;
}

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

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

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

.insight-section {
    display: flex;
    padding: 100px 60px;
}

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

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

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

.insight-visual {
    flex: 1;
    background-color: #e8edf2;
}

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

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

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

.services-intro p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.service-cards {
    background-color: #f8f9fa;
    padding: 0 0 60px;
}

.service-card {
    display: flex;
    margin: 40px 60px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.card-image {
    flex: 1;
    background-color: #e8edf2;
    min-height: 350px;
}

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

.card-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

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

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

.trust-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

.form-container {
    flex: 1;
    padding-right: 60px;
}

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

.form-container p {
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

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

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

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

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

.cta-submit {
    padding: 16px 40px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.disclaimer-section {
    padding: 50px 60px;
    background-color: #ecf0f1;
    text-align: center;
}

.disclaimer-section p {
    font-size: 14px;
    color: #7f8c8d;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

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

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

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 25px 40px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

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

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

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

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

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

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

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

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

.page-hero {
    display: flex;
    padding: 100px 60px;
    background-color: #f8f9fa;
}

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

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

.hero-text p {
    font-size: 18px;
    color: #555;
}

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

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

.story-section {
    display: flex;
    padding: 100px 60px;
}

.story-left {
    flex: 1;
    background-color: #e8edf2;
    margin-right: 60px;
}

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

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

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

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

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

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

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 8px;
}

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

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

.approach-section {
    display: flex;
    padding: 100px 60px;
}

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

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

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

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

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

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

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

.services-header h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.services-detail {
    padding: 40px 0 60px;
    background-color: #ffffff;
}

.service-detail-item {
    display: flex;
    margin: 60px 60px;
    gap: 60px;
}

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

.service-detail-visual {
    flex: 1;
    background-color: #e8edf2;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.service-detail-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

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

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

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

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

.cta-services p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

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

.contact-hero h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-hero p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.contact-split {
    display: flex;
    padding: 60px 60px 100px;
    background-color: #f8f9fa;
}

.contact-info {
    flex: 1;
    padding-right: 60px;
}

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

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.contact-email {
    color: #2c3e50;
    font-weight: 600;
}

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

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

.contact-approach {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

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

.approach-step {
    flex: 1;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

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

.thanks-container {
    display: flex;
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.thanks-content {
    flex: 1;
    padding-right: 60px;
}

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

.thanks-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.thanks-service {
    padding: 20px;
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
    margin-bottom: 40px;
    font-size: 17px;
    color: #2c3e50;
}

.thanks-next {
    margin-bottom: 40px;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-next ol {
    padding-left: 25px;
}

.thanks-next ol li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

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

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

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

.legal-intro {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

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

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

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

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

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

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

.legal-content a:hover {
    text-decoration: underline;
}

.legal-updated {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

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

    .hero-split,
    .insight-section,
    .form-section,
    .page-hero,
    .story-section,
    .approach-section,
    .service-card,
    .service-detail-item,
    .contact-split,
    .thanks-container {
        flex-direction: column;
    }

    .hero-content,
    .insight-content,
    .form-container,
    .story-right,
    .approach-content,
    .card-content,
    .contact-info,
    .thanks-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .story-left {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .process-steps,
    .approach-steps {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-content p {
        margin-right: 0;
    }
}