/* Responsive styles for the Our Logo section */
.our-logo {
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    overflow: hidden;
}

/* Responsive logo image */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.logo-image {
    width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

/* Ensure headings are properly sized for mobile */
.our-logo h3 {
    font-size: 20px;
    margin-top: 20px;
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
}

.our-logo h4 {
    font-size: 18px;
    margin-bottom: 25px;
    text-align: center;
    word-wrap: break-word;
    position: relative;
    padding-bottom: 20px;
}

.our-logo h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: rgba(0,0,0,0.1);
}

/* Ensure paragraphs are readable on mobile */
.our-logo p {
    text-align: justify;
    margin-bottom: 15px;
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
}

.our-logo p::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: #666;
    font-size: 20px;
}

/* Media queries for different screen sizes */
@media (max-width: 991px) {
    .our-logo {
        padding: 15px;
    }
    
    .our-logo h3 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .our-logo {
        padding: 15px 10px;
        margin: 5px 0;
        border-width: 1px;
    }
    
    .logo-image {
        width: 120px;
    }
    
    .our-logo h3 {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .our-logo h4 {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    /* Override text justification on small screens for better readability */
    .our-logo p[style*="text-align: justify"] {
        text-align: left !important;
        padding-left: 20px;
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .our-logo {
        padding: 12px 8px;
    }
    
    .logo-image {
        width: 100px;
    }
    
    .our-logo h3 {
        font-size: 14px;
    }
    
    .our-logo h4 {
        font-size: 13px;
    }
    
    .our-logo p {
        font-size: 13px;
    }
}
