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

.ad-disclosure {
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

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

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

.hero-visual {
    position: relative;
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background-color: rgba(0,0,0,0.4);
    padding: 40px 60px;
    border-radius: 8px;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 20px;
    font-weight: 300;
}

.story-flow {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.story-block {
    margin-bottom: 50px;
}

.story-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #222;
}

.story-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #333;
}

.story-block p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.image-inline {
    margin: 60px 0;
    text-align: center;
}

.image-inline img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.insight-block {
    background-color: #f9f7f4;
    padding: 40px;
    border-left: 4px solid #c9a05f;
    margin: 60px 0;
}

.insight-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
}

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

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

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

.visual-break {
    margin: 60px 0;
    text-align: center;
}

.visual-break img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 60px 0;
}

.trust-card {
    background-color: #fafafa;
    padding: 30px;
    border-radius: 8px;
    border-left: 3px solid #c9a05f;
}

.testimonial {
    font-size: 17px;
    font-style: italic;
    color: #444;
    margin-bottom: 10px;
}

.author {
    font-size: 15px;
    color: #777;
    font-weight: 600;
}

.cta-inline {
    text-align: center;
    margin: 60px 0;
}

.btn-primary {
    display: inline-block;
    background-color: #c9a05f;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.services-reveal {
    margin: 80px 0;
}

.services-reveal h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #222;
}

.services-reveal > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px 20px;
    color: #222;
}

.service-card p {
    font-size: 16px;
    color: #555;
    margin: 0 20px 15px 20px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #c9a05f;
    margin: 10px 20px;
}

.btn-service {
    background-color: #222;
    color: #fff;
    border: none;
    padding: 12px 25px;
    margin: 10px 20px 20px 20px;
    cursor: pointer;
    font-size: 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

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

.composition-block {
    background-color: #f4f7f9;
    padding: 40px;
    margin: 60px 0;
    border-radius: 8px;
}

.composition-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
}

.composition-block p {
    font-size: 17px;
    color: #555;
    margin-bottom: 12px;
}

.form-container {
    background-color: #f9f7f4;
    padding: 50px 40px;
    margin: 80px 0;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
    text-align: center;
    color: #222;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    background-color: #c9a05f;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-block {
    margin: 60px 0;
    padding: 30px;
    background-color: #fffbf0;
    border: 1px solid #e8dfc3;
    border-radius: 8px;
}

.disclaimer-block p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.footer {
    background-color: #2a2a2a;
    color: #ccc;
    padding: 50px 40px 20px 40px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #c9a05f;
}

.footer-references {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.footer-references h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
}

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

.footer-references a {
    color: #c9a05f;
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #222;
    color: #fff;
    padding: 20px;
    display: none;
    z-index: 1000;
}

.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;
    font-size: 14px;
    margin: 0;
}

.cookie-content a {
    color: #c9a05f;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

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

.btn-cookie-accept {
    background-color: #c9a05f;
    color: #fff;
}

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

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

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

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

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #222;
}

.page-hero p {
    font-size: 18px;
    color: #666;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.about-story {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
}

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

.about-image {
    flex: 1;
    min-width: 300px;
}

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

.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #222;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

.value-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.value-card p {
    font-size: 15px;
    color: #555;
}

.process-section {
    margin-bottom: 80px;
}

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #222;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #c9a05f;
    min-width: 60px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #222;
}

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

.cta-about {
    text-align: center;
    background-color: #f9f7f4;
    padding: 50px 40px;
    border-radius: 8px;
}

.cta-about h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #222;
}

.cta-about p {
    font-size: 17px;
    color: #666;
    margin-bottom: 25px;
}

.services-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

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

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 80px;
}

.service-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #222;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #c9a05f;
    margin-bottom: 15px;
}

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

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

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

.service-duration {
    font-style: italic;
    color: #777;
    font-size: 14px;
}

.services-cta {
    text-align: center;
    background-color: #f9f7f4;
    padding: 50px 40px;
    border-radius: 8px;
}

.services-cta h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #222;
}

.services-cta p {
    font-size: 17px;
    color: #666;
    margin-bottom: 25px;
}

.btn-secondary {
    display: inline-block;
    background-color: #fff;
    color: #222;
    padding: 15px 40px;
    text-decoration: none;
    border: 2px solid #222;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.contact-info-section {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-card {
    flex: 1;
    min-width: 300px;
    background-color: #f9f7f4;
    padding: 40px;
    border-radius: 8px;
}

.contact-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #222;
}

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #222;
    font-weight: 600;
}

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

.contact-map {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    background-color: #e8e8e8;
    height: 100%;
    min-height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.map-placeholder p {
    font-size: 16px;
    color: #555;
    text-align: center;
}

.contact-additional {
    background-color: #f4f7f9;
    padding: 40px;
    border-radius: 8px;
}

.contact-additional h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #222;
}

.contact-additional p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.contact-cta {
    margin-top: 30px;
    text-align: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 40px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4CAF50;
    color: #fff;
    font-size: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #222;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: #f9f7f4;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 16px;
    color: #333;
}

.thanks-detail {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.thanks-next-steps {
    margin: 50px 0;
}

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #222;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    background-color: #c9a05f;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

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

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 20px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

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

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