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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2980b9;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    background: #ecf0f1;
}

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

.hero-left {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 700;
}

.hero-lead {
    font-size: 1.25rem;
    color: #4a5d6b;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #1a252f;
}

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

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

.intro-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.intro-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.8rem;
    color: #1a252f;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.1rem;
    color: #4a5d6b;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.services-section {
    padding: 5rem 0;
    background: #ffffff;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 700;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #6b7d8a;
}

.service-card-split {
    display: flex;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card-split:hover {
    transform: translateY(-5px);
}

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

.service-content {
    flex: 1;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.service-content h3 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
}

.service-content p {
    font-size: 1.05rem;
    color: #4a5d6b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid #e0e6ed;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.btn-service {
    padding: 0.9rem 2rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

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

.service-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 350px;
    object-fit: cover;
}

.process-split {
    display: flex;
    background: #2c3e50;
    color: #ffffff;
}

.process-content {
    flex: 1;
    padding: 5rem 4rem;
}

.process-content h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    min-width: 70px;
}

.step h4 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    color: #ffffff;
}

.step p {
    color: #bdc3c7;
    font-size: 1.05rem;
    line-height: 1.7;
}

.process-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.form-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.form-intro {
    font-size: 1.1rem;
    color: #6b7d8a;
    margin-bottom: 2.5rem;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #d0d7de;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 1.1rem 3rem;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #1a252f;
}

.trust-split {
    display: flex;
    min-height: 550px;
}

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

.trust-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.trust-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.trust-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    color: #2c3e50;
    font-weight: 700;
}

.trust-content p {
    font-size: 1.1rem;
    color: #4a5d6b;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    transition: all 0.3s;
    align-self: flex-start;
    margin-top: 1rem;
}

.cta-secondary:hover {
    background: #2c3e50;
    color: #ffffff;
}

.main-footer {
    background: #1a252f;
    color: #bdc3c7;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: #253442;
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #95a5a6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

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

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

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

.btn-reject:hover {
    background: #34495e;
}

.page-header {
    background: #2c3e50;
    color: #ffffff;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    color: #bdc3c7;
    max-width: 800px;
    margin: 0 auto;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.page-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #34495e;
    font-weight: 600;
}

.page-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5d6b;
    margin-bottom: 1.3rem;
}

.page-content ul,
.page-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-content ul li,
.page-content ol li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5d6b;
    margin-bottom: 0.8rem;
}

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

.contact-info {
    flex: 1;
    padding: 5rem 4rem;
    background: #2c3e50;
    color: #ffffff;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #3498db;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.1rem;
    color: #bdc3c7;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=800&q=80');
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

.thanks-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-content p {
    font-size: 1.15rem;
    color: #4a5d6b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.thanks-service {
    background: #ecf0f1;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.thanks-service strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

.about-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 6rem 2rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    color: #bdc3c7;
    line-height: 1.8;
}

.about-split {
    display: flex;
}

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

.about-content {
    flex: 1;
    padding: 5rem 4rem;
}

.about-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.8rem;
    color: #2c3e50;
    font-weight: 700;
}

.about-content p {
    font-size: 1.1rem;
    color: #4a5d6b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    object-fit: cover;
}

.services-grid {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .process-split,
    .trust-split,
    .contact-split,
    .about-split {
        flex-direction: column;
    }

    .hero-left,
    .intro-content,
    .service-content,
    .process-content,
    .trust-content,
    .contact-info,
    .about-content {
        padding: 3rem 2rem;
    }

    .hero-left h1,
    .about-hero h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .form-row {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}