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

.main-nav {
    background-color: #1a1a1a;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-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: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

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

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

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

.ad-label {
    color: #999;
    font-size: 0.85rem;
    border-left: 1px solid #444;
    padding-left: 2rem;
}

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

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

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

.hero-left p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
}

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

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

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

.cta-hero:hover {
    background-color: #c8a882;
}

.story-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.insight-split {
    display: flex;
    align-items: stretch;
}

.split-image-left {
    flex: 1;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

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

.split-content-right h2,
.split-content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.split-content-right p,
.split-content-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

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

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

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c8a882;
    font-weight: bold;
}

.trust-section {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: #2a2a2a;
    padding: 2rem;
    border-left: 3px solid #c8a882;
}

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

.testimonial-author {
    color: #c8a882;
    font-weight: 600;
}

.approach-split {
    display: flex;
    align-items: stretch;
}

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

.split-image-right {
    flex: 1;
    overflow: hidden;
    background-color: #e8e8e8;
}

.cta-inline {
    margin-top: 2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #c8a882;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

.value-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.services-reveal {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 450px;
    display: flex;
    background-color: #f8f9fa;
    overflow: hidden;
}

.service-image {
    flex: 1;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.service-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

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

.btn-select {
    padding: 0.9rem 1.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

.contact-form {
    background-color: #ffffff;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.guarantee-section {
    padding: 5rem 2rem;
    background-color: #c8a882;
    color: #ffffff;
}

.guarantee-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.guarantee-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

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

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

.footer-column p {
    color: #999;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
    font-size: 0.9rem;
    color: #999;
    line-height: 1.6;
}

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

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

.cookie-content a {
    color: #c8a882;
}

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

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

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

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

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

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

.page-hero {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.hero-content-center h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content-center p {
    font-size: 1.3rem;
    color: #c8a882;
}

.about-split,
.values-split {
    display: flex;
    align-items: stretch;
}

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

.philosophy-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.values-list {
    list-style: none;
    margin-top: 2rem;
}

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

.values-list li strong {
    color: #1a1a1a;
    display: block;
    margin-bottom: 0.3rem;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.team-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.team-member {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #f8f9fa;
}

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

.role {
    color: #c8a882;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.approach-detail {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.approach-detail h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.cta-about,
.cta-services,
.cta-contact {
    padding: 5rem 2rem;
    background-color: #c8a882;
    text-align: center;
}

.cta-content-center {
    text-align: center;
}

.cta-content-center h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.services-intro {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-detailed {
    background-color: #ffffff;
}

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

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

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

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

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

.service-includes {
    list-style: none;
    margin: 1.5rem 0;
}

.service-includes li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a5568;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c8a882;
    font-size: 1.5rem;
    line-height: 1;
}

.service-price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #c8a882;
    margin: 1.5rem 0;
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

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

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

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

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #c8a882;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

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

.contact-info-left {
    flex: 1;
    padding: 4rem 5rem;
    background-color: #f8f9fa;
}

.contact-info-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #fff;
    border-left: 3px solid #c8a882;
}

.contact-map-right {
    flex: 1;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.faq-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

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

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

.thanks-message {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #f8f9fa;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 3px solid #c8a882;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.steps-list {
    list-style: none;
    margin-top: 1rem;
}

.steps-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a5568;
}

.steps-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #c8a882;
    font-weight: bold;
}

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

.legal-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.last-update {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

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

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

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

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

.legal-page li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: #4a5568;
}

.legal-page a {
    color: #c8a882;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #b89872;
}

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

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

@media (max-width: 1024px) {
    .hero-split,
    .insight-split,
    .approach-split,
    .about-split,
    .values-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .split-content-left,
    .split-content-right,
    .split-image-left,
    .split-image-right,
    .contact-info-left,
    .contact-map-right {
        flex: none;
        min-height: 400px;
    }

    .service-card {
        flex-direction: column;
        min-width: 100%;
    }

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

    .ad-label {
        border-left: none;
        padding-left: 0;
        width: 100%;
        text-align: center;
    }
}