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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c7a17a;
    --accent-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

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

.navbar {
    background-color: var(--bg-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.hero-left p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.intro-section {
    padding: 100px 0;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.3;
}

.content-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.content-block img {
    border-radius: 8px;
}

.philosophy-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.philosophy-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.philosophy-section p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: center;
}

.values-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    font-size: 1rem;
}

.services-preview {
    padding: 100px 0;
}

.services-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
    text-align: center;
}

.services-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

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

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.process-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
    text-align: center;
}

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

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

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    min-width: 80px;
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.testimonials-section {
    padding: 100px 0;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
    text-align: center;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.author {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.cta-section {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-large {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 20px 50px;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

.cta-large:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

.btn-large {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 4px;
}

.btn-large:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

.form-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.form-section > div > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 16px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

.btn-submit:hover {
    background-color: var(--accent-color);
}

.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

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

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 20px;
    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;
    margin: 0;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--accent-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    padding: 10px 24px;
    border: 1px solid var(--bg-white);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    background-color: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

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

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

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 8px;
    width: 100%;
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.service-features li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.pricing-info {
    margin-bottom: 30px;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.price-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.philosophy-deep {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.philosophy-deep h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.philosophy-deep p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-detailed {
    padding: 80px 0;
}

.values-detailed h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
}

.values-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-block {
    flex: 1;
    min-width: 320px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-icon {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.value-block h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.approach-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.approach-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.approach-section > div > p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.approach-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.approach-item h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.approach-item p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.stats-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

.cta-about {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.info-block a {
    color: var(--secondary-color);
    font-weight: 600;
}

.info-block a:hover {
    text-decoration: underline;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    border-radius: 8px;
    width: 100%;
}

.faq-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-contact {
    padding: 80px 0;
    text-align: center;
}

.cta-contact h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-contact p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.service-confirm {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-weight: 600;
    color: var(--secondary-color);
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-details ul {
    list-style: none;
}

.thanks-details li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: var(--text-light);
}

.thanks-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.thanks-contact {
    color: var(--text-light);
}

.thanks-contact a {
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-page {
    padding: 80px 0;
}

.update-date {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 40px;
}

.legal-content li {
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.data-table th,
.data-table td {
    border: 1px solid var(--border-color);
    padding: 15px;
    text-align: left;
}

.data-table th {
    background-color: var(--bg-light);
    color: var(--primary-color);
    font-weight: 600;
}

.data-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: var(--transition);
        gap: 20px;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 60px 30px;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-right {
        min-height: 400px;
    }

    .split-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .services-layout {
        flex-direction: column;
    }

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

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .contact-layout {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-actions button {
        width: 100%;
    }

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

    .values-layout {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .data-table {
        font-size: 0.9rem;
    }

    .data-table th,
    .data-table td {
        padding: 10px;
    }
}
