:root {
    --primary: #2c3e50;
    --secondary: #e67e22;
    --accent: #3498db;
    --light: #f8f9fa;
    --dark: #1a252f;
    --text: #34495e;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --border: #dce1e5;
    --shadow: rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
}

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

.container-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent);
}

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

h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 2.8rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.2rem; margin-bottom: 1.2rem; }
h3 { font-size: 1.6rem; margin-bottom: 1rem; }
h4 { font-size: 1.3rem; margin-bottom: 0.8rem; }

p {
    margin-bottom: 1.2rem;
}

.ad-disclosure {
    background-color: var(--dark);
    color: var(--text-light);
    font-size: 0.75rem;
    padding: 6px 0;
    text-align: center;
}

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

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

.logo span {
    color: var(--secondary);
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

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

nav a:hover {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 680px;
    padding: 80px 0;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #d35400;
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

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

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--light);
}

.section-dark {
    background-color: var(--dark);
    color: var(--white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

.editorial-block {
    margin-bottom: 48px;
}

.editorial-block p {
    font-size: 1.1rem;
}

.inline-image {
    margin: 32px 0;
    background-color: var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    display: block;
}

.inline-image figcaption {
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    background-color: var(--light);
}

.split-section {
    display: flex;
    gap: 48px;
    align-items: center;
}

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

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    background-color: var(--border);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
    display: flex;
    gap: 24px;
    transition: box-shadow 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 8px 32px var(--shadow);
}

.service-image {
    width: 200px;
    min-width: 200px;
    height: 150px;
    background-color: var(--border);
    border-radius: 6px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
}

.service-info h3 {
    margin-bottom: 0.5rem;
}

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

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.testimonial-block {
    background-color: var(--light);
    padding: 40px;
    border-radius: 8px;
    margin: 48px 0;
    border-left: 4px solid var(--secondary);
}

.testimonial-block blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--text);
}

.testimonial-block cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
}

.cta-inline {
    background-color: var(--primary);
    color: var(--white);
    padding: 48px;
    border-radius: 8px;
    text-align: center;
    margin: 48px 0;
}

.cta-inline h3 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-inline p {
    opacity: 0.9;
    margin-bottom: 24px;
}

.form-container {
    background-color: var(--white);
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 24px var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.contact-info-grid {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

.contact-info-item {
    flex: 1;
    text-align: center;
    padding: 32px;
    background-color: var(--light);
    border-radius: 8px;
}

.contact-info-item h4 {
    margin-bottom: 8px;
}

.contact-info-item p {
    margin: 0;
    color: var(--text-light);
}

footer {
    background-color: var(--dark);
    color: var(--text-light);
    padding: 64px 0 32px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

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

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

.footer-col a {
    color: var(--text-light);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.disclaimer {
    background-color: var(--light);
    padding: 24px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 32px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

.cookie-accept {
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.cookie-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.legal-content {
    padding: 48px 0;
}

.legal-content h1 {
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
    margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

.thanks-box {
    max-width: 600px;
}

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

.thanks-box h1 {
    margin-bottom: 16px;
}

.thanks-box p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-intro {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.about-text {
    flex: 1.5;
}

.about-sidebar {
    flex: 1;
    background-color: var(--light);
    padding: 32px;
    border-radius: 8px;
}

.about-sidebar h4 {
    margin-bottom: 16px;
}

.about-sidebar ul {
    list-style: none;
}

.about-sidebar li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.about-sidebar li:last-child {
    border-bottom: none;
}

.team-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.team-member {
    text-align: center;
    flex: 1;
    max-width: 280px;
}

.team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    background-color: var(--border);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    margin-bottom: 4px;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .header-inner {
        flex-wrap: wrap;
    }

    nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding-top: 16px;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .mobile-toggle {
        display: block;
    }

    .split-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

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

    .service-image {
        width: 100%;
        height: 200px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .about-intro {
        flex-direction: column;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .hero-content h1 {
        font-size: 2.4rem;
    }

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

@media (max-width: 600px) {
    .container,
    .container-narrow {
        padding: 0 16px;
    }

    section {
        padding: 48px 0;
    }

    .form-container {
        padding: 24px;
    }

    .hero {
        min-height: 50vh;
    }

    .hero-content {
        padding: 48px 0;
    }
}
