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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b6f47;
    --accent-color: #c89f6f;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd9;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

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

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

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

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

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

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

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

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

.btn-accept {
    background: var(--accent-color);
    color: white;
}

.btn-accept:hover {
    background: var(--secondary-color);
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

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

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.hero-visual {
    flex: 1;
}

.hero-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.intro-cards {
    padding: 80px 20px;
    background: var(--bg-light);
}

.intro-cards .container {
    display: flex;
    gap: 40px;
}

.card-intro {
    flex: 1;
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.card-icon {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.card-intro h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.philosophy-section {
    padding: 100px 20px;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.split-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.link-inline {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: var(--accent-color);
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.services-grid {
    padding: 100px 20px;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

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

.card-body {
    padding: 30px;
}

.card-body h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card-body p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.btn-card {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-card:hover {
    background: var(--secondary-color);
}

.testimonial-section {
    padding: 80px 20px;
    background: var(--primary-color);
    color: white;
}

.testimonial {
    padding: 40px 0;
    border-left: 4px solid var(--accent-color);
    padding-left: 40px;
    margin-bottom: 30px;
}

.testimonial p {
    font-size: 22px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial cite {
    font-size: 16px;
    color: var(--accent-color);
    font-style: normal;
}

.form-section {
    padding: 100px 20px;
}

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

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.main-form {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 8px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.process-cards {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.process-card {
    flex: 1;
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.process-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.cta-banner {
    padding: 100px 20px;
    background: var(--secondary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
}

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

.cta-large {
    display: inline-block;
    padding: 18px 50px;
    background: white;
    color: var(--primary-color);
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta a {
    display: block;
    padding: 16px 32px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: var(--bg-light);
    border-radius: 8px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-container p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-highlight {
    background: white;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    border-left: 4px solid var(--secondary-color);
}

.service-highlight strong {
    color: var(--secondary-color);
}

.contact-info {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.contact-details h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-item p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background: var(--bg-light);
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.about-hero {
    padding: 100px 20px;
    text-align: center;
    background: var(--bg-light);
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-hero p {
    font-size: 22px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-story {
    padding: 100px 20px;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.values-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.values-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.value-card {
    flex: 1;
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-page p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.legal-page ul li {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

.services-page-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-detail {
    padding: 80px 20px;
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        border-top: 1px solid var(--border-color);
        display: none;
    }

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

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .hero-card {
        flex-direction: column;
        padding: 50px 20px;
    }

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

    .intro-cards .container {
        flex-direction: column;
    }

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

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

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

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

@media (max-width: 768px) {
    .service-card {
        flex: 1 1 100%;
    }

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