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

body {
    font-family: 'Inter', sans-serif;
    color: #1e2a2e;
    background: #fff;
    line-height: 1.5;
}

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

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 24px;
    font-weight: 800;
    color: #2d6a4f;
    line-height: 1;
}

.logo-desc {
    font-size: 11px;
    font-weight: 500;
    color: #6c757d;
    letter-spacing: 0.5px;
}

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

nav a {
    text-decoration: none;
    color: #2d3e3f;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover, nav a.active {
    color: #2d6a4f;
}

.phone a {
    text-decoration: none;
    font-weight: 600;
    color: #2d6a4f;
    font-size: 18px;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #2d6a4f;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.btn:hover {
    background: #1b4d3e;
}

.btn-outline {
    display: inline-block;
    border: 2px solid #2d6a4f;
    color: #2d6a4f;
    padding: 10px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: #2d6a4f;
    color: white;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    border: 1px solid #cbd5e1;
    color: #2d3e3f;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: #2d6a4f;
    color: #2d6a4f;
}

.btn-small {
    display: inline-block;
    background: #2d6a4f;
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-small:hover {
    background: #1b4d3e;
}

.text-center {
    text-align: center;
    margin-top: 32px;
}

/* Hero */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ef 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 48px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1e2a2e;
}

.hero-content p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 28px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
}

/* NPS Block */
.nps-block {
    padding: 60px 0;
    background: #2d6a4f;
}

.nps-card {
    display: flex;
    align-items: center;
    gap: 48px;
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
}

.nps-icon img {
    width: 80px;
    height: 80px;
}

.nps-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1e2a2e;
}

.nps-content p {
    margin-bottom: 20px;
    color: #4b5563;
}

.nps-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.nps-content li {
    margin-bottom: 8px;
    color: #2d6a4f;
    font-weight: 500;
}

