

.shipping{
    background: #fff;
    margin: 60px auto;
    padding: 30px;
    border-radius: 20px;
    width: 70%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    line-height: 1.7;
}

/* عنوان الصفحة */
.shipping h1{
    text-align: center;
    margin-bottom: 30px;
    margin-top: 20px;
    color: rgb(19, 100, 95);
}

/* العناوين الفرعية */
.shipping h3{
    color: #555;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* النصوص */
.shipping p{
    color: #666;
    font-size: 16px;
}


.comunicat-btns{
    
    margin: 30px auto;
}

.comunicat-btns a{
     display: inline-block;
    padding: 12px 25px;
  background-color: #FFB84D; /* لون جذاب يتماشى مع البراند */
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  margin: 10px;
  transition: background-color 0.3s ease , transform 0.3s;
}

.comunicat-btns a:hover{
  background-color: #FFA500; /* تغيير اللون عند المرور */
  transform: scale(1.05);     /* تكبير خفيف للزر عند Hover */
}

.delivery-blog{
    padding: 60px 10%;
    background: #fff8f0;
    margin-top: 60px;
}

.delivery-blog h2 {
    text-align: center;
    margin-bottom: 40px;
    color: rgb(19, 100, 95);
    font-weight: bold;
}

.delivery-blog h3{
   color: rgb(19, 100, 95); 
   font-weight: bold;
}

.delivery-blog p{
    line-height: 1.6;
}

.delivery-blog article{
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}


/* Responsive للموبايل */
@media(max-width:768px){
    .shipping{
        width: 90%;
        padding: 20px;
        margin: 30px auto;
    }
}


