/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Museo+Moderno:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&display=swap");

/* Icon styles để đảm bảo Font Awesome hoạt động */
.fas,
.far,
.fab,
.fal {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Fallback cho icons không load */
i[class*="fa-"]:before {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "FontAwesome",
        sans-serif !important;
    font-weight: 900;
}

/* CSS Variables */
:root {
    --primary-color: #5e936c;
    --secondary-color: #23262f;
    --accent-color: #5e936c;
    --text-light: #ffffff;
    --text-dark: #23262f;
    --text-muted: rgba(35, 38, 47, 0.7);
    --bg-overlay: rgba(35, 38, 47, 0.85);
    --gradient-primary: linear-gradient(135deg, #5e936c 0%, #5e936c 100%);
    --gradient-dark: linear-gradient(135deg, #23262f 0%, #34373e 100%);
    --shadow-light: 0 4px 20px rgba(94, 147, 108, 0.1);
    --shadow-medium: 0 8px 40px rgba(35, 38, 47, 0.15);
    --shadow-dark: 0 20px 60px rgba(35, 38, 47, 0.3);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Font Family - Museo Moderno */
* {
    font-family: "Museo Moderno", sans-serif !important;
}

/* Hero Section About - Sang trọng và hiện đại */
.hero-section-about {
    position: relative;
    overflow: hidden;
    min-height: 75vh;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 249, 250, 0.98) 25%,
        rgba(241, 243, 245, 0.95) 50%,
        rgba(248, 249, 250, 0.98) 75%,
        rgba(255, 255, 255, 0.95) 100%
    );
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(
            circle at 20% 20%,
            rgba(191, 167, 106, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(191, 167, 106, 0.06) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 60%,
            rgba(35, 38, 47, 0.03) 0%,
            transparent 50%
        );
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
            30deg,
            rgba(191, 167, 106, 0.02) 12%,
            transparent 12.5%,
            transparent 87%,
            rgba(191, 167, 106, 0.02) 87.5%,
            rgba(191, 167, 106, 0.02)
        ),
        linear-gradient(
            150deg,
            rgba(191, 167, 106, 0.02) 12%,
            transparent 12.5%,
            transparent 87%,
            rgba(191, 167, 106, 0.02) 87.5%,
            rgba(191, 167, 106, 0.02)
        );
    background-size: 80px 80px;
    background-position: 0 0, 0 0, 40px 40px, 40px 40px;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content-about {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(191, 167, 106, 0.1);
    border: 1px solid rgba(191, 167, 106, 0.2);
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.hero-title-about {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.title-main {
    display: block;
    color: var(--secondary-color);
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, #3e5f44 0%, #3e5f44 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

.hero-subtitle-about {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    font-weight: 400;
}

.hero-subtitle-about strong {
    color: var(--primary-color);
    font-weight: 600;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: "Inter", sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0.3;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Page Layout */
.about-page {
    background: #ffffff;
    font-family: "Museo Moderno", sans-serif;
}

/* Header Styles */
.section-title-main {
    font-family: "Museo Moderno", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.company-badge {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-light);
    border: none;
}

/* Introduction Section */
.intro-section-centered {
    padding: 3rem 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.intro-section-centered::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(191, 167, 106, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    pointer-events: none;
}

.company-logo-centered {
    margin-bottom: 2rem;
}

.logo-circle-centered {
    width: 120px;
    height: 120px;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: none !important;
    transition: var(--transition-smooth);
    margin: 0 auto;
}

.logo-circle-centered .logo-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.section-title-centered {
    font-family: "Museo Moderno", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.intro-content-centered {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.intro-text-centered {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    text-align: justify;
    margin-bottom: 0;
    font-weight: 400;
}

.trust-badge-centered {
    background: linear-gradient(135deg, #5e936c 0%, #4a7c58 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(94, 147, 108, 0.3);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.trust-badge-centered i {
    font-size: 1.1rem;
}

/* Content Sections */
.content-section {
    border-bottom: 1px solid rgba(191, 167, 106, 0.1);
    padding-bottom: 3rem;
    margin-bottom: 3rem;
}

.content-section:last-child {
    border-bottom: none;
}

/* Animations */
@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

/* Services Section - BEM */
.services {
    max-width: 1000px;
    margin: 0 auto;
}

.services__title {
    font-family: "Museo Moderno", sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1d1d1f;
    text-align: center;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.services__content {
    margin-top: 2.5rem;
}

.services__group {
    height: 100%;
}

.services__group-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.services__group-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(191, 167, 106, 0.3);
}

.services__group-icon i {
    font-size: 1rem;
    color: white;
}

.services__group-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.services__group-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #515154;
    margin-bottom: 2rem;
}

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

.services__item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #d2d2d7;
}

.services__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.services__item-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.services__item-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.services__item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.services__item-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #515154;
    margin-bottom: 0;
}

/* Services Section Hover Effects and Interactions */
.services__group {
    transition: var(--transition-smooth);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin: -1rem;
}

.services__item {
    padding: 1rem;
    margin: -1rem -1rem 0.5rem -1rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border-bottom: 1px solid #d2d2d7;
}

.services__item:last-child {
    border-bottom: none;
    margin-bottom: -1rem;
}

.services__item-icon {
    transition: var(--transition-smooth);
}

.services__group-icon {
    transition: var(--transition-smooth);
}

/* Products Section - BEM */
.products {
    max-width: 1000px;
    margin: 0 auto;
}

.products__title {
    font-family: "Museo Moderno", sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1d1d1f;
    text-align: center;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.products__content {
    margin-top: 2.5rem;
}

.products__category {
    height: 100%;
}

.products__category-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.products__category-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(191, 167, 106, 0.3);
}

.products__category-icon i {
    font-size: 1rem;
    color: white;
}

.products__category-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.products__category-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #515154;
    margin-bottom: 2rem;
}

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

.products__item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #d2d2d7;
}

.products__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.products__item-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.products__item-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.products__item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.products__item-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #515154;
    margin-bottom: 0;
}

/* Products Special Section */
.products__special {
    background: linear-gradient(
        135deg,
        rgba(191, 167, 106, 0.1) 0%,
        rgba(212, 192, 133, 0.05) 100%
    );
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(191, 167, 106, 0.2);
    text-align: center;
}

.products__special-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.products__special-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    box-shadow: 0 4px 15px rgba(191, 167, 106, 0.3);
}

.products__special-icon i {
    font-size: 1.25rem;
    color: white;
}

.products__special-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

.products__special-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #515154;
    margin-bottom: 1.5rem;
}

.products__special-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    font-style: italic;
    box-shadow: 0 4px 15px rgba(191, 167, 106, 0.3);
}

/* Products Section Hover Effects and Interactions */
.products__category {
    transition: var(--transition-smooth);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin: -1rem;
}

.products__item {
    padding: 1rem;
    margin: -1rem -1rem 0.5rem -1rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border-bottom: 1px solid #d2d2d7;
}

.products__item:last-child {
    border-bottom: none;
    margin-bottom: -1rem;
}

.products__item-icon {
    transition: var(--transition-smooth);
}

.products__category-icon {
    transition: var(--transition-smooth);
}

.products__special {
    transition: var(--transition-smooth);
    cursor: pointer;
}

/* Contact Section - BEM */
.contact {
    max-width: 800px;
    margin: 0 auto;
}

.contact__logo {
    margin-bottom: 2rem;
}

.contact__title {
    font-family: "Museo Moderno", sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1d1d1f;
    text-align: center;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.contact__description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #515154;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact__content {
    margin-top: 2.5rem;
}

.contact__company-name {
    text-align: center;
    margin-bottom: 2rem;
}

.contact__company-title {
    font-family: "Museo Moderno", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

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

.contact__item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #d2d2d7;
    transition: var(--transition-smooth);
}

.contact__item-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact__item-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    margin-right: 0.75rem;
    flex-shrink: 0;
    font-size: 1rem;
}

.contact__item-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

.contact__item-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #515154;
    margin-bottom: 0;
}

