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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.nav-items {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-items a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-items a:hover {
    color: #b8860b;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 20px;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    margin-bottom: 80px;
}

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

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 900px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.story-intro {
    padding: 60px 20px;
    background-color: #fafafa;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.narrow-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.visual-break {
    width: 100%;
    margin: 60px 0;
}

.visual-break img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

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

.content-offset {
    flex: 1;
}

.content-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 400;
}

.content-offset p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.image-beside {
    flex: 0 0 400px;
    background-color: #e8e8e8;
}

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

.insight-reveal {
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
    padding: 80px 20px;
    margin: 60px 0;
}

.insight-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.insight-box h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 400;
}

.insight-box p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.visual-grid {
    display: flex;
    gap: 40px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-item {
    flex: 1;
    background-color: #fafafa;
}

.grid-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
}

.grid-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    padding: 0 20px;
    color: #1a1a1a;
}

.grid-item p {
    padding: 0 20px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.trust-builder {
    background-color: #f5f5f5;
    padding: 80px 20px;
}

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    background: #ffffff;
    padding: 35px 40px;
    border-left: 4px solid #b8860b;
}

.quote {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-style: italic;
}

.author {
    font-size: 0.95rem;
    color: #666;
    text-align: right;
}

.benefits-visual {
    padding: 80px 20px;
}

.benefits-visual h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 400;
}

.benefit-cards {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #fafafa;
    border-top: 3px solid #b8860b;
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.service-pricing-reveal {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.pricing-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.pricing-intro p {
    font-size: 1.15rem;
    color: #555;
}

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

.service-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

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

.service-item h3 {
    font-size: 1.6rem;
    margin: 25px 25px 15px;
    color: #1a1a1a;
    font-weight: 500;
}

.service-item p {
    margin: 0 25px 15px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.service-item .price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #b8860b;
    margin: 20px 25px;
}

.select-service {
    margin: 0 25px 25px;
    padding: 12px 30px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 80px 20px;
    background-color: #fafafa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 400;
}

.form-container > p {
    margin-bottom: 35px;
    color: #555;
    font-size: 1.05rem;
}

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

.inquiry-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #2c2c2c;
    font-weight: 500;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.final-reassurance {
    padding: 40px 20px;
    background-color: #f5f5f5;
}

.reassurance-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.95rem;
    color: #666;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #d4af37;
    font-weight: 500;
}

.footer-col p,
.footer-col a {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: #d4af37;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #2a2a2a;
    border-left: 3px solid #b8860b;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bbb;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    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: 30px;
    flex-wrap: wrap;
}

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

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-hero {
    padding: 150px 20px 60px;
    text-align: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 400;
}

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

.about-content {
    padding: 60px 20px;
}

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

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-section img {
    flex: 0 0 45%;
    width: 45%;
    height: 400px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.values-section {
    max-width: 1200px;
    margin: 80px auto;
}

.values-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 400;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #fafafa;
    border-top: 3px solid #b8860b;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.team-section {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
}

.team-section h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 400;
}

.team-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.services-detailed {
    padding: 60px 20px;
}

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

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

.service-visual {
    flex: 0 0 45%;
    background-color: #e8e8e8;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.service-info > p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b8860b;
    font-weight: bold;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 600;
    color: #b8860b;
    margin-bottom: 20px;
}

.cta-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #b8860b;
}

.additional-services {
    padding: 60px 20px;
    background-color: #fafafa;
}

.additional-services h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 400;
}

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

.additional-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #ffffff;
}

.additional-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.additional-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.contact-content {
    padding: 60px 20px;
}

.contact-info-section {
    max-width: 900px;
    margin: 0 auto;
}

.contact-details {
    margin-bottom: 50px;
}

.contact-details h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 400;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 500;
}

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

.contact-note {
    padding: 30px;
    background-color: #f5f5f5;
    border-left: 4px solid #b8860b;
}

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

.thanks-section {
    padding: 150px 20px 100px;
    min-height: 60vh;
}

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

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 400;
}

.thanks-container p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.thanks-details {
    margin: 30px 0;
    padding: 25px;
    background-color: #f5f5f5;
}

.back-home {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.back-home:hover {
    background-color: #b8860b;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 500;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 500;
}

.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 500;
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #444;
}

.legal-page ul {
    margin: 15px 0 15px 30px;
}

.legal-page li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #444;
}

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

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

.cookie-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

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

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

.cookie-table td {
    font-size: 0.95rem;
    color: #555;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .problem-section,
    .about-section,
    .service-detail {
        flex-direction: column;
    }

    .image-beside,
    .about-section img {
        flex: 1;
        width: 100%;
    }

    .visual-grid,
    .benefit-cards,
    .values-grid {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-items {
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .form-container {
        padding: 30px 20px;
    }
}