/* --- მიწოდების სერვისის გვერდის სტილები --- */

.delivery-info-content {
    padding-bottom: 30px;
}

/* სათაური */
.delivery-info-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* სათაურის ქვედა დეკორატიული ხაზი */
.delivery-info-content h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color, #e67e22); /* იყენებს ცვლადს, თუ განსაზღვრულია */
    margin: 20px 0 30px;
    border-radius: 2px;
}

/* შესავალი ტექსტი */
.delivery-info-content p.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #4b5563;
    margin-bottom: 45px;
    line-height: 1.7;
}

/* ინფორმაციის სექციები */
.info-section {
    margin-bottom: 40px;
}

.info-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.info-section h2 i {
    margin-right: 12px;
    color: var(--accent-color, #e67e22);
}

.info-section p, .info-section li {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 10px;
}

.info-section ul {
    list-style: none;
    padding-left: 25px;
}

.info-section ul li::before {
    content: "\f105"; /* FontAwesome Right Arrow */
    font-family: 'Font Awesome 5 Free', 'FontAwesome'; /* დავამატე fallback */
    font-weight: 900;
    color: var(--accent-color, #e67e22);
    margin-left: -25px;
    margin-right: 10px;
}

/* ფასების კატეგორიები */
.price-category {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
}

.price-category h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.price-category h3 i {
    margin-right: 10px;
    color: var(--accent-color, #e67e22); /* დავამატე ფერი იკონკასთვის */
}

.price-category h4 {
    font-size: 1.1rem;
    color: #4b5563;
    margin-top: 20px;
    margin-bottom: 10px;
}

.price-category .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color, #e67e22);
    margin-bottom: 10px; /* დავამატე დაშორება */
}

.price-category .sub-list {
    padding-left: 20px;
    margin-top: 10px; /* დავამატე დაშორება */
}

.price-category .sub-list li::before {
    content: "\2022"; /* Bullet point */
    color: var(--accent-color, #e67e22);
    margin-left: -20px;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* =========================================================== */
/* ========= START: CSS ცვლილებები (გაზოგადება/დამატება) ========= */
/* =========================================================== */

/* .note სტილი გავხადეთ ზოგადი, რომ price-category-ს გარეთაც იმუშაოს */
.price-category .note,
.info-section .note {
    font-size: 0.95rem; /* ოდნავ გავზარდე შრიფტი */
    color: #4b5563; /* ოდნავ გავამუქე ფერი */
    margin-top: 15px;
    border-left: 3px solid var(--accent-color, #e67e22);
    padding-left: 15px;
    line-height: 1.7; /* დავამატე line-height */
}

/* დამატებული სტილი რეგიონების ვადების ჩადგმული სიისთვის */
.info-section ul .nested-list {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
}

/* ჩადგმული სიის li-სთვის აღარ ვიყენებთ ისარს, არამედ bullet-ს */
.info-section ul .nested-list li::before {
    content: "\2022"; /* Bullet point */
    color: var(--accent-color, #e67e22);
    margin-left: -20px;
    margin-right: 10px;
    font-size: 1.2rem;
    font-family: Arial, sans-serif; /* დავაზღვიეთ font-family */
    font-weight: bold;
}

/* =========================================================== */
/* ========= END: CSS ცვლილებები (გაზოგადება/დამატება) =========== */
/* =========================================================== */


/* Responsive დიზაინი */
@media (max-width: 768px) {
    .delivery-info-content h1 {
        font-size: 2.2rem; /* ოდნავ გავზარდე */
    }
    .info-section h2 {
        font-size: 1.5rem; /* ოდნავ გავზარდე */
    }
    .delivery-info-content p.lead {
        font-size: 1.1rem;
    }
    .delivery-info-content p, .delivery-info-content li {
        font-size: 1rem;
    }
    .price-category .price {
        font-size: 1.8rem; /* ოდნავ დავაპატარავე */
    }
}