:root {
    --color-primary: #c9a227;
    --color-primary-dark: #a88620;
    --color-secondary: #2a2a2a;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-inverse: #ffffff;
    --color-bg: #ffffff;
    --color-bg-alt: #f5f5f5;
    --color-bg-dark: #1a1a1a;
    --color-border: #e0e0e0;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

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

a:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    color: var(--color-secondary);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-bg);
    box-shadow: var(--shadow-soft);
}

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--color-text-light);
    background-color: var(--color-bg-alt);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

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

.nav-link {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.nav-link.active {
    color: var(--color-primary);
}

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

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition);
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-text-inverse);
}

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

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

.btn-light {
    background-color: var(--color-text-inverse);
    color: var(--color-secondary);
}

.btn-light:hover {
    background-color: var(--color-bg-alt);
    color: var(--color-secondary);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

.hero {
    background-color: var(--color-bg-alt);
}

.hero-split {
    display: flex;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.intro-section {
    padding: 5rem 2rem;
}

.intro-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    margin-bottom: 1.5rem;
}

.services-preview {
    background-color: var(--color-bg-alt);
    padding: 5rem 2rem;
}

.services-preview-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-preview-container h2 {
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1;
    background-color: var(--color-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.service-card-image {
    height: 180px;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.service-card .price {
    display: block;
    padding: 1rem 1.5rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
}

.services-cta {
    margin-top: 2rem;
}

.features-section {
    padding: 5rem 2rem;
}

.features-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-content {
    flex: 1;
}

.features-content h2 {
    margin-bottom: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features-list li {
    display: flex;
    flex-direction: column;
}

.features-list li strong {
    font-size: 1.125rem;
    color: var(--color-secondary);
    margin-bottom: 0.25rem;
}

.features-list li span {
    color: var(--color-text-light);
}

.features-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.cta-section {
    background-color: var(--color-bg-dark);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-container h2 {
    color: var(--color-text-inverse);
    margin-bottom: 1rem;
}

.cta-container p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.form-section {
    padding: 5rem 2rem;
    background-color: var(--color-bg-alt);
}

.form-container {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    margin-bottom: 1rem;
}

.form-info p {
    color: var(--color-text-light);
}

.contact-form {
    flex: 1;
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-secondary);
}

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

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

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

.footer {
    background-color: var(--color-secondary);
    color: var(--color-text-inverse);
    padding-top: 4rem;
}

.footer-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.footer-brand {
    flex: 1.5;
}

.footer-brand h3 {
    color: var(--color-text-inverse);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-links,
.footer-legal,
.footer-contact {
    flex: 1;
}

.footer h4 {
    color: var(--color-text-inverse);
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color var(--transition);
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-bottom .disclaimer {
    font-size: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-secondary);
    color: var(--color-text-inverse);
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.page-hero {
    background-color: var(--color-bg-dark);
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-content h1 {
    color: var(--color-text-inverse);
    margin-bottom: 1rem;
}

.page-hero-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin: 0;
}

.about-intro {
    padding: 5rem 2rem;
}

.about-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

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

.values-section {
    background-color: var(--color-bg-alt);
    padding: 5rem 2rem;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.values-container h2 {
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 1;
    padding: 2rem;
    background-color: var(--color-bg);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.value-icon {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.value-item h3 {
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin: 0;
}

.team-section {
    padding: 5rem 2rem;
}

.team-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    margin-bottom: 1.5rem;
}

.approach-section {
    background-color: var(--color-bg-alt);
    padding: 5rem 2rem;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.approach-container h2 {
    margin-bottom: 3rem;
}

.approach-steps {
    display: flex;
    gap: 2rem;
}

.approach-step {
    flex: 1;
    text-align: left;
    padding: 2rem;
    background-color: var(--color-bg);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.step-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.approach-step h3 {
    margin-bottom: 0.75rem;
}

.approach-step p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin: 0;
}

.cta-about {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #2a2a2a 100%);
}

.services-detail {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-block-reverse {
    flex-direction: row-reverse;
}

.service-block-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.service-block-image img {
    width: 100%;
    height: auto;
}

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

.service-block-content h2 {
    margin-bottom: 1rem;
}

.service-block-content > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.service-pricing {
    background-color: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.pricing-summary {
    background-color: var(--color-bg-alt);
    padding: 5rem 2rem;
}

.pricing-summary-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pricing-summary-container h2 {
    margin-bottom: 1rem;
}

.pricing-summary-container > p {
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.pricing-table {
    background-color: var(--color-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-header {
    background-color: var(--color-secondary);
    color: var(--color-text-inverse);
    font-weight: 600;
}

.pricing-row span:last-child {
    font-weight: 600;
    color: var(--color-primary);
}

.pricing-header span:last-child {
    color: var(--color-text-inverse);
}

.services-form-section {
    padding: 5rem 2rem;
}

.services-form-container {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-form-info {
    flex: 1;
}

.services-form-info h2 {
    margin-bottom: 1rem;
}

.services-form-info p {
    color: var(--color-text-light);
}

.contact-main {
    padding: 5rem 2rem;
}

.contact-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-block {
    flex: 1;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
    color: var(--color-primary);
}

.contact-details h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.contact-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.hours-row span:first-child {
    color: var(--color-text);
}

.hours-row span:last-child {
    font-weight: 600;
}

.contact-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.contact-additional {
    background-color: var(--color-bg-alt);
    padding: 5rem 2rem;
}

.contact-additional-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    flex: 1;
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin: 0;
}

.contact-note-section {
    padding: 3rem 2rem;
}

.contact-note-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-note-container p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin: 0;
}

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

.thanks-container {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.thanks-container h1 {
    margin-bottom: 1rem;
}

.thanks-main {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.thanks-service {
    background-color: var(--color-bg-alt);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-service p {
    margin: 0;
}

.thanks-info {
    text-align: left;
    background-color: var(--color-bg-alt);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-info p {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.thanks-info ul {
    padding-left: 1.25rem;
}

.thanks-info ul li {
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.thanks-info ul li::before {
    content: '•';
    position: absolute;
    left: -1rem;
    color: var(--color-primary);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.legal-page {
    padding: 4rem 2rem;
}

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

.legal-container h1 {
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--color-text-light);
    font-size: 0.875rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.legal-content p {
    color: var(--color-text);
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.legal-content ul li::before {
    content: '•';
    position: absolute;
    left: -1rem;
    color: var(--color-primary);
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        padding: 3rem 2rem;
    }

    .hero-image {
        height: 300px;
    }

    .intro-container,
    .features-split,
    .about-split,
    .team-split,
    .form-container,
    .services-form-container,
    .contact-split {
        flex-direction: column;
    }

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

    .values-grid,
    .approach-steps {
        flex-wrap: wrap;
    }

    .value-item,
    .approach-step {
        flex: 1 1 calc(50% - 1rem);
    }

    .service-block,
    .service-block-reverse {
        flex-direction: column;
    }

    .footer-container {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 1 1 100%;
        margin-bottom: 2rem;
    }

    .footer-links,
    .footer-legal,
    .footer-contact {
        flex: 1 1 calc(33% - 2rem);
    }

    .contact-additional-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .header-container {
        padding: 1rem;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        box-shadow: var(--shadow-medium);
        padding: 1rem;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--color-border);
    }

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

    .ad-disclosure {
        display: none;
    }

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

    .footer-links,
    .footer-legal,
    .footer-contact {
        flex: 1 1 100%;
    }

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

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

    .pricing-row {
        flex-direction: column;
        gap: 0.25rem;
        text-align: left;
    }
}
