* {
    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: #1a1a1a;
    background: #ffffff;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

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

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #0066cc;
}

.nav-link.active {
    color: #0066cc;
    border-bottom: 2px solid #0066cc;
}

.nav-ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

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

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

.hero-content h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0d0d0d;
}

.hero-content p {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    background: #e0e0e0;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #0052a3;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #0066cc;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #0066cc;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #0066cc;
    color: #ffffff;
}

.btn-text {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.btn-text:hover {
    border-bottom-color: #0066cc;
}

.intro-split {
    display: flex;
    padding: 6rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

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

.intro-image {
    flex: 1;
    background: #e5e5e5;
    overflow: hidden;
}

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

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

.intro-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #0d0d0d;
}

.intro-text p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.services-preview {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0d0d0d;
}

.services-header p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.services-grid {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e5e5e5;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #0d0d0d;
}

.service-card p {
    margin: 0 1.5rem 1.5rem;
    color: #4a4a4a;
}

.service-price {
    margin: 0 1.5rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.benefits-split {
    display: flex;
    padding: 6rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

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

.benefits-text h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #0d0d0d;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #4a4a4a;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 1.2rem;
}

.benefits-image {
    flex: 1;
    background: #e5e5e5;
    overflow: hidden;
}

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

.form-section {
    display: flex;
    min-height: 700px;
    background: #0d0d0d;
}

.form-container {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.form-container h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.form-container > p {
    margin-bottom: 2rem;
    color: #d0d0d0;
}

.contact-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #444;
    border-radius: 4px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
}

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

.btn-submit {
    background: #0066cc;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #0052a3;
}

.form-image {
    flex: 1;
    background: #1a1a1a;
    overflow: hidden;
}

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

.main-footer {
    background: #0d0d0d;
    color: #d0d0d0;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: #d0d0d0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #0066cc;
}

.footer-column p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    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;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background: #0066cc;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #0052a3;
}

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

.btn-cookie-reject:hover {
    border-color: #999;
}

.page-header {
    background: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #0d0d0d;
}

.page-header p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.service-detail-split {
    display: flex;
    padding: 4rem 0;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid #e5e5e5;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0d0d0d;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.service-detail-image {
    flex: 1;
    background: #e5e5e5;
    overflow: hidden;
}

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

.price-block {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #0066cc;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
}

.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background: #0066cc;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background: #ffffff;
    color: #0066cc;
}

.cta-section .btn-primary:hover {
    background: #f0f0f0;
}

.about-split {
    display: flex;
    padding: 4rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

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

.about-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0d0d0d;
}

.about-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    background: #e5e5e5;
    overflow: hidden;
}

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

.values-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0d0d0d;
}

.values-grid {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.value-card p {
    color: #4a4a4a;
}

.certifications-section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.certifications-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0d0d0d;
}

.certifications-section > p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.cert-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.cert-item {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    border: 2px solid #e5e5e5;
    font-weight: 600;
    color: #0d0d0d;
}

.team-section {
    padding: 5rem 2rem;
    background: #0d0d0d;
    color: #ffffff;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-section > p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 3rem;
}

.team-stats {
    display: flex;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #d0d0d0;
}

.contact-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    padding: 4rem;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #0066cc;
}

.contact-block p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    background: #e5e5e5;
    overflow: hidden;
}

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

.location-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0d0d0d;
}

.location-section > p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.location-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.location-item {
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border-radius: 4px;
    font-weight: 600;
    color: #0d0d0d;
}

.thanks-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0d0d0d;
}

.thanks-content > p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.thanks-next {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: left;
}

.thanks-next h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0d0d0d;
}

.thanks-steps {
    list-style: none;
    counter-reset: step-counter;
}

.thanks-steps li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    font-size: 1.05rem;
    color: #4a4a4a;
}

.thanks-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 2rem;
    height: 2rem;
    background: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.legal-content {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: #0d0d0d;
}

.legal-text h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.75rem;
    color: #0066cc;
}

.legal-text p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-text ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-text li {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .benefits-split,
    .form-section,
    .service-detail-split,
    .about-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-content,
    .intro-text,
    .benefits-text,
    .form-container,
    .service-detail-content,
    .about-content,
    .contact-info {
        padding: 2rem;
    }

    .hero-content h1,
    .page-header h1 {
        font-size: 2rem;
    }

    .services-grid,
    .values-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
    }

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

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