:root {
    --primary-color: #8B263E;
    --secondary-color: #3D4A41;
    --accent-color: #D4AF37;
    --text-color: #2F2F2F;
    --bg-light: #F7F6F4;
    --bg-dark: #1E2522;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --grid-gap: 2rem;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: #111111;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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

.navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.logo-brand {
    display: flex;
    align-items: center;
}

.navigation-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-color);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.cta-nav-btn {
    background-color: var(--primary-color);
    color: #FFFFFF !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.burger-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition-smooth);
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 37, 34, 0.85) 0%, rgba(139, 38, 62, 0.75) 100%);
    z-index: -1;
}

.hero-content {
    color: #FFFFFF;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.hero-descr {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: #FFFFFF;
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: var(--primary-color);
}

.btn-light {
    background-color: #FFFFFF;
    color: var(--primary-color);
}

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

.about-intro-section {
    padding: 7.5rem 0;
    background-color: var(--bg-light);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.large-intro-paragraph {
    font-size: 1.35rem;
    line-height: 1.7;
    font-weight: 300;
    color: var(--text-color);
}

.image-frame-decor {
    position: relative;
    border: 1px solid var(--primary-color);
    padding: 1rem;
}

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

.market-overview-section {
    padding: 7.5rem 0;
}

.market-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: flex-start;
}

.market-side-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.market-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.market-intro-p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.market-feature {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1.5rem;
}

.market-feature h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.market-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.btn-link {
    font-weight: 600;
    color: var(--primary-color);
}

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

.cta-banner-section {
    padding: 6rem 0;
    background-color: var(--secondary-color);
    color: #FFFFFF;
    text-align: center;
}

.cta-banner-content h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.main-footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand-column p {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.footer-links-column h3, .footer-contacts-column h3 {
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

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

.footer-links-column ul li {
    margin-bottom: 0.75rem;
}

.footer-links-column ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links-column ul li a:hover {
    color: #FFFFFF;
}

.footer-contacts-column p {
    margin-bottom: 1rem;
}

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

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-legal-links a, .cookie-settings-trigger {
    color: rgba(255, 255, 255, 0.6);
}

.cookie-settings-trigger {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
}

.cookie-settings-trigger:hover, .footer-legal-links a:hover {
    color: #FFFFFF;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 1000px;
    background-color: #FFFFFF;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 2rem;
    z-index: 1000;
    display: none;
}

.cookie-banner-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.cookie-banner-text h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cookie-banner-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-banner-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-banner-checkboxes label {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-banner-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

.btn-outline {
    background-color: transparent;
    border-color: #CCCCCC;
    color: var(--text-color);
}

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

.page-header-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.page-header-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 800px;
}

.about-detailed-section {
    padding: 7.5rem 0;
}

.about-detailed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-side-decor-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.about-values {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.value-item h4 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.testimonials-section {
    padding: 7.5rem 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3.5rem;
}

.testimonial-card {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    display: block;
    font-weight: 600;
    color: #111111;
}

.author-position {
    font-size: 0.85rem;
    opacity: 0.8;
}

.services-detail-section {
    padding: 7.5rem 0;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 7.5rem;
}

.service-detail-item:last-child {
    margin-bottom: 0;
}

.service-detail-item.row-reverse {
    direction: rtl;
}

.service-detail-item.row-reverse .service-text {
    direction: ltr;
}

.service-detail-item.row-reverse .service-image {
    direction: ltr;
}

.service-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.service-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.service-text ul {
    margin-top: 2rem;
    list-style: none;
}

.service-text ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.service-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-color);
}

.service-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

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

.faq-accordion {
    max-width: 800px;
    margin: 3.5rem auto 0 auto;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: 4px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    color: #111111;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-trigger::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-trigger::after {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 2rem 1.5rem 2rem;
    display: none;
}

.contact-main-section {
    padding: 7.5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.info-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 4px;
    margin-top: 2rem;
}

.info-card h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-input-group label {
    font-size: 0.9rem;
    font-weight: 600;
}

.form-input-group input, .form-input-group textarea {
    padding: 1rem;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

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

.form-consent-group {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.85rem;
}

.form-consent-group input {
    margin-top: 0.2rem;
}

.btn-block {
    width: 100%;
}

.form-error-msg {
    color: #C0392B;
    font-size: 0.9rem;
    display: none;
}

.map-section {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-list-section {
    padding: 7.5rem 0;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.blog-card {
    background-color: #FFFFFF;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

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

.blog-card-content {
    padding: 2rem;
}

.blog-card-date {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.75rem;
}

.blog-card-content h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.blog-card-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.progress-container {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #EEEEEE;
    z-index: 99;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--accent-color);
}

.article-container {
    padding: 6rem 0;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.article-header {
    margin-bottom: 3.5rem;
}

.article-meta {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.article-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
}

.featured-image {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 3rem;
}

.article-body-text h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.article-body-text p {
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
}

blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
    margin: 3rem 0;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--secondary-color);
}

.article-form-block {
    background-color: var(--bg-light);
    padding: 3.5rem;
    border-radius: 4px;
    margin-top: 5rem;
    text-align: center;
}

.article-form-block h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.article-form-block p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.legal-container {
    max-width: 800px;
    margin: 6rem auto;
    padding: 0 1.5rem;
}

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

.legal-date {
    font-size: 0.9rem;
    margin-bottom: 3.5rem;
    opacity: 0.6;
}

.legal-container h2 {
    font-size: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-container p, .legal-container ul li {
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

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

.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin: 2.5rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

th, td {
    padding: 1rem;
    border: 1px solid #E4E4E4;
    text-align: left;
}

th {
    background-color: var(--bg-light);
    font-family: var(--font-body);
    font-weight: 600;
}

@media (max-width: 991px) {
    .about-intro-grid, .market-grid, .about-detailed-grid, .service-detail-item, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .hero-title {
        font-size: 2.75rem;
    }
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand-column {
        grid-column: span 2;
    }
    .service-detail-item.row-reverse {
        direction: ltr;
    }
}

@media (max-width: 767px) {
    .navigation-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #FFFFFF;
        flex-direction: column;
        padding: 3rem 1.5rem;
        gap: 1.5rem;
        transition: var(--transition-smooth);
    }
    .navigation-menu.active {
        left: 0;
    }
    .burger-btn {
        display: flex;
    }
    .burger-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .burger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand-column {
        grid-column: span 1;
    }
    .footer-bottom-flex {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-legal-links {
        flex-direction: column;
        gap: 1rem;
    }
}