/* About Section Styles */
#about {
    padding: 0;
    /* Removed white background to allow inline style to work */
    color: #ffffff; /* Ensure text is white by default */
}

.about-wrapper {
    padding: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    height: 100%;
}

.about-text-column {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-heading {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff; /* Changed from #333 to white for better contrast */
    margin-bottom: 10px;
    text-align: left;
}

.yellow-underline {
    height: 4px;
    width: 60px;
    background-color:#3498db;
    margin-bottom: 30px;
}

.about-paragraph {
    color: #e0e0e0; /* Changed from default for better readability on dark background */
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-image-column {
    height: 100%;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    margin: 0;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: contain;
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.about-image-column {
    flex: 1;
    min-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.about-text-column {
    flex: 1;
    min-width: 45%;
    padding: 20px;
}

/* About content layout */
.about-content {
    display: flex;
    align-items: center; /* Vertically center items */
    gap: 40px; /* Space between image and text */
}

.about-img {
    flex: 0 0 45%; /* Don't grow or shrink, start at 45% width */
    display: flex;
    align-items: center; /* Center image vertically */
    justify-content: center; /* Center image horizontally */
}

.about-text {
    flex: 1; /* Take remaining space */
}

/* Main about section image */
.about-img img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-img {
        margin-bottom: 30px;
        width: 100%;
    }
}

/* Bullet list styling */
.about-bullet-list {
    list-style: none;
    padding-left: 5px;
    margin-bottom: 20px;
}

.about-bullet-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: inherit; /* This will make it inherit from parent */
}

.about-bullet-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #000;
}

.about-bullet-list li:after {
    content: '';
    position: absolute;
    left: 10px;
    top: 9px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #00a0d2;
}

/* PPE List Styling with Dual Dots */
.ppe-list {
    margin: 20px 0 !important;
    padding-left: 25px !important;
    list-style: none !important;
}

.ppe-list li {
    position: relative !important;
    padding-left: 25px !important;
    margin-bottom: 15px !important;
    line-height: 1.6 !important;
    color: #333 !important;
    font-size: 16px !important;
}

.ppe-list li:before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 10px !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background-color: #000 !important;
}

.ppe-list li:after {
    content: '' !important;
    position: absolute !important;
    left: 8px !important;  /* Reduced from 10px to 7px */
    top: 12px !important;
    width: 4px !important;
    height: 4px !important;
    border-radius: 50% !important;
    background-color: var(--accent) !important;
}

.ppe-list strong {
    color: var(--dark) !important;
    font-weight: 600 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image-column {
        height: 300px;
    }
}
