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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 16px;
}

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

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

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.header-right a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-right a:hover {
    color: var(--secondary-color);
}

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

.hero-left {
    flex: 1;
    padding: 80px 5% 80px 8%;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-left p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-secondary:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.features-alternating {
    padding: 80px 0;
}

.feature-row {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    padding: 40px 8%;
}

.feature-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

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

.feature-image {
    flex: 1;
    overflow: hidden;
}

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

.testimonial-split {
    display: flex;
    background: var(--light-bg);
    padding: 80px 0;
}

.testimonial-content {
    flex: 1;
    padding: 40px 8%;
    display: flex;
    align-items: center;
}

.testimonial-content blockquote {
    font-size: 24px;
    line-height: 1.6;
    color: var(--primary-color);
    font-style: italic;
}

.testimonial-content cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 16px;
    color: #666;
}

.testimonial-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.testimonial-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 64px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 18px;
    color: #555;
}

.service-selection {
    padding: 80px 5%;
    background: white;
}

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

.selection-intro h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.selection-intro p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.service-card.selected {
    border-color: var(--success-color);
    background: #f0fff4;
}

.service-card.selected .select-service {
    background: var(--success-color);
}

.contact-form-split {
    display: flex;
    padding: 80px 0;
    background: var(--light-bg);
}

.form-description {
    flex: 1;
    padding: 40px 8%;
}

.form-description h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.form-description p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.form-container {
    flex: 1;
    padding: 40px 8%;
    display: flex;
    align-items: center;
}

.consultation-form {
    width: 100%;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    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: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
}

.selected-service-display {
    background: #e3f2fd;
    border: 2px solid var(--secondary-color);
    padding: 20px;
    border-radius: 6px;
}

.selected-service-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.trust-split {
    display: flex;
    padding: 80px 0;
}

.trust-left {
    flex: 1;
    padding: 40px 8%;
}

.trust-left h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.trust-left p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.trust-right {
    flex: 1;
    padding: 40px 8%;
    display: flex;
    align-items: center;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-point h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

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

.cta-fullwidth {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 80px 5%;
}

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

.cta-fullwidth p {
    font-size: 19px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-fullwidth .cta-secondary {
    background: white;
    color: var(--primary-color);
}

.cta-fullwidth .cta-secondary:hover {
    background: var(--light-bg);
}

.footer-split {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    padding: 0 5% 40px;
    flex-wrap: wrap;
    gap: 40px;
}

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

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

.footer-col p,
.footer-col a {
    display: block;
    font-size: 15px;
    line-height: 1.8;
    color: #999;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.disclaimer-footer {
    font-size: 13px;
    line-height: 1.6;
    max-width: 900px;
    margin: 20px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    padding: 25px 5%;
    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;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

.cookie-accept {
    background: var(--success-color);
    color: white;
}

.cookie-accept:hover {
    background: #229954;
}

.cookie-reject {
    background: #e0e0e0;
    color: var(--text-color);
}

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

.page-hero-split {
    display: flex;
    min-height: 400px;
    align-items: center;
    background: var(--light-bg);
}

.about-content-split,
.services-detailed {
    padding: 80px 0;
}

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.content-row.reverse {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    padding: 40px 8%;
}

.content-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

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

.content-image {
    flex: 1;
    overflow: hidden;
}

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

.values-split {
    padding: 80px 5%;
    background: var(--light-bg);
}

.values-intro {
    text-align: center;
    margin-bottom: 60px;
}

.values-intro h2 {
    font-size: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
}

.expertise-split {
    display: flex;
    padding: 80px 0;
}

.expertise-left {
    flex: 1;
    padding: 40px 8%;
}

.expertise-left h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

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

.expertise-right {
    flex: 1;
    padding: 40px 8%;
    display: flex;
    align-items: center;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.expertise-item h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

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

.service-detail-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
}

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

.service-info {
    flex: 1;
    padding: 40px 5%;
}

.service-info h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

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

.service-info h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-weight: 700;
}

.service-info ul {
    list-style: none;
    padding: 0;
}

.service-info ul li {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.service-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.service-visual {
    flex: 1;
    overflow: hidden;
}

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

.service-process {
    padding: 80px 5%;
    background: var(--light-bg);
}

.service-process h2 {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 700;
}

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

.process-step {
    flex: 1 1 calc(25% - 25px);
    min-width: 200px;
    text-align: center;
    background: white;
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

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

.contact-info-split {
    display: flex;
    padding: 80px 0;
    gap: 60px;
}

.contact-main {
    flex: 2;
    padding: 0 5%;
}

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

.contact-block h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-block p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 15px;
    color: #777;
    font-style: italic;
    margin-top: 15px;
}

.contact-aside {
    flex: 1;
    padding: 0 5%;
}

.info-box {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.info-box h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.info-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.info-box strong {
    color: var(--primary-color);
}

.location-description {
    padding: 80px 5%;
    background: var(--light-bg);
}

.location-description h2 {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
}

.location-content {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.location-text {
    flex: 1;
}

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

.location-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.thanks-split {
    display: flex;
    min-height: 600px;
    padding: 80px 0;
}

.thanks-left {
    flex: 1.5;
    padding: 40px 8%;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.thanks-left h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-left > p {
    font-size: 19px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.thanks-details {
    background: #e3f2fd;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.thanks-details p {
    font-size: 17px;
    color: #333;
    margin-bottom: 10px;
}

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

.next-steps h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.step-icon {
    width: 36px;
    height: 36px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
    padding-top: 5px;
}

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

.thanks-right {
    flex: 1;
    padding: 40px 8%;
    background: var(--light-bg);
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.info-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.info-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 5%;
}

.legal-page h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.last-updated {
    font-size: 15px;
    color: #777;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin: 40px 0 20px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-weight: 700;
}

.legal-page h4 {
    font-size: 19px;
    color: var(--primary-color);
    margin: 25px 0 12px;
    font-weight: 700;
}

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

.legal-page ul {
    margin: 15px 0 15px 30px;
}

.legal-page ul li {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

.cookie-table th,
.cookie-table td {
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    text-align: left;
}

.cookie-table th {
    background: var(--light-bg);
    font-weight: 700;
    color: var(--primary-color);
}

.cookie-table td {
    font-size: 16px;
    color: #555;
}

@media (max-width: 1024px) {
    .hero-split,
    .feature-row,
    .feature-row.reverse,
    .testimonial-split,
    .trust-split,
    .expertise-split,
    .service-detail-row,
    .service-detail-row.reverse,
    .content-row,
    .content-row.reverse,
    .location-content {
        flex-direction: column;
    }

    .hero-left h1,
    .thanks-left h1 {
        font-size: 36px;
    }

    .contact-form-split,
    .contact-info-split,
    .thanks-split {
        flex-direction: column;
    }

    .header-right {
        gap: 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 32px;
    }

    .hero-left p {
        font-size: 17px;
    }

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

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

    .process-step {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
    }

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

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

@media (max-width: 480px) {
    .hero-left,
    .feature-content,
    .form-description,
    .trust-left,
    .expertise-left,
    .service-info {
        padding: 30px 5%;
    }

    .hero-left h1 {
        font-size: 28px;
    }

    .cta-primary,
    .cta-secondary {
        padding: 14px 28px;
        font-size: 16px;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}