.contact-section {
    padding: 80px 0 0 0;
    background-color: #f9f9f9;
    text-align: center;
}
.legend-item {
    display: block;
    align-items: center;
   
    margin-left: 15px;
}
.sub-title {
    display: inline-block;
    color: #3CA33A;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.main-title {
    font-size: 3rem;
    color: #121212;
    font-family: 'Alfa Slab One', sans-serif;
    margin-bottom: 15px;
    display: block;
    font-weight: 400;
    line-height: 1.2;
}

.underline-decoration {
    margin-bottom: 50px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
    gap: 30px;
}

.contact-info, .hours-info {
    flex: 1;
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.info-section, .hours-section {
    margin-bottom: 0;
}

.section-heading {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #3CA33A;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    padding: 8px;
}

.info-icon {
    fill: white;
    width: 100%;
    height: 100%;
}

.section-heading h3 {
    color: #121212;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.contact-info p {
    margin: 0 0 25px 51px;
    color: #555;
    font-size: 1.1rem;
}

.contact-info a {
    color: #3CA33A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #DD1D1E;
}

.social-media {
    display: flex;
    gap: 15px;
   
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #3CA33A;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.social-svg {
    fill: white;
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    background-color: #DD1D1E;
    transform: translateY(-3px);
}

.hours-container {
    margin-left: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.current-day {
    background-color: rgba(60, 163, 58, 0.1);
    border-radius: 8px;
    padding: 10px;
}

.day {
    font-weight: 600;
    color: #333;
    min-width: 120px;
}

.time-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.time-line {
    display: flex;
    align-items: center;
}

.time {
    color: #555;
    font-weight: 500;
}

.today-badge {
    background-color: #DD1D1E;
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 8px;
}

.delivery-time {
    display: flex;
	gap: 5px;
    align-items: center;
    font-size: 0.85rem;
    color: #777;
    margin-left: 0;
    white-space: nowrap;
}

.delivery-icon {
    width: 14px;
    height: 14px;
    margin-right: 5px;
    fill: #777;
}

.special-notice {
    margin-top: 30px;
    padding: 15px;
    background-color: rgba(221, 29, 30, 0.1);
    border-radius: 10px;
}

.notice-heading {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.notice-icon {
    fill: #DD1D1E;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.notice-heading h4 {
    color: #333;
    font-size: 1.1rem;
    margin: 0;
}

.special-notice p {
    margin: 0 0 0 30px;
    color: #555;
}

.notice-status {
    font-weight: 700;
    color: #DD1D1E;
}

.map-full-width {
    width: 100%;
    margin-top: 50px;
    height: 400px;
}

.map-full-width iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

@media (max-width: 992px) {
    .contact-container {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .map-full-width {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 2rem;
    }
    
    .sub-title {
        font-size: 1.2rem;
    }
    
    .contact-info, .hours-info {
        padding: 20px;
    }
    
    .section-heading h3 {
        font-size: 1.1rem;
    }
    
    .icon-wrapper {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
    
    .contact-info p {
        margin-left: 40px;
        font-size: 1rem;
    }
    
    .social-media {
        margin-left: 40px;
    }
    
    .hours-container {
        margin-left: 15px;
    }
    
    .hours-row {
        flex-direction: column;
    }
    
    .time-wrapper {
        margin-top: 5px;
        justify-content: flex-start;
    }
    
    .day {
        min-width: auto;
    }
    
    .map-full-width {
        height: 300px;
    }
}

@media (max-width: 400px) {
    .contact-info, .hours-info {
        padding: 15px;
    }
    
    .map-full-width {
        height: 250px;
    }
}