/* Features */
.features {
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature {
    text-align: center;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: transform 0.2s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature img {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature p {
    color: #6c757d;
    font-size: 14px;
}

/* Products */
.popular-products {
    padding: 80px 0;
    background: #f8f9fa;
}

.popular-products h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
}

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

.product-card h3 {
    padding: 16px 20px 8px;
    font-size: 18px;
}

.product-card p {
    padding: 0 20px;
    color: #6c757d;
    font-size: 14px;
}

.price {
    display: block;
    padding: 12px 20px 20px;
    font-weight: 700;
    color: #2d6a4f;
    font-size: 18px;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
}

.about-preview .container {
    display: flex;
    align-items: center;
    gap: 48px;
}

.about-preview-content {
    flex: 1;
}

.about-preview-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-preview-content p {
    margin-bottom: 16px;
    color: #4b5563;
}

.about-preview-image {
    flex: 1;
}

.about-preview-image img {
    width: 100%;
    border-radius: 20px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4d3e 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* About Page */
.about-content {
    padding: 60px 0;
}

.about-story {
    display: flex;
    gap: 48px;
    margin-bottom: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.story-text p {
    margin-bottom: 16px;
    color: #4b5563;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
}

.mission-values {
    margin-bottom: 60px;
}

.mission-values h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-item {
    text-align: center;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 16px;
}

.value-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2d6a4f;
}

.value-item p {
    color: #6c757d;
    font-size: 14px;
}

.production {
    margin-bottom: 60px;
}

.production h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.production-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.production-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.production-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.production-item h3 {
    padding: 16px 20px 8px;
    font-size: 18px;
}

.production-item p {
    padding: 0 20px 20px;
    color: #6c757d;
    font-size: 14px;
}

.certificates {
    text-align: center;
}

.certificates h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

.certificates-list {
    display: flex;
    justify-content: center;
    gap: 40px;
}

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

.cert-item img {
    margin-bottom: 12px;
}

.cert-item p {
    font-size: 14px;
    color: #4b5563;
}

/* Products Full Catalog */
.catalog {
    padding: 60px 0;
}

.products-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.product-full-card {
    display: flex;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-full-card img {
    width: 200px;
    height: auto;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    flex: 1;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d6a4f;
}

.product-info p {
    color: #4b5563;
    margin-bottom: 12px;
    font-size: 14px;
}

.product-info ul {
    list-style: none;
    margin-bottom: 16px;
}

.product-info li {
    font-size: 14px;
    padding: 4px 0;
    color: #2d3e3f;
}

/* Where to Buy Page */
.where-to-buy {
    padding: 60px 0;
}

.nps-payment-block {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 24px;
}

.nps-payment-icon img {
    width: 100px;
    margin-bottom: 20px;
}

.nps-payment-block h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2d6a4f;
}

.online-store-block {
    margin-bottom: 60px;
}

.online-store-block h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.store-card {
    display: flex;
    gap: 48px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.store-info {
    flex: 1;
}

.store-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d6a4f;
}

.store-info ul {
    list-style: none;
    margin: 20px 0;
}

.store-info li {
    margin-bottom: 10px;
}

.store-buttons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.store-image {
    flex: 0.8;
}

.store-image img {
    width: 100%;
    border-radius: 16px;
}

.payment-instructions {
    background: #f8f9fa;
    padding: 48px;
    border-radius: 24px;
    margin-bottom: 60px;
}

.payment-instructions h2 {
    text-align: center;
    margin-bottom: 40px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #2d6a4f;
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.step p {
    color: #6c757d;
    font-size: 14px;
}

.retail-stores {
    margin-bottom: 60px;
}

.retail-stores h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.store-item {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 16px;
}

.store-item h3 {
    margin-bottom: 12px;
    color: #2d6a4f;
}

.faq {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 24px;
    padding: 48px;
}

.faq h2 {
    font-size: 28px;
    margin-bottom: 32px;
}

.faq-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e9ecef;
}

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

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2d6a4f;
}

/* News Page */
.news-list {
    padding: 60px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.news-card:hover {
    transform: translateY(-5px);
}

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

.news-content {
    padding: 24px;
}

.news-date {
    font-size: 14px;
    color: #2d6a4f;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.news-content h2 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e2a2e;
}

.news-content p {
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.5;
}

.read-more {
    color: #2d6a4f;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.read-more:hover {
    text-decoration: underline;
}

/* Contacts Page */
.contacts-info {
    padding: 60px 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.contact-details h2, .contact-form h2, .map h2, .requisites h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

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

.contact-item h3 {
    font-size: 18px;
    color: #2d6a4f;
    margin-bottom: 8px;
}

.contact-item p {
    color: #4b5563;
}

.contact-item .note {
    font-size: 12px;
    color: #6c757d;
}

.contact-item a {
    color: #2d6a4f;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input, .contact-form textarea {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #2d6a4f;
}

.map {
    margin-bottom: 60px;
}

.map-container {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
}

.map-note {
    margin-top: 16px;
    font-size: 14px;
    color: #6c757d;
    text-align: center;
}

.requisites-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 16px;
}

.requisites-grid p {
    margin-bottom: 8px;
    color: #4b5563;
}

/* Footer */
footer {
    background: #1e2a2e;
    color: #e9ecef;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about .logo {
    margin-bottom: 16px;
}

.footer-about .logo span {
    color: white;
}

.footer-about p {
    font-size: 14px;
    color: #adb5bd;
}

.footer-links h4, .footer-contacts h4, .footer-payment h4 {
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links a {
    display: block;
    color: #adb5bd;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-contacts p {
    margin-bottom: 12px;
    font-size: 14px;
    color: #adb5bd;
}

.footer-contacts a {
    color: #adb5bd;
    text-decoration: none;
}

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

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.payment-icons span {
    background: #2d3e3f;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
}

.payment-icons .highlight {
    background: #2d6a4f;
    color: white;
}

.small {
    font-size: 12px;
    color: #6c757d;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3e3f;
    font-size: 12px;
    color: #6c757d;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid, .products-grid, .steps, .stores-grid, .values-grid, .production-grid, .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-full-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero .container, .about-preview .container, .store-card, .about-story {
        flex-direction: column;
    }
    
    .nps-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .features-grid, .products-grid, .steps, .stores-grid, .values-grid, .production-grid, .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .store-buttons {
        flex-direction: column;
    }
    
    .product-full-card {
        flex-direction: column;
    }
    
    .product-full-card img {
        width: 100%;
        height: 200px;
    }
    
    .certificates-list {
        flex-direction: column;
        align-items: center;
    }
    
    .requisites-grid {
        grid-template-columns: 1fr;
    }
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #2d6a4f;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: #4b5563;
    font-weight: 500;
}

/* Production Full Section */
.production-full {
    padding: 80px 0;
}

.production-full h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
}

.production-full-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.production-full-item {
    display: flex;
    gap: 48px;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
}

.production-full-item.reverse {
    flex-direction: row-reverse;
}

.production-full-item img {
    width: 45%;
    border-radius: 24px;
    object-fit: cover;
}

.production-full-item div {
    flex: 1;
    padding: 24px;
}

.production-full-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1e2a2e;
}

.production-full-item p {
    color: #4b5563;
    line-height: 1.6;
}

/* Quality Section */
.quality {
    padding: 80px 0;
    background: #f8f9fa;
}

.quality h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.quality-item {
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.quality-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2d6a4f;
}

.quality-item p {
    color: #4b5563;
    line-height: 1.6;
}

/* Certificates & Awards */
.certificates-awards {
    padding: 80px 0;
}

.certificates-awards h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.cert-item img {
    margin-bottom: 16px;
}

.cert-item p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.4;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: #f8f9fa;
}

