* {
    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-color: #ffffff;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.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;
}

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

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

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

.ad-notice {
    font-size: 0.85rem;
    color: #95a5a6;
    padding: 0.3rem 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

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

.hero-left p {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.7;
}

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

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

.split-reverse {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.split-image {
    flex: 1;
    background-color: #f5f7fa;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.split-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.split-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.split-standard {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.value-cards {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.value-cards h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

.value-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #f5f7fa;
}

.value-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem;
    color: #2c3e50;
}

.value-card p {
    margin: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.7;
}

.services-intro {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

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

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

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #e8e8e8;
    gap: 2rem;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.service-details p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.service-duration {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

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

.btn-select {
    padding: 0.8rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f9fafb;
    padding: 3rem;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

.selected-service {
    background-color: #e8f4f8;
    padding: 1rem;
    margin-bottom: 2rem;
    border-left: 4px solid #3498db;
    display: none;
}

.selected-service.visible {
    display: block;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

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

.testimonials-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    background-color: #f5f7fa;
    padding: 4rem 2rem;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

.testimonial-item {
    background-color: #ffffff;
    padding: 2rem;
    border-left: 4px solid #3498db;
}

.testimonial-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.testimonial-item cite {
    font-style: normal;
    color: #7f8c8d;
    font-weight: 600;
}

.testimonial-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.disclaimer-section {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
}

.disclaimer-content p {
    color: #666;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #3498db;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    margin-top: 6rem;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding: 2rem;
    text-align: center;
    color: #bdc3c7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

.cookie-banner.visible {
    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-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

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

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.8;
}

.approach-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.approach-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.approach-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f9fafb;
    border-left: 4px solid #3498db;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.approach-item p {
    color: #555;
    line-height: 1.7;
}

.values-section {
    max-width: 1100px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background-color: #f5f7fa;
}

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

.values-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-block {
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
}

.value-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-block p {
    color: #555;
    line-height: 1.8;
}

.cta-about {
    max-width: 1100px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.cta-content {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

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

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

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.services-hero {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-hero p {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.8;
}

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

.service-detail-item {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 1rem;
}

.service-detail-content ul {
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.service-detail-image {
    flex: 1;
    background-color: #f5f7fa;
}

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

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

.service-meta span {
    color: #7f8c8d;
}

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

.services-cta {
    max-width: 1100px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.cta-box {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f9fafb;
    border: 1px solid #e8e8e8;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-box p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.contact-hero {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.8;
}

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

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

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-block p {
    color: #555;
    line-height: 1.8;
}

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

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

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

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

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

.detail-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f9fafb;
    border-left: 4px solid #3498db;
}

.detail-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.detail-item p {
    color: #555;
    line-height: 1.7;
}

.contact-cta {
    max-width: 1100px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.thanks-section {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: flex-start;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.thanks-details {
    padding: 1.5rem;
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
}

.next-steps {
    margin-top: 2rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.step-item {
    margin-bottom: 1.5rem;
}

.step-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-item p {
    color: #555;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.thanks-image {
    flex: 1;
    background-color: #f5f7fa;
}

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

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

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

.last-updated {
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

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

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

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

.legal-content a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table thead {
    background-color: #f5f7fa;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e8e8e8;
}

.cookies-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #555;
}

@media (max-width: 768px) {
    .hero-split,
    .split-reverse,
    .split-standard,
    .testimonials-split,
    .contact-split,
    .thanks-section,
    .service-detail-item {
        flex-direction: column;
    }

    .hero-left h1,
    .about-hero-content h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2.5rem;
    }

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

    .cards-grid {
        flex-direction: column;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price {
        align-items: flex-start;
    }

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

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