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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    font-size: 0.75rem;
    text-align: center;
    padding: 0.4rem;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #1a1a1a;
    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;
    min-height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    background-color: #34495e;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
}

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

.intro-text {
    flex: 1.3;
}

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

.intro-text p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
}

.intro-visual {
    flex: 1;
    background-color: #e9ecef;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

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

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

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

.section-header-center p {
    font-size: 1.125rem;
    color: #555;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    background-color: #e9ecef;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 1.5rem;
    color: #555;
    flex: 1;
}

.service-card .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    padding: 1rem 1.5rem 0.5rem;
}

.service-card .select-service {
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.875rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-card .select-service:hover {
    background-color: #1a252f;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e8b86d;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

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

.cta-secondary:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.testimonial-inline {
    max-width: 900px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1rem;
    font-style: normal;
    color: #777;
}

.process-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 4rem;
}

.process-image {
    flex: 1;
    background-color: #e9ecef;
}

.process-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.process-steps {
    flex: 1;
    padding: 2rem;
}

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

.step {
    margin-bottom: 2rem;
}

.step h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.cta-wide {
    background-color: #2c3e50;
    padding: 5rem 2rem;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.25rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 2rem;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.form-container > p {
    color: #555;
    margin-bottom: 2rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.page-hero {
    background-color: #2c3e50;
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: #ffffff;
    opacity: 0.9;
}

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

.about-text {
    flex: 1.2;
}

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

.about-text p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

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

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

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

.value-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #e8b86d;
}

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

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

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

.team-image {
    flex: 1;
    background-color: #e9ecef;
    order: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.team-text {
    flex: 1.2;
    order: 2;
}

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

.team-text p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.method-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.method-container > p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-step {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.method-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.method-step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.cta-simple {
    text-align: center;
    max-width: 700px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

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

.services-detailed {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

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

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

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

.service-detail-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.service-pricing {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.materials-info {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.materials-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.materials-container p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.info-block p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.info-note {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #e8b86d;
}

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

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

.contact-image img {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

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

.notes-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.note-item {
    padding: 2rem;
    background-color: #f8f9fa;
}

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

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

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

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

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

.thanks-message {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.service-confirmation {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.service-selected {
    font-size: 1.125rem;
    color: #2c3e50;
}

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

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

.step-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
}

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

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

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.legal-page {
    padding: 4rem 2rem;
    min-height: 60vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.legal-container p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #2c3e50;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #1a252f;
}

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

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

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

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #e8b86d;
}

.footer-column p {
    font-size: 0.95rem;
    color: #adb5bd;
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #adb5bd;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #e8b86d;
    color: #1a1a1a;
}

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

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

.cookie-reject:hover {
    background-color: #3a4046;
}

.cookie-learn {
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-offset,
    .process-split,
    .about-split,
    .team-offset,
    .service-detail-item,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-text,
    .intro-visual,
    .process-steps,
    .process-image,
    .about-text,
    .about-image,
    .team-text,
    .team-image,
    .service-detail-content,
    .service-detail-image,
    .contact-info,
    .contact-image {
        flex: 1;
        order: initial;
    }

    .value-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #1a1a1a;
        flex-direction: column;
        padding: 1rem 2rem;
        display: none;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-content h1,
    .page-hero-content h1 {
        font-size: 2.25rem;
    }

    .intro-text h2,
    .section-header-center h2,
    .about-text h2,
    .values-section h2,
    .team-text h2,
    .method-container h2,
    .cta-simple h2,
    .service-detail-content h2,
    .materials-container h2,
    .contact-info h2,
    .notes-container h2,
    .thanks-container h1,
    .legal-container h1 {
        font-size: 2rem;
    }

    .hero-content,
    .intro-offset,
    .process-split,
    .about-split,
    .team-offset {
        padding: 2rem;
        gap: 2rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .service-detail-item {
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}