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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #8b7355;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu a {
    padding: 12px 0;
    color: #2c3e50;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu.active {
    display: flex;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.7), rgba(139, 115, 85, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 40px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-button {
    background-color: #8b7355;
    color: #ffffff;
    padding: 16px 45px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #6f5c44;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
}

.intro-section {
    padding: 80px 0;
    background-color: #f8f7f6;
}

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

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

.intro-text p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.8;
}

.services-grid {
    padding: 90px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 600;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 20px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #e9ecef;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-content p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 20px;
}

.select-service-btn {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.form-section {
    padding: 90px 0;
    background-color: #f1ede8;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.form-intro p {
    font-size: 16px;
    color: #546e7a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    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: #8b7355;
}

.submit-btn {
    background-color: #8b7355;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
}

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

.quality-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.quality-section h2 {
    text-align: center;
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 600;
}

.quality-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.quality-card {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.quality-icon {
    font-size: 50px;
    color: #8b7355;
    margin-bottom: 20px;
}

.quality-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.quality-card p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.6;
}

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

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

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.6;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    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;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #8b7355;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-link {
    color: #ffffff;
    font-size: 14px;
    text-decoration: underline;
}

.page-header {
    background-color: #f8f7f6;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #2c3e50;
    font-weight: 600;
}

.page-header p {
    font-size: 18px;
    color: #546e7a;
    margin-top: 15px;
}

.about-content {
    padding: 80px 0;
}

.about-image-text {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-image {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-text p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.about-values h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 600;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f7f6;
    padding: 35px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.7;
}

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

.about-process h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 600;
}

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

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.7;
}

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

.about-team h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-team p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

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

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

.service-detail-content p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 15px;
    color: #546e7a;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "•";
    color: #8b7355;
    font-size: 20px;
    position: absolute;
    left: 0;
}

.price-display {
    font-size: 28px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 25px;
}

.service-detail-image {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-section {
    background-color: #8b7355;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.cta-section .cta-button {
    background-color: #ffffff;
    color: #8b7355;
}

.cta-section .cta-button:hover {
    background-color: #f0f0f0;
}

.contact-section {
    padding: 80px 0;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-card {
    flex: 1;
    background-color: #f8f7f6;
    padding: 40px;
    border-radius: 8px;
}

.contact-info-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info-card p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
}

.info-note {
    font-size: 14px;
    color: #8b7355;
    margin-top: 15px;
}

.contact-map-placeholder {
    background-color: #e9ecef;
    height: 350px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.map-overlay {
    max-width: 600px;
    text-align: center;
    padding: 40px;
}

.map-overlay p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
}

.contact-additional h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 600;
}

.help-options {
    display: flex;
    gap: 40px;
}

.help-card {
    flex: 1;
    background-color: #f8f7f6;
    padding: 35px;
    border-radius: 8px;
}

.help-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.help-card p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f7f6;
}

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

.thanks-icon {
    font-size: 80px;
    color: #8b7355;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

.thanks-message {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 40px;
}

.selected-service-info {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 50px;
    border-left: 4px solid #8b7355;
}

.thanks-next-steps h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 35px;
    font-weight: 600;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: center;
    text-align: left;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #8b7355;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

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

.btn-primary {
    background-color: #8b7355;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background-color: transparent;
    color: #8b7355;
    border: 2px solid #8b7355;
    padding: 14px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #8b7355;
    color: #ffffff;
}

.legal-page {
    padding: 60px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.update-date {
    font-size: 14px;
    color: #8b7355;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

    .service-card {
        width: 100%;
    }

    .quality-cards {
        flex-direction: column;
    }

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

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

    .about-image-text,
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }

    .contact-info-grid {
        flex-direction: column;
    }

    .help-options {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}