.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.page-hero h1 {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-md);
}

.about-content-section {
    padding: var(--spacing-3xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-text-block h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-lg);
    color: var(--primary-dark);
}

.about-text-block p {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.about-image-block img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Contacts Page */
.contacts-section {
    padding: var(--spacing-3xl) 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.contact-icon i {
    font-size: 1.75rem;
    color: white;
}

.contact-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-form-block {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact-form-block h2 {
    margin-bottom: var(--spacing-xl);
    color: var(--primary-dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    transition: var(--transition);
}

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

.company-details {
    line-height: 1.8;
}

@media (max-width: 968px) {
    .about-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }
}

/* Delivery Page Styles */
.delivery-section {
    padding: 3rem 0;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.delivery-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.delivery-card:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.delivery-card-featured {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f59e0b;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.delivery-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.delivery-icon i {
    font-size: 2.5rem;
    color: white;
}

.delivery-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.delivery-details p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #64748b;
}

.delivery-details strong {
    color: #1e293b;
}

.price-free {
    color: #10b981;
    font-weight: 700;
    font-size: 1.25rem;
}

.tc-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.tc-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    color: #64748b;
}

.tc-list i {
    color: #10b981;
}

.delivery-info-box {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.delivery-info-box h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.info-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.payment-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.payment-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.payment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.payment-icon i {
    font-size: 2rem;
    color: white;
}

.payment-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.payment-card p {
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.payment-card ul {
    list-style: none;
    padding: 0;
}

.payment-card ul li {
    padding: 0.5rem 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-card ul li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
}

.payment-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f0fdf4;
    border-left: 4px solid #10b981;
    border-radius: 0.5rem;
}

.payment-note i {
    font-size: 2rem;
    color: #10b981;
}

.payment-note p {
    margin: 0;
    color: #064e3b;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    border-left: 4px solid #3b82f6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.faq-item p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}