.partners h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 16px;
}

.partners-subtitle {
    text-align: center;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto 48px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.partner-item {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    font-weight: 500;
    color: #2d6a4f;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.partner-item:hover {
    border-color: #2d6a4f;
    background: #f9fef9;
}

.partner-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    font-size: 14px;
    color: #6c757d;
    border-left: 4px solid #2d6a4f;
}

/* Export Section */
.export {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e2a2e 0%, #2d3e3f 100%);
    color: white;
}

.export-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.export-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.export-content p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid,
    .quality-grid,
    .certificates-grid,
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .production-full-item,
    .production-full-item.reverse {
        flex-direction: column;
    }
    
    .production-full-item img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .stats-grid,
    .quality-grid,
    .certificates-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

/* Featured Products Section */
.featured-products {
    padding: 80px 0;
    background: #ffffff;
}

.featured-products h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
}

/* News Preview Section */
.news-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.news-preview h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
}

.news-preview .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.news-preview .news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.news-preview .news-card:hover {
    transform: translateY(-4px);
}

.news-preview .news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-preview .news-content {
    padding: 24px;
}

.news-preview .news-date {
    font-size: 12px;
    color: #2d6a4f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 12px;
}

.news-preview .news-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-preview .news-content p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.read-more {
    color: #2d6a4f;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.read-more:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .news-preview .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-preview .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Wholesale Block */
.wholesale-block {
    margin-bottom: 60px;
}

.wholesale-block h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.wholesale-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 24px;
}

.wholesale-card p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #1e2a2e;
}

.wholesale-card ul {
    margin: 24px 0;
    padding-left: 20px;
}

.wholesale-card li {
    margin-bottom: 10px;
    color: #4b5563;
}

/* News Full Page */
.news-list {
    padding: 60px 0;
}

.news-full-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.news-full-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 32px;
}

.news-full-date {
    font-size: 14px;
    color: #2d6a4f;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-full-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1e2a2e;
}

.news-full-image {
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
}

.news-full-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
}

.news-full-content p {
    margin-bottom: 16px;
    color: #4b5563;
    line-height: 1.6;
}

/* Contacts Page Additions */
.contact-form select {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    background: #fff;
}

.requisites-note {
    margin-top: 20px;
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

@media (max-width: 768px) {
    .news-full-card {
        padding: 20px;
    }
    
    .news-full-card h2 {
        font-size: 22px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.faq-grid .faq-item {
    background: #fff;
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-grid .faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2d6a4f;
}

.faq-grid .faq-item p {
    color: #4b5563;
    line-height: 1.5;
    font-size: 15px;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-grid .faq-item {
        padding: 20px;
    }
}