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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 520px;
}

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-secondary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
}

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

.intro-section,
.testimonial-section,
.about-intro,
.team-section {
    padding: 100px 40px;
}

.split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.2;
}

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
}

.split-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.split-image img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 400px;
}

.benefits-grid {
    padding: 100px 40px;
    background: #f8f9fa;
}

.benefits-grid h2 {
    text-align: center;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
}

.testimonial-section {
    background: #ecf0f1;
}

blockquote {
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

blockquote p {
    font-size: 19px;
    font-style: italic;
    color: #34495e;
    margin-bottom: 15px;
    line-height: 1.6;
}

cite {
    font-size: 15px;
    font-style: normal;
    color: #7f8c8d;
    font-weight: 600;
}

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

.services-overview h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: #546e7a;
    max-width: 700px;
    margin: 0 auto 70px;
    line-height: 1.7;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-option {
    display: flex;
    gap: 50px;
    align-items: stretch;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-visual {
    flex: 1;
    min-height: 350px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    flex: 1;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 15px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin: 25px 0;
}

.select-service {
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.select-service:hover {
    background: #764ba2;
    transform: translateY(-1px);
}

.contact-form-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.form-container h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.selected-service-display {
    text-align: center;
    font-size: 19px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.contact-form {
    background: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.contact-form .cta-primary {
    width: 100%;
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

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

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px 40px;
    z-index: 1000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #2c3e50;
    line-height: 1.6;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-accept {
    background: #667eea;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #764ba2;
}

.cookie-reject {
    background: #ecf0f1;
    color: #2c3e50;
}

.cookie-reject:hover {
    background: #bdc3c7;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.values-section,
.philosophy-section,
.service-info {
    padding: 100px 40px;
    background: #f8f9fa;
}

.values-section h2,
.philosophy-section h2,
.service-info h2 {
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-item,
.info-item {
    flex: 1 1 calc(50% - 18px);
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.value-item h3,
.info-item h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-item p,
.info-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.philosophy-content p {
    font-size: 19px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 25px;
}

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

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

.service-detail-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

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

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

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

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

.service-features {
    list-style: none;
    margin: 30px 0;
}

.service-features li {
    font-size: 17px;
    line-height: 1.6;
    color: #546e7a;
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 20px;
}

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin: 25px 0;
}

.service-detail-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 450px;
}

.contact-content {
    padding: 60px 40px 100px;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

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

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

.contact-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 500px;
}

.visit-info {
    padding: 100px 40px;
    background: #f8f9fa;
}

.visit-info h2 {
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.visit-item {
    flex: 1 1 calc(50% - 18px);
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.visit-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
}

.visit-item a {
    color: #3498db;
    text-decoration: underline;
}

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

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

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

.thanks-message {
    font-size: 22px;
    color: #667eea;
    margin-bottom: 40px;
    font-weight: 600;
}

.thanks-info {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.thanks-info p {
    font-size: 18px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 15px;
}

.thanks-next h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.thanks-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 50px;
    padding-left: 20px;
}

.thanks-steps li {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 15px;
}

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

.legal-page {
    padding: 60px 40px 100px;
}

.legal-page h1 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

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

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #34495e;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

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

.legal-content ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 12px;
}

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

.legal-updated {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
    font-style: italic;
    color: #95a5a6;
}

@media (max-width: 968px) {
    .hero-split,
    .split-layout,
    .service-option,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .service-option:nth-child(even) {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .nav-menu {
        gap: 20px;
    }

    .benefit-card,
    .value-item,
    .info-item,
    .visit-item {
        flex: 1 1 100%;
    }

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