/* Contact Section Enhanced Interactions */
.contact__item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #d2d2d7;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(191, 167, 106, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.contact__item-icon {
    transition: var(--transition-smooth);
}

.contact__logo {
    transition: var(--transition-smooth);
}

/* Policies Section - BEM */
.policies {
    max-width: 1000px;
    margin: 0 auto;
}

.policies__title {
    font-family: "Museo Moderno", sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1d1d1f;
    text-align: center;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.policies__content {
    margin-top: 2.5rem;
}

.policies__category {
    height: 100%;
}

.policies__category-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.policies__category-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(191, 167, 106, 0.3);
}

.policies__category-icon i {
    font-size: 1rem;
    color: white;
}

.policies__category-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.policies__category-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #515154;
    margin-bottom: 2rem;
}

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

.policies__item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #d2d2d7;
}

.policies__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.policies__item-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.policies__item-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.policies__item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.policies__item-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #515154;
    margin-bottom: 0;
}

/* Policies Section Enhanced Interactions */
.policies__category {
    transition: var(--transition-smooth);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin: -1rem;
}

.policies__item {
    padding: 1rem;
    margin: -1rem -1rem 0.5rem -1rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border-bottom: 1px solid #d2d2d7;
}

.policies__item:last-child {
    border-bottom: none;
    margin-bottom: -1rem;
}

.policies__item-icon {
    transition: var(--transition-smooth);
}

.policies__category-icon {
    transition: var(--transition-smooth);
}

/* Cooperation Section - BEM */
.cooperation {
    max-width: 1000px;
    margin: 0 auto;
}

.cooperation__title {
    font-family: "Museo Moderno", sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1d1d1f;
    text-align: center;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.cooperation__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cooperation__content {
    margin-top: 2.5rem;
}

.cooperation__category {
    height: 100%;
}

.cooperation__category-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.cooperation__category-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(191, 167, 106, 0.3);
}

.cooperation__category-icon i {
    font-size: 1rem;
    color: white;
}

.cooperation__category-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

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

.cooperation__item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #d2d2d7;
}

.cooperation__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cooperation__item-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.cooperation__item-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.cooperation__item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.cooperation__item-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #515154;
    margin-bottom: 0;
}

/* Cooperation Section Enhanced Interactions */
.cooperation__category {
    transition: var(--transition-smooth);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin: -1rem;
}

.cooperation__item {
    padding: 1rem;
    margin: -1rem -1rem 0.5rem -1rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border-bottom: 1px solid #d2d2d7;
    position: relative;
}

.cooperation__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--gradient-primary);
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transition: var(--transition-smooth);
}

.cooperation__item:last-child {
    border-bottom: none;
    margin-bottom: -1rem;
}

.cooperation__item-icon {
    transition: var(--transition-smooth);
}

.cooperation__category-icon {
    transition: var(--transition-smooth);
}

/* CTA Section - BEM */
.cta {
    background: linear-gradient(
        135deg,
        rgba(191, 167, 106, 0.1) 0%,
        rgba(212, 192, 133, 0.05) 100%
    );
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(191, 167, 106, 0.2);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.4) 100%
    );
    pointer-events: none;
}

.cta__content {
    position: relative;
    z-index: 2;
}

.cta__title {
    font-family: "Playfair Display", serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 1rem;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.cta__description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #515154;
    max-width: 600px;
    margin: 0 auto;
}

.cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.cta__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    letter-spacing: -0.01em;
}

.cta__button--primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(191, 167, 106, 0.3);
}

.cta__button--secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta__button i {
    font-size: 1rem;
}

/* CTA Section Enhanced Interactions */
.cta {
    background: linear-gradient(
        135deg,
        rgba(191, 167, 106, 0.1) 0%,
        rgba(212, 192, 133, 0.05) 100%
    );
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(191, 167, 106, 0.2);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(191, 167, 106, 0.2);
    border-color: rgba(191, 167, 106, 0.3);
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.4) 100%
    );
    pointer-events: none;
    transition: var(--transition-smooth);
}

.cta:hover::before {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.6) 100%
    );
}

.cta__title {
    transition: var(--transition-smooth);
}

.cta:hover .cta__title {
    color: var(--primary-color);
}

.cta__button {
    position: relative;
    overflow: hidden;
}

.cta__button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.cta__button:hover::before {
    left: 100%;
}

