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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #6c7a7b;
}

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

.navigation {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #a44a8d;
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

.nav-disclosure {
    font-size: 12px;
    color: #7f8c8d;
}

.ad-label {
    font-style: italic;
}

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

.hero-content-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-content-left p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #a44a8d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.intro-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.intro-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.services-overview {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.services-overview h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #a44a8d;
    margin-top: 8px;
}

.btn-select-service {
    margin-top: 16px;
    padding: 12px 28px;
    background-color: #a44a8d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
}

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

.trust-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.trust-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.citation {
    color: #a44a8d;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.form-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    display: flex;
    gap: 60px;
    align-items: center;
}

.form-container {
    flex: 1;
    max-width: 600px;
    margin-left: auto;
    padding-left: 40px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2c3e50;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 14px 32px;
    background-color: #a44a8d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
}

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

.form-image {
    flex: 1;
    background-color: #e8e0e5;
}

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

.disclaimer-section {
    padding: 40px 20px;
    background-color: #ecf0f1;
}

.disclaimer-text {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    color: #7f8c8d;
    text-align: center;
    line-height: 1.6;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-references {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding-top: 40px;
    border-top: 1px solid #34495e;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-references ol {
    padding-left: 20px;
}

.footer-references ol li {
    margin-bottom: 8px;
    font-size: 13px;
}

.footer-references ol li a {
    color: #ecf0f1;
    text-decoration: none;
}

.footer-references ol li a:hover {
    text-decoration: underline;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.page-hero {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.page-hero p {
    font-size: 20px;
    color: #555;
}

.about-content-split {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-text {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.about-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.about-text {
    flex: 1;
}

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

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

.values-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    color: #555;
}

.team-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.team-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.team-intro p {
    font-size: 17px;
    color: #555;
}

.team-image-full {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f5f1f3;
}

.team-image-full img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.approach-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.approach-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-image {
    flex: 1;
    background-color: #f5f1f3;
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.approach-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.service-detail-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

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

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

.service-pricing {
    margin: 24px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #a44a8d;
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: #7f8c8d;
}

.cta-section-services {
    padding: 80px 20px;
    background-color: #a44a8d;
    text-align: center;
    color: #ffffff;
}

.cta-section-services h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section-services p {
    font-size: 18px;
    margin-bottom: 32px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

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

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

.additional-info-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.additional-info-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.additional-info-section p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
}

.additional-info-section a {
    color: #a44a8d;
    text-decoration: none;
}

.additional-info-section a:hover {
    text-decoration: underline;
}

.location-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.location-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.location-section p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

.location-image {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f5f1f3;
}

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

.thanks-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.thanks-details {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 24px 0;
}

.thanks-details p {
    margin: 0;
    font-weight: 600;
    color: #a44a8d;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

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

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

.next-steps-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.next-steps-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.steps-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #a44a8d;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-item p {
    font-size: 16px;
    color: #555;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

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

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-card,
    .form-section,
    .about-content-split,
    .approach-split,
    .service-detail-item,
    .contact-layout,
    .thanks-hero {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

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

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

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content-left h1,
    .page-hero h1,
    .thanks-content h1 {
        font-size: 32px;
    }

    .services-overview h2,
    .values-section h2 {
        font-size: 28px;
    }

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

    .form-container {
        padding-left: 0;
    }

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