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

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

.main-header {
    background-color: #1a1a1a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #ffffff;
}

.ad-label {
    background-color: #444;
    color: #fff;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 3px;
}

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

.hero-left {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f8f8;
}

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

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 500px;
}

.btn-hero {
    background-color: #1a1a1a;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-hero:hover {
    background-color: #333;
}

.hero-right {
    flex: 1;
    background-color: #e8e8e8;
}

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

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

.intro-image {
    flex: 1;
    background-color: #d5d5d5;
}

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

.intro-text {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.services-highlight {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
}

.service-row {
    display: flex;
    margin-bottom: 4rem;
    gap: 3rem;
    align-items: center;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

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

.service-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 1.5rem 0;
}

.btn-select-service {
    background-color: #1a1a1a;
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #333;
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    background-color: #f8f8f8;
}

.values-text {
    flex: 1;
    padding: 4rem 3rem;
}

.values-text h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 600;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 1.1rem;
    padding: 1rem 0;
    color: #555;
    border-bottom: 1px solid #ddd;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-image {
    flex: 1;
    background-color: #d0d0d0;
}

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

.testimonials {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 600;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 6px;
    max-width: 350px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 600;
}

.form-section-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    background-color: #1a1a1a;
    color: #fff;
}

.form-intro {
    flex: 1;
    padding: 4rem 3rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-intro p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.form-container {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #2a2a2a;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #e0e0e0;
}

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

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

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

.btn-submit:hover {
    background-color: #e0e0e0;
}

.main-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 0 1rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 1rem;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    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: 2rem;
}

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

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

.btn-primary {
    background-color: #fff;
    color: #1a1a1a;
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #e0e0e0;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border: 1px solid #fff;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #3a3a3a;
}

.page-hero-split {
    display: flex;
    min-height: 500px;
    max-width: 1400px;
    margin: 0 auto;
}

.page-hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f8f8;
}

.page-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #555;
}

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

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

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

.about-text {
    flex: 1;
    padding: 3rem;
    background-color: #ffffff;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background-color: #d0d0d0;
}

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

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

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 600;
}

.team-grid-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 6px;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.team-role {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-info p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.process-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    background-color: #f8f8f8;
}

.process-image {
    flex: 1;
    background-color: #d0d0d0;
}

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

.process-text {
    flex: 1;
    padding: 4rem 3rem;
}

.process-text h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 600;
}

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

.process-steps li {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
    counter-increment: step-counter;
    padding-left: 2.5rem;
    position: relative;
}

.process-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #1a1a1a;
    color: #fff;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 600;
}

.values-grid {
    display: flex;
    gap: 2rem;
}

.value-card {
    flex: 1;
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 6px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.value-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.services-detail {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.service-detail-row {
    display: flex;
    margin-bottom: 5rem;
    gap: 3rem;
    align-items: flex-start;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    font-size: 0.95rem;
    padding: 0.7rem 0;
    color: #555;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 600;
}

.service-detail-price {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 1.5rem 0;
}

.service-detail-image {
    flex: 1;
    background-color: #e0e0e0;
    min-height: 500px;
}

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

.cta-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 3rem;
    align-items: center;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.cta-button-container {
    flex: 0;
}

.btn-cta-large {
    background-color: #fff;
    color: #1a1a1a;
    padding: 1.2rem 3rem;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.btn-cta-large:hover {
    background-color: #e0e0e0;
}

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

.contact-hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f8f8;
}

.contact-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-hero-content p {
    font-size: 1.1rem;
    color: #555;
}

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

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

.contact-info-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.contact-details {
    flex: 1;
    padding: 3rem;
    background-color: #ffffff;
}

.contact-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 600;
}

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

.contact-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

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

.contact-map-placeholder {
    flex: 1;
    background-color: #f8f8f8;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info {
    max-width: 400px;
}

.map-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.map-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

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

.contact-faq h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 600;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 6px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.faq-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.thanks-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.thanks-content {
    background-color: #f8f8f8;
    padding: 4rem;
    border-radius: 6px;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #555;
}

.thanks-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #666;
}

.thanks-next-steps {
    text-align: left;
    margin: 2rem 0;
    background-color: #fff;
    padding: 2rem;
    border-radius: 6px;
}

.thanks-next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

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

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

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

.legal-content li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.8;
}

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #333;
}

.legal-content em {
    color: #888;
    font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
    .hero-split,
    .intro-split,
    .values-split,
    .form-section-split,
    .page-hero-split,
    .about-content-split,
    .process-split,
    .contact-info-split,
    .contact-hero-split,
    .cta-split {
        flex-direction: column;
    }

    .service-row,
    .service-detail-row {
        flex-direction: column;
    }

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

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

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

    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .faq-item {
        flex: 1 1 100%;
    }
}