.cta__button i {
    transition: var(--transition-smooth);
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .hero-title-about {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title-main {
        font-size: 2.2rem;
    }

    .shape-1 {
        width: 100px;
        height: 100px;
    }

    .shape-2 {
        width: 70px;
        height: 70px;
    }

    .shape-3 {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 992px) {
    .hero-section-about {
        min-height: 60vh;
    }

    .hero-title-about {
        font-size: clamp(1.8rem, 4.5vw, 3rem);
    }

    .hero-subtitle-about {
        font-size: 1.125rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .shape-1 {
        width: 80px;
        height: 80px;
    }

    .shape-2 {
        width: 60px;
        height: 60px;
    }

    .shape-3 {
        width: 40px;
        height: 40px;
    }

    .about-page .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section-title-main {
        font-size: 2rem;
    }

    .intro-section-centered {
        padding: 2rem 1.5rem;
    }
    .logo-circle-centered {
        width: 100px;
        height: 100px;
        font-size: 1.8rem;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    /* Services Section Tablet */
    .services {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .services__title {
        font-size: 2rem;
    }

    .services__content {
        margin-top: 2rem;
    }

    .services__group-title {
        font-size: 1.625rem;
    }

    .services__group-description {
        font-size: 1.0625rem;
    }

    .services__item-title {
        font-size: 1.1875rem;
    }
    .services__item-description {
        font-size: 0.9375rem;
    }

    /* Products Section Tablet */
    .products {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .products__title {
        font-size: 2rem;
    }

    .products__content {
        margin-top: 2rem;
    }

    .products__category-title {
        font-size: 1.625rem;
    }

    .products__category-description {
        font-size: 1.0625rem;
    }

    .products__item-title {
        font-size: 1.1875rem;
    }

    .products__item-description {
        font-size: 0.9375rem;
    }
    .products__special {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .products__special-title {
        font-size: 1.375rem;
    }

    .products__special-description {
        font-size: 1.0625rem;
    }
    .products__special-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }

    /* Contact Section Tablet */
    .contact {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .contact__title {
        font-size: 2rem;
    }

    .contact__description {
        font-size: 1.0625rem;
        max-width: 100%;
    }

    .contact__content {
        margin-top: 2rem;
    }

    .contact__company-title {
        font-size: 1.375rem;
    }

    .contact__list {
        gap: 1.25rem;
    }

    .contact__item {
        padding: 1.25rem;
    }

    .contact__item-title {
        font-size: 1.0625rem;
    }
    .contact__item-description {
        font-size: 0.9375rem;
    }

    /* Policies Section Tablet */
    .policies {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .policies__title {
        font-size: 2rem;
    }

    .policies__content {
        margin-top: 2rem;
    }

    .policies__category-title {
        font-size: 1.625rem;
    }

    .policies__category-description {
        font-size: 1.0625rem;
    }

    .policies__item-title {
        font-size: 1.1875rem;
    }
    .policies__item-description {
        font-size: 0.9375rem;
    }

    /* Cooperation Section Tablet */
    .cooperation {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .cooperation__title {
        font-size: 2rem;
    }

    .cooperation__description {
        font-size: 1.0625rem;
        max-width: 100%;
    }

    .cooperation__content {
        margin-top: 2rem;
    }

    .cooperation__category-title {
        font-size: 1.625rem;
    }

    .cooperation__item-title {
        font-size: 1.1875rem;
    }
    .cooperation__item-description {
        font-size: 0.9375rem;
    }

    /* FAQ Section Tablet */
    .faq {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .faq__title {
        font-size: 2rem;
    }

    .faq__description {
        font-size: 1.0625rem;
        max-width: 100%;
    }

    .faq__content {
        margin-top: 2rem;
    }

    .faq__question {
        padding: 1.25rem;
    }

    .faq__question-title {
        font-size: 1.0625rem;
    }

    .faq__answer-content {
        padding: 1.25rem;
        font-size: 0.9375rem;
    }

    .faq__answer-group {
        padding: 0.875rem;
    }
    .faq__answer-group-title {
        font-size: 0.9375rem;
    }

    /* CTA Section Tablet */
    .cta {
        border-radius: 16px;
        padding: 2.5rem 1.5rem;
    }

    .cta__title {
        font-size: 2rem;
        margin-bottom: 0.875rem;
    }

    .cta__description {
        font-size: 1.0625rem;
        max-width: 100%;
    }

    .cta__buttons {
        gap: 0.875rem;
        margin-top: 1.75rem;
    }

    .cta__button {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 768px) {
    .hero-section-about {
        min-height: 50vh;
    }

    .min-vh-75 {
        min-height: 50vh;
    }

    .hero-content-about {
        padding: 1rem 0;
    }

    .hero-badge {
        padding: 0.375rem 1rem;
        font-size: 0.8rem;
    }

    .hero-title-about {
        font-size: clamp(1.6rem, 4vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .title-main {
        margin-bottom: 0.5rem;
    }

    .title-accent {
        margin-top: 0.25rem;
    }

    .hero-subtitle-about {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        gap: 1rem;
        flex-direction: row;
        justify-content: space-between;
    }

    .stat-item {
        flex: 1;
        min-width: 0;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-divider {
        display: none !important;
    }

    .shape {
        display: none;
    }

    .about-page .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .section-title-main {
        font-size: 1.8rem;
    }

    .gradient-text {
        display: block;
        margin-top: 0.5rem;
    }

    .lead {
        font-size: 1rem;
    }

    .company-badge {
        padding: 8px 16px;
        font-size: 0.875rem;
    }

    .intro-section-centered {
        padding: 1.5rem 1rem;
    }

    .section-title-centered {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
    }

    .intro-text-centered {
        font-size: 1rem;
        text-align: left;
    }

    .logo-circle-centered {
        width: 90px;
        height: 90px;
        font-size: 1.5rem;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    .trust-badge-centered {
        padding: 8px 16px;
        font-size: 0.875rem;
    }

    /* Services Section Mobile Optimization */
    .services {
        max-width: 100%;
        padding: 0 1rem;
    }

    .services__title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .services__content {
        margin-top: 1.5rem;
    }

    .services__group-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1.25rem;
    }

    .services__group-icon {
        width: 40px;
        height: 40px;
        margin-right: 0;
        margin-bottom: 0.75rem;
    }

    .services__group-icon i {
        font-size: 1.125rem;
    }

    .services__group-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .services__group-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .services__list {
        gap: 1.25rem;
    }

    .services__item {
        padding-bottom: 1.25rem;
    }

    .services__item-header {
        align-items: center;
        margin-bottom: 0.75rem;
    }

    .services__item-icon {
        width: 24px;
        height: 24px;
        font-size: 1rem;
        margin-right: 0.75rem;
        margin-top: 0;
    }

    .services__item-title {
        font-size: 1.125rem;
        line-height: 1.3;
    }
    .services__item-description {
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    /* Disable hover effects on touch devices */
    .services__group:hover {
        background: transparent;
        transform: none;
    }

    .services__item:hover {
        background: transparent;
        box-shadow: none;
        transform: none;
        border-bottom-color: #d2d2d7;
    }

    .services__item:hover .services__item-icon {
        color: var(--primary-color);
        transform: none;
    }

    .services__group:hover .services__group-icon {
        transform: none;
        box-shadow: 0 4px 15px rgba(191, 167, 106, 0.3);
    }

    /* Add better touch targets */
    .services__item {
        padding: 1.25rem 1rem;
        margin: -0.25rem -1rem 0.75rem -1rem;
        border-radius: 16px;
        min-height: 48px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .services__item-header {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Products Section Mobile Optimization */
    .products {
        max-width: 100%;
        padding: 0 1rem;
    }

    .products__title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .products__content {
        margin-top: 1.5rem;
    }

    .products__category-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1.25rem;
    }

    .products__category-icon {
        width: 40px;
        height: 40px;
        margin-right: 0;
        margin-bottom: 0.75rem;
    }

    .products__category-icon i {
        font-size: 1.125rem;
    }

    .products__category-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .products__category-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .products__list {
        gap: 1.25rem;
    }

    .products__item {
        padding: 1.25rem 1rem;
        margin: -0.25rem -1rem 0.75rem -1rem;
        border-radius: 16px;
        min-height: 48px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-bottom: 1.25rem;
    }

    .products__item-header {
        align-items: center;
        margin-bottom: 0.75rem;
        min-height: 44px;
        display: flex;
    }

    .products__item-icon {
        width: 24px;
        height: 24px;
        font-size: 1rem;
        margin-right: 0.75rem;
        margin-top: 0;
    }

    .products__item-title {
        font-size: 1.125rem;
        line-height: 1.3;
    }

    .products__item-description {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    .products__special {
        padding: 1.25rem;
        margin-top: 1.75rem;
        text-align: left;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .products__special-header {
        justify-content: flex-start;
        margin-bottom: 0.75rem;
    }

    .products__special-icon {
        width: 36px;
        height: 36px;
        margin-right: 0.75rem;
    }

    .products__special-icon i {
        font-size: 1.125rem;
    }

    .products__special-title {
        font-size: 1.25rem;
        line-height: 1.3;
    }

    .products__special-description {
        font-size: 1rem;
        margin-bottom: 1rem;
        text-align: left;
    }

    .products__special-badge {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        border-radius: 20px;
    }

    /* Disable hover effects on touch devices for products */
    .products__category:hover {
        background: transparent;
        transform: none;
    }

    .products__item:hover {
        background: transparent;
        box-shadow: none;
        transform: none;
        border-bottom-color: #d2d2d7;
    }

    .products__item:hover .products__item-icon {
        color: var(--primary-color);
        transform: none;
    }

    .products__category:hover .products__category-icon {
        transform: none;
        box-shadow: 0 4px 15px rgba(191, 167, 106, 0.3);
    }

    .products__special:hover {
        transform: none;
        box-shadow: none;
        border-color: rgba(191, 167, 106, 0.2);
    }

    .products__special:hover .products__special-icon {
        transform: none;
        box-shadow: 0 4px 15px rgba(191, 167, 106, 0.3);
    }

    /* Contact Section Mobile Optimization */
    .contact {
        max-width: 100%;
        padding: 0 1rem;
    }

    .contact__logo {
        margin-bottom: 1.5rem;
    }

    .contact__title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .contact__description {
        font-size: 1rem;
        text-align: left;
        max-width: 100%;
    }

    .contact__content {
        margin-top: 1.5rem;
    }

    .contact__company-name {
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .contact__company-title {
        font-size: 1.25rem;
        line-height: 1.3;
    }

    .contact__list {
        gap: 1rem;
    }

    .contact__item {
        padding: 1.25rem 1rem;
        border-radius: 16px;
        min-height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact__item-header {
        margin-bottom: 0.75rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .contact__item-icon {
        width: 28px;
        height: 28px;
        font-size: 1.125rem;
        margin-right: 1rem;
    }

    .contact__item-title {
        font-size: 1.125rem;
        line-height: 1.3;
    }

    .contact__item-description {
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    /* Disable hover effects on touch devices for contact */
    .contact__item::before {
        display: none;
    }

    .contact__item:hover {
        border-color: #d2d2d7;
        box-shadow: none;
        transform: none;
    }

    .contact__item:hover .contact__item-icon {
        color: var(--primary-color);
        transform: none;
    }

    .contact__item:hover .contact__item-title {
        color: #1d1d1f;
    }

    .contact__logo:hover {
        transform: none;
    } /* Enhanced touch targets for contact */
    .contact__item {
        cursor: default;
        -webkit-tap-highlight-color: rgba(191, 167, 106, 0.1);
    }

    /* Policies Section Mobile Optimization */
    .policies {
        max-width: 100%;
        padding: 0 1rem;
    }

    .policies__title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .policies__content {
        margin-top: 1.5rem;
    }

    .policies__category-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1.25rem;
    }

    .policies__category-icon {
        width: 40px;
        height: 40px;
        margin-right: 0;
        margin-bottom: 0.75rem;
    }

    .policies__category-icon i {
        font-size: 1.125rem;
    }

    .policies__category-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .policies__category-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .policies__list {
        gap: 1.25rem;
    }

    .policies__item {
        padding: 1.25rem 1rem;
        margin: -0.25rem -1rem 0.75rem -1rem;
        border-radius: 16px;
        min-height: 48px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-bottom: 1.25rem;
    }

    .policies__item-header {
        align-items: center;
        margin-bottom: 0.75rem;
        min-height: 44px;
        display: flex;
    }

    .policies__item-icon {
        width: 24px;
        height: 24px;
        font-size: 1rem;
        margin-right: 0.75rem;
        margin-top: 0;
    }

    .policies__item-title {
        font-size: 1.125rem;
        line-height: 1.3;
    }

    .policies__item-description {
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    /* Disable hover effects on touch devices for policies */
    .policies__category:hover {
        background: transparent;
        transform: none;
    }

    .policies__item:hover {
        background: transparent;
        box-shadow: none;
        transform: none;
        border-bottom-color: #d2d2d7;
    }

    .policies__item:hover .policies__item-icon {
        color: var(--primary-color);
        transform: none;
    }

    .policies__category:hover .policies__category-icon {
        transform: none;
        box-shadow: 0 4px 15px rgba(191, 167, 106, 0.3);
    }

    /* Cooperation Section Mobile Optimization */
    .cooperation {
        max-width: 100%;
        padding: 0 1rem;
    }

    .cooperation__title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .cooperation__description {
        font-size: 1rem;
        text-align: left;
        max-width: 100%;
        line-height: 1.6;
    }

    .cooperation__content {
        margin-top: 1.5rem;
    }

    .cooperation__category-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 1.25rem;
    }

    .cooperation__category-icon {
        width: 40px;
        height: 40px;
        margin-right: 0;
        margin-bottom: 0.75rem;
    }

    .cooperation__category-icon i {
        font-size: 1.125rem;
    }

    .cooperation__category-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .cooperation__list {
        gap: 1.25rem;
    }

    .cooperation__item {
        padding: 1.25rem 1rem;
        margin: -0.25rem -1rem 0.75rem -1rem;
        border-radius: 16px;
        min-height: 48px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-bottom: 1.25rem;
    }

    .cooperation__item-header {
        align-items: center;
        margin-bottom: 0.75rem;
        min-height: 44px;
        display: flex;
    }

    .cooperation__item-icon {
        width: 24px;
        height: 24px;
        font-size: 1rem;
        margin-right: 0.75rem;
        margin-top: 0;
    }

    .cooperation__item-title {
        font-size: 1.125rem;
        line-height: 1.3;
    }

    .cooperation__item-description {
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    /* Disable hover effects on touch devices for cooperation */
    .cooperation__category:hover {
        background: transparent;
        transform: none;
    }

    .cooperation__item::before {
        display: none;
    }

    .cooperation__item:hover {
        background: transparent;
        box-shadow: none;
        transform: none;
        border-bottom-color: #d2d2d7;
    }

    .cooperation__item:hover .cooperation__item-icon {
        color: var(--primary-color);
        transform: none;
    }

    .cooperation__category:hover .cooperation__category-icon {
        transform: none;
        box-shadow: 0 4px 15px rgba(191, 167, 106, 0.3);
    }

    /* Enhanced touch targets for cooperation */
    .cooperation__item {
        cursor: default;
        -webkit-tap-highlight-color: rgba(191, 167, 106, 0.1);
    }

    /* FAQ Section Mobile Optimization */
    .faq {
        max-width: 100%;
        padding: 0 1rem;
    }

    .faq__title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .faq__description {
        font-size: 1rem;
        text-align: left;
        max-width: 100%;
        line-height: 1.6;
    }

    .faq__content {
        margin-top: 1.5rem;
    }

    .faq__item {
        border-radius: 16px;
        margin-bottom: 0.875rem;
    }

    .faq__question {
        padding: 1.25rem 1rem;
        min-height: 60px;
        display: flex;
        align-items: center;
    }

    .faq__question-header {
        flex: 1;
        min-width: 0;
    }

    .faq__question-icon {
        width: 28px;
        height: 28px;
        font-size: 1.125rem;
        margin-right: 1rem;
        flex-shrink: 0;
    }

    .faq__question-title {
        font-size: 1.125rem;
        line-height: 1.3;
        word-wrap: break-word;
    }

    .faq__chevron {
        font-size: 1rem;
        margin-left: 0.5rem;
        flex-shrink: 0;
    }

    .faq__answer-content {
        padding: 1.25rem 1rem;
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    .faq__answer-group {
        padding: 1rem;
        margin-bottom: 0.875rem;
        border-radius: 12px;
    }

    .faq__answer-group-title {
        font-size: 1rem;
        margin-bottom: 0.625rem;
    }

    .faq__answer-group-icon {
        font-size: 1.125rem;
        margin-right: 0.625rem;
    }

    .faq__answer-list li {
        padding: 0.375rem 0;
        padding-left: 1.25rem;
        line-height: 1.4;
    }

    /* Disable hover effects on touch devices for FAQ */
    .faq__item::before {
        display: none;
    }

    .faq__item:hover {
        border-color: #d2d2d7;
        box-shadow: none;
        transform: none;
    }

    .faq__question:hover {
        background: white;
    }

    .faq__question:hover .faq__question-icon {
        transform: none;
    }

    .faq__answer-group:hover {
        background: rgba(191, 167, 106, 0.05);
        transform: none;
    }

    /* Enhanced touch targets for FAQ */
    .faq__question {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(191, 167, 106, 0.1);
        touch-action: manipulation;
    }

    .faq__item {
        touch-action: manipulation;
    }

    /* CTA Section Mobile Optimization */
    .cta {
        border-radius: 16px;
        padding: 2rem 1.25rem;
        margin: 0 1rem;
        text-align: left;
    }

    .cta__content {
        text-align: center;
    }

    .cta__title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .cta__description {
        font-size: 1rem;
        line-height: 1.5;
        max-width: 100%;
        text-align: center;
    }

    .cta__buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
        align-items: stretch;
    }

    .cta__button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
        min-height: 48px;
        border-radius: 16px;
    }

    .cta__button i {
        font-size: 1.125rem;
    }

    /* Disable hover effects on touch devices for CTA */
    .cta:hover {
        transform: none;
        box-shadow: none;
        border-color: rgba(191, 167, 106, 0.2);
    }

    .cta:hover::before {
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.4) 100%
        );
    }

    .cta:hover .cta__title {
        color: #1d1d1f;
    }

    .cta__button::before {
        display: none;
    }

    .cta__button:hover::before {
        left: -100%;
    }

    .cta__button:hover i {
        transform: none;
    }

    /* Enhanced touch targets for CTA */
    .cta__button {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(191, 167, 106, 0.2);
        touch-action: manipulation;
    }

    .cta__button--primary:hover {
        color: white;
        transform: none;
        box-shadow: 0 4px 15px rgba(191, 167, 106, 0.3);
    }

    .cta__button--secondary:hover {
        color: var(--primary-color);
        background: white;
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 576px) {
    .hero-section-about {
        min-height: 45vh;
    }

    .hero-content-about {
        padding: 0.5rem 0;
    }

    .hero-badge {
        padding: 0.25rem 0.75rem;
        font-size: 0.75rem;
    }

    .hero-title-about {
        font-size: clamp(1.4rem, 3.5vw, 2rem);
        margin-bottom: 0.75rem;
    }

    .hero-subtitle-about {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .hero-stats {
        gap: 0.5rem;
    }

    .about-page .container-fluid {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .section-title-main {
        font-size: 1.6rem;
    }

    .lead {
        font-size: 0.9375rem;
    }

    .company-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .intro-section-centered {
        padding: 1rem 0.75rem;
    }

    .section-title-centered {
        font-size: clamp(1.25rem, 3vw, 1.75rem);
    }

    .intro-text-centered {
        font-size: 0.9375rem;
    }

    .logo-circle-centered {
        width: 80px;
        height: 80px;
        font-size: 1.25rem;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    .trust-badge-centered {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    /* Services Section Mobile Small Screens */
    .services {
        padding: 0 0.75rem;
    }

    .services__title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .services__content {
        margin-top: 1.25rem;
    }

    .services__group-header {
        margin-bottom: 1rem;
    }

    .services__group-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
    }

    .services__group-title {
        font-size: 1.375rem;
    }

    .services__group-description {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }

    .services__list {
        gap: 1rem;
    }

    .services__item {
        padding-bottom: 1rem;
    }

    .services__item-header {
        margin-bottom: 0.5rem;
    }

    .services__item-icon {
        width: 20px;
        height: 20px;
        font-size: 0.875rem;
        margin-right: 0.5rem;
    }

    .services__item-title {
        font-size: 1rem;
        line-height: 1.25;
    }
    .services__item-description {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    /* Touch optimizations for small screens */
    .services__item {
        padding: 1rem 0.75rem;
        margin: -0.25rem -0.75rem 0.5rem -0.75rem;
        border-radius: 12px;
        min-height: 44px;
    }

    .services__item-header {
        min-height: 40px;
    } /* Enhanced readability */
    .services__group {
        padding: 0.75rem;
        margin: -0.75rem;
    }

    /* Products Section Mobile Small Screens */
    .products {
        padding: 0 0.75rem;
    }

    .products__title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .products__content {
        margin-top: 1.25rem;
    }

    .products__category-header {
        margin-bottom: 1rem;
    }

    .products__category-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
    }

    .products__category-title {
        font-size: 1.375rem;
    }

    .products__category-description {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }

    .products__list {
        gap: 1rem;
    }

    .products__item {
        padding: 1rem 0.75rem;
        margin: -0.25rem -0.75rem 0.5rem -0.75rem;
        border-radius: 12px;
        min-height: 44px;
        padding-bottom: 1rem;
    }

    .products__item-header {
        margin-bottom: 0.5rem;
        min-height: 40px;
    }

    .products__item-icon {
        width: 20px;
        height: 20px;
        font-size: 0.875rem;
        margin-right: 0.5rem;
    }

    .products__item-title {
        font-size: 1rem;
        line-height: 1.25;
    }

    .products__item-description {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    .products__special {
        padding: 1rem;
        margin-top: 1.5rem;
        min-height: 100px;
    }

    .products__special-header {
        margin-bottom: 0.5rem;
    }

    .products__special-icon {
        width: 32px;
        height: 32px;
    }

    .products__special-icon i {
        font-size: 1rem;
    }

    .products__special-title {
        font-size: 1.125rem;
    }

    .products__special-description {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }

    .products__special-badge {
        padding: 0.375rem 0.875rem;
        font-size: 0.8125rem;
        border-radius: 18px;
    } /* Touch optimizations for small screens */
    .products__category {
        padding: 0.75rem;
        margin: -0.75rem;
    }

    /* Contact Section Mobile Small Screens */
    .contact {
        padding: 0 0.75rem;
    }

    .contact__logo {
        margin-bottom: 1.25rem;
    }

    .contact__title {
        font-size: 1.5rem;
        line-height: 1.25;
    }

    .contact__description {
        font-size: 0.9375rem;
    }

    .contact__content {
        margin-top: 1.25rem;
    }

    .contact__company-name {
        margin-bottom: 1.25rem;
    }

    .contact__company-title {
        font-size: 1.125rem;
    }

    .contact__list {
        gap: 0.875rem;
    }

    .contact__item {
        padding: 1rem 0.75rem;
        border-radius: 12px;
        min-height: 72px;
    }

    .contact__item-header {
        margin-bottom: 0.5rem;
        min-height: 40px;
    }

    .contact__item-icon {
        width: 24px;
        height: 24px;
        font-size: 1rem;
        margin-right: 0.75rem;
    }

    .contact__item-title {
        font-size: 1rem;
        line-height: 1.25;
    }
    .contact__item-description {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    /* Policies Section Mobile Small Screens */
    .policies {
        padding: 0 0.75rem;
    }

    .policies__title {
        font-size: 1.5rem;
        line-height: 1.25;
    }

    .policies__content {
        margin-top: 1.25rem;
    }

    .policies__category-header {
        margin-bottom: 1rem;
    }

    .policies__category-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
    }

    .policies__category-title {
        font-size: 1.375rem;
    }

    .policies__category-description {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }

    .policies__list {
        gap: 1rem;
    }

    .policies__item {
        padding: 1rem 0.75rem;
        margin: -0.25rem -0.75rem 0.5rem -0.75rem;
        border-radius: 12px;
        min-height: 44px;
        padding-bottom: 1rem;
    }

    .policies__item-header {
        margin-bottom: 0.5rem;
        min-height: 40px;
    }

    .policies__item-icon {
        width: 20px;
        height: 20px;
        font-size: 0.875rem;
        margin-right: 0.5rem;
    }

    .policies__item-title {
        font-size: 1rem;
        line-height: 1.25;
    }

    .policies__item-description {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    /* Touch optimizations for small screens */
    .policies__category {
        padding: 0.75rem;
        margin: -0.75rem;
    }

    /* Cooperation Section Mobile Small Screens */
    .cooperation {
        padding: 0 0.75rem;
    }

    .cooperation__title {
        font-size: 1.5rem;
        line-height: 1.25;
    }

    .cooperation__description {
        font-size: 0.9375rem;
    }

    .cooperation__content {
        margin-top: 1.25rem;
    }

    .cooperation__category-header {
        margin-bottom: 1rem;
    }

    .cooperation__category-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
    }

    .cooperation__category-title {
        font-size: 1.375rem;
    }

    .cooperation__list {
        gap: 1rem;
    }

    .cooperation__item {
        padding: 1rem 0.75rem;
        margin: -0.25rem -0.75rem 0.5rem -0.75rem;
        border-radius: 12px;
        min-height: 44px;
        padding-bottom: 1rem;
    }

    .cooperation__item-header {
        margin-bottom: 0.5rem;
        min-height: 40px;
    }

    .cooperation__item-icon {
        width: 20px;
        height: 20px;
        font-size: 0.875rem;
        margin-right: 0.5rem;
    }

    .cooperation__item-title {
        font-size: 1rem;
        line-height: 1.25;
    }

    .cooperation__item-description {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    /* Touch optimizations for small screens */
    .cooperation__category {
        padding: 0.75rem;
        margin: -0.75rem;
    }

    /* FAQ Section Mobile Small Screens */
    .faq {
        padding: 0 0.75rem;
    }

    .faq__title {
        font-size: 1.5rem;
        line-height: 1.25;
    }

    .faq__description {
        font-size: 0.9375rem;
    }

    .faq__content {
        margin-top: 1.25rem;
    }

    .faq__item {
        border-radius: 12px;
        margin-bottom: 0.75rem;
    }

    .faq__question {
        padding: 1rem 0.75rem;
        min-height: 56px;
    }

    .faq__question-icon {
        width: 24px;
        height: 24px;
        font-size: 1rem;
        margin-right: 0.75rem;
    }

    .faq__question-title {
        font-size: 1rem;
        line-height: 1.25;
    }

    .faq__chevron {
        font-size: 0.875rem;
    }

    .faq__answer-content {
        padding: 1rem 0.75rem;
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .faq__answer-group {
        padding: 0.875rem;
        margin-bottom: 0.75rem;
        border-radius: 10px;
    }

    .faq__answer-group-title {
        font-size: 0.9375rem;
        margin-bottom: 0.5rem;
    }

    .faq__answer-group-icon {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    .faq__answer-list li {
        padding: 0.25rem 0;
        padding-left: 1rem;
        font-size: 0.875rem;
    }

    /* CTA Section Mobile Small Screens */
    .cta {
        border-radius: 12px;
        padding: 1.5rem 1rem;
        margin: 0 0.75rem;
    }

    .cta__title {
        font-size: 1.5rem;
        line-height: 1.25;
        margin-bottom: 0.875rem;
    }

    .cta__description {
        font-size: 0.9375rem;
        line-height: 1.4;
    }

    .cta__buttons {
        gap: 0.625rem;
        margin-top: 1.25rem;
    }

    .cta__button {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
        min-height: 44px;
        border-radius: 12px;
    }

    .cta__button i {
        font-size: 1rem;
    }

    .cta__button--secondary {
        border-width: 1.5px;
    }
}

@media (max-width: 400px) {
    .hero-section-about {
        min-height: 40vh;
    }

    .hero-title-about {
        font-size: clamp(1.2rem, 3vw, 1.75rem);
    }

    .hero-subtitle-about {
        font-size: 0.875rem;
    }

    .stat-item {
        min-width: 70px;
    }

    .stat-number {
        font-size: 1.125rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .hero-badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }

    .section-title-main {
        font-size: 1.4rem;
    }

    .lead {
        font-size: 0.875rem;
    }

    .company-badge {
        padding: 4px 8px;
        font-size: 0.75rem;
    }

    .intro-section-centered {
        padding: 0.75rem 0.5rem;
    }

    .section-title-centered {
        font-size: 1.375rem;
    }

    .intro-text-centered {
        font-size: 0.875rem;
    }

    .logo-circle-centered {
        width: 70px;
        height: 70px;
        font-size: 1.125rem;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    .trust-badge-centered {
        padding: 4px 8px;
        font-size: 0.75rem;
    }

    /* Services Section Extra Small Screens */
    .services {
        padding: 0 0.5rem;
    }

    .services__title {
        font-size: 1.375rem;
        line-height: 1.2;
    }

    .services__content {
        margin-top: 1rem;
    }

    .services__group-header {
        margin-bottom: 0.75rem;
    }

    .services__group-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.5rem;
    }

    .services__group-icon i {
        font-size: 1rem;
    }

    .services__group-title {
        font-size: 1.25rem;
        line-height: 1.15;
    }

    .services__group-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .services__list {
        gap: 0.875rem;
    }

    .services__item {
        padding-bottom: 0.875rem;
    }

    .services__item-header {
        margin-bottom: 0.375rem;
    }

    .services__item-icon {
        width: 18px;
        height: 18px;
        font-size: 0.75rem;
        margin-right: 0.375rem;
    }

    .services__item-title {
        font-size: 0.9375rem;
        line-height: 1.2;
    }
    .services__item-description {
        font-size: 0.8125rem;
        line-height: 1.35;
    }

    /* Optimized for very small screens */
    .services__item {
        padding: 0.875rem 0.5rem;
        margin: -0.125rem -0.5rem 0.375rem -0.5rem;
        border-radius: 10px;
        min-height: 40px;
    }

    .services__item-header {
        min-height: 36px;
    }

    .services__group {
        padding: 0.5rem;
        margin: -0.5rem;
    } /* Improved spacing for readability */
    .services__list {
        gap: 0.75rem;
    }

    /* Products Section Extra Small Screens */
    .products {
        padding: 0 0.5rem;
    }

    .products__title {
        font-size: 1.375rem;
        line-height: 1.2;
    }

    .products__content {
        margin-top: 1rem;
    }

    .products__category-header {
        margin-bottom: 0.75rem;
    }

    .products__category-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.5rem;
    }

    .products__category-icon i {
        font-size: 1rem;
    }

    .products__category-title {
        font-size: 1.25rem;
        line-height: 1.15;
    }

    .products__category-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .products__list {
        gap: 0.875rem;
    }

    .products__item {
        padding: 0.875rem 0.5rem;
        margin: -0.125rem -0.5rem 0.375rem -0.5rem;
        border-radius: 10px;
        min-height: 40px;
        padding-bottom: 0.875rem;
    }

    .products__item-header {
        margin-bottom: 0.375rem;
        min-height: 36px;
    }

    .products__item-icon {
        width: 18px;
        height: 18px;
        font-size: 0.75rem;
        margin-right: 0.375rem;
    }

    .products__item-title {
        font-size: 0.9375rem;
        line-height: 1.2;
    }

    .products__item-description {
        font-size: 0.8125rem;
        line-height: 1.35;
    }
    .products__special {
        padding: 0.75rem 0.5rem;
        margin-top: 1.25rem;
        min-height: 80px;
    }

    .products__special-header {
        margin-bottom: 0.375rem;
    }

    .products__special-icon {
        width: 28px;
        height: 28px;
        margin-right: 0.5rem;
    }

    .products__special-icon i {
        font-size: 0.875rem;
    }

    .products__special-title {
        font-size: 1rem;
        line-height: 1.2;
    }

    .products__special-description {
        font-size: 0.8125rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .products__special-badge {
        padding: 0.25rem 0.75rem;
        font-size: 0.75rem;
        border-radius: 15px;
    } /* Optimized for very small screens */
    .products__category {
        padding: 0.5rem;
        margin: -0.5rem;
    }

    /* Contact Section Extra Small Screens */
    .contact {
        padding: 0 0.5rem;
    }

    .contact__logo {
        margin-bottom: 1rem;
    }

    .contact__title {
        font-size: 1.375rem;
        line-height: 1.2;
    }

    .contact__description {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .contact__content {
        margin-top: 1rem;
    }

    .contact__company-name {
        margin-bottom: 1rem;
    }

    .contact__company-title {
        font-size: 1rem;
        line-height: 1.2;
    }

    .contact__list {
        gap: 0.75rem;
    }

    .contact__item {
        padding: 0.875rem 0.5rem;
        border-radius: 10px;
        min-height: 64px;
    }

    .contact__item-header {
        margin-bottom: 0.375rem;
        min-height: 36px;
    }

    .contact__item-icon {
        width: 20px;
        height: 20px;
        font-size: 0.875rem;
        margin-right: 0.5rem;
    }

    .contact__item-title {
        font-size: 0.9375rem;
        line-height: 1.2;
    }
    .contact__item-description {
        font-size: 0.8125rem;
        line-height: 1.35;
    }

    /* Policies Section Extra Small Screens */
    .policies {
        padding: 0 0.5rem;
    }

    .policies__title {
        font-size: 1.375rem;
        line-height: 1.2;
    }

    .policies__content {
        margin-top: 1rem;
    }

    .policies__category-header {
        margin-bottom: 0.75rem;
    }

    .policies__category-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.5rem;
    }

    .policies__category-icon i {
        font-size: 1rem;
    }

    .policies__category-title {
        font-size: 1.25rem;
        line-height: 1.15;
    }

    .policies__category-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .policies__list {
        gap: 0.875rem;
    }

    .policies__item {
        padding: 0.875rem 0.5rem;
        margin: -0.125rem -0.5rem 0.375rem -0.5rem;
        border-radius: 10px;
        min-height: 40px;
        padding-bottom: 0.875rem;
    }

    .policies__item-header {
        margin-bottom: 0.375rem;
        min-height: 36px;
    }

    .policies__item-icon {
        width: 18px;
        height: 18px;
        font-size: 0.75rem;
        margin-right: 0.375rem;
    }

    .policies__item-title {
        font-size: 0.9375rem;
        line-height: 1.2;
    }

    .policies__item-description {
        font-size: 0.8125rem;
        line-height: 1.35;
    }

    /* Optimized for very small screens */
    .policies__category {
        padding: 0.5rem;
        margin: -0.5rem;
    }

    /* Cooperation Section Extra Small Screens */
    .cooperation {
        padding: 0 0.5rem;
    }

    .cooperation__title {
        font-size: 1.375rem;
        line-height: 1.2;
    }

    .cooperation__description {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .cooperation__content {
        margin-top: 1rem;
    }

    .cooperation__category-header {
        margin-bottom: 0.75rem;
    }

    .cooperation__category-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.5rem;
    }

    .cooperation__category-icon i {
        font-size: 1rem;
    }

    .cooperation__category-title {
        font-size: 1.25rem;
        line-height: 1.15;
    }

    .cooperation__list {
        gap: 0.875rem;
    }

    .cooperation__item {
        padding: 0.875rem 0.5rem;
        margin: -0.125rem -0.5rem 0.375rem -0.5rem;
        border-radius: 10px;
        min-height: 40px;
        padding-bottom: 0.875rem;
    }

    .cooperation__item-header {
        margin-bottom: 0.375rem;
        min-height: 36px;
    }

    .cooperation__item-icon {
        width: 18px;
        height: 18px;
        font-size: 0.75rem;
        margin-right: 0.375rem;
    }

    .cooperation__item-title {
        font-size: 0.9375rem;
        line-height: 1.2;
    }

    .cooperation__item-description {
        font-size: 0.8125rem;
        line-height: 1.35;
    }

    /* Optimized for very small screens */
    .cooperation__category {
        padding: 0.5rem;
        margin: -0.5rem;
    }

    /* FAQ Section Extra Small Screens */
    .faq {
        padding: 0 0.5rem;
    }

    .faq__title {
        font-size: 1.375rem;
        line-height: 1.2;
    }

    .faq__description {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .faq__content {
        margin-top: 1rem;
    }

    .faq__item {
        border-radius: 10px;
        margin-bottom: 0.625rem;
    }

    .faq__question {
        padding: 0.875rem 0.5rem;
        min-height: 52px;
    }

    .faq__question-icon {
        width: 20px;
        height: 20px;
        font-size: 0.875rem;
        margin-right: 0.5rem;
    }

    .faq__question-title {
        font-size: 0.9375rem;
        line-height: 1.2;
    }

    .faq__chevron {
        font-size: 0.75rem;
        margin-left: 0.25rem;
    }

    .faq__answer-content {
        padding: 0.875rem 0.5rem;
        font-size: 0.8125rem;
        line-height: 1.35;
    }

    .faq__answer-group {
        padding: 0.75rem 0.5rem;
        margin-bottom: 0.625rem;
        border-radius: 8px;
    }

    .faq__answer-group-title {
        font-size: 0.875rem;
        margin-bottom: 0.375rem;
    }

    .faq__answer-group-icon {
        font-size: 0.875rem;
        margin-right: 0.375rem;
    }

    .faq__answer-list li {
        padding: 0.1875rem 0;
        padding-left: 0.875rem;
        font-size: 0.8125rem;
        line-height: 1.3;
    }
    .faq__answer-list li:before {
        font-size: 0.875rem;
    }

    /* CTA Section Extra Small Screens */
    .cta {
        border-radius: 10px;
        padding: 1.25rem 0.75rem;
        margin: 0 0.5rem;
    }

    .cta__title {
        font-size: 1.375rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .cta__description {
        font-size: 0.875rem;
        line-height: 1.35;
    }

    .cta__buttons {
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .cta__button {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        min-height: 40px;
        border-radius: 10px;
    }

    .cta__button i {
        font-size: 0.875rem;
    }

    .cta__button--secondary {
        border-width: 1px;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section-about {
        min-height: 100vh;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: center;
    }

    .stat-item {
        flex: none;
        min-width: auto;
    }

    /* Services optimization for landscape */
    .services {
        padding: 0 2rem;
    }

    .services__title {
        font-size: 1.875rem;
        margin-bottom: 1.5rem;
    }

    .services__content {
        margin-top: 1.5rem;
    }

    .services__group-header {
        flex-direction: row;
        align-items: center;
        margin-bottom: 1rem;
    }

    .services__group-icon {
        margin-right: 0.75rem;
        margin-bottom: 0;
    }

    .services__list {
        gap: 1rem;
    }
    .services__item {
        padding: 0.75rem;
        margin: -0.25rem -0.75rem 0.5rem -0.75rem;
    }

    /* Products optimization for landscape */
    .products {
        padding: 0 2rem;
    }

    .products__title {
        font-size: 1.875rem;
        margin-bottom: 1.5rem;
    }

    .products__content {
        margin-top: 1.5rem;
    }

    .products__category-header {
        flex-direction: row;
        align-items: center;
        margin-bottom: 1rem;
    }

    .products__category-icon {
        margin-right: 0.75rem;
        margin-bottom: 0;
    }

    .products__list {
        gap: 1rem;
    }

    .products__item {
        padding: 0.75rem;
        margin: -0.25rem -0.75rem 0.5rem -0.75rem;
    }
    .products__special {
        padding: 1rem;
        margin-top: 2rem;
        text-align: center;
    }
    .products__special-header {
        justify-content: center;
    }

    /* Contact optimization for landscape */
    .contact {
        padding: 0 2rem;
    }

    .contact__title {
        font-size: 1.875rem;
    }

    .contact__description {
        font-size: 1rem;
        text-align: center;
    }

    .contact__content {
        margin-top: 1.5rem;
    }

    .contact__company-name {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .contact__list {
        gap: 1rem;
    }
    .contact__item {
        padding: 1rem 0.75rem;
        min-height: 72px;
    }
    .contact__item-header {
        min-height: 40px;
    }

    /* Policies optimization for landscape */
    .policies {
        padding: 0 2rem;
    }

    .policies__title {
        font-size: 1.875rem;
    }

    .policies__content {
        margin-top: 1.5rem;
    }

    .policies__category-header {
        flex-direction: row;
        align-items: center;
        margin-bottom: 1rem;
    }

    .policies__category-icon {
        margin-right: 0.75rem;
        margin-bottom: 0;
    }

    .policies__list {
        gap: 1rem;
    }

    .policies__item {
        padding: 0.75rem;
        margin: -0.25rem -0.75rem 0.5rem -0.75rem;
    }

    /* Cooperation optimization for landscape */
    .cooperation {
        padding: 0 2rem;
    }

    .cooperation__title {
        font-size: 1.875rem;
    }

    .cooperation__description {
        font-size: 1rem;
        text-align: center;
    }

    .cooperation__content {
        margin-top: 1.5rem;
    }

    .cooperation__category-header {
        flex-direction: row;
        align-items: center;
        margin-bottom: 1rem;
    }

    .cooperation__category-icon {
        margin-right: 0.75rem;
        margin-bottom: 0;
    }

    .cooperation__list {
        gap: 1rem;
    }

    .cooperation__item {
        padding: 0.75rem;
        margin: -0.25rem -0.75rem 0.5rem -0.75rem;
    }

    /* FAQ optimization for landscape */
    .faq {
        padding: 0 2rem;
    }

    .faq__title {
        font-size: 1.875rem;
    }

    .faq__description {
        font-size: 1rem;
        text-align: center;
    }

    .faq__content {
        margin-top: 1.5rem;
    }

    .faq__item {
        margin-bottom: 0.875rem;
    }

    .faq__question {
        padding: 1rem 1.25rem;
        min-height: 56px;
    }

    .faq__question-icon {
        width: 24px;
        height: 24px;
        margin-right: 0.75rem;
    }

    .faq__question-title {
        font-size: 1.0625rem;
    }

    .faq__answer-content {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }
    .faq__answer-group {
        padding: 0.875rem;
        margin-bottom: 0.75rem;
    }

    /* CTA optimization for landscape */
    .cta {
        border-radius: 16px;
        padding: 2rem 1.5rem;
        margin: 0 2rem;
        text-align: center;
    }

    .cta__title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }

    .cta__description {
        font-size: 1rem;
        text-align: center;
    }

    .cta__buttons {
        flex-direction: row;
        gap: 1rem;
        margin-top: 1.5rem;
        justify-content: center;
    }

    .cta__button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        min-height: 44px;
        flex: none;
        max-width: 200px;
    }
}

/* Contact Item Styles for Privacy Policy */
.contact-item {
    padding: 1.5rem;
    background: rgba(191, 167, 106, 0.03);
    border: 1px solid rgba(191, 167, 106, 0.1);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-smooth);
}

.contact-item:hover {
    background: rgba(191, 167, 106, 0.05);
    border-color: rgba(191, 167, 106, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.contact-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-info {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.contact-info a {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.contact-info a:hover {
    color: var(--text-dark);
    text-decoration: underline !important;
}

/* Responsive Contact Items */
@media (max-width: 768px) {
    .contact-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .contact-title {
        font-size: 1rem;
    }

    .contact-info {
        font-size: 0.9375rem;
    }
}
