/* About Us Page Styles */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    margin-top: 60px; /* Default margin for larger screens */
}

.about-hero {
    position: relative;
    margin-bottom: 100px;
}

.about-card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background-color: #fff;
}

.about-card img {
    max-height: 500px;
    object-fit: contain;
}

.about-title {
    color: #014365;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.about-contact-title {
    color: #014365;
    font-weight: 600;
    font-size: 1.25rem;
}

.about-phone {
    color: #014365;
    font-size: 1.75rem;
    font-weight: 700;
}

.contact-btn {
    background-color: #014365;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.contact-btn:hover {
    background-color: #013454;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 67, 101, 0.2);
    color: #fff;
}

.highlight {
    color: #f67300;
}

.why-us {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.why-us-title {
    color: #014365;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.why-us-list {
    list-style: none;
    padding-left: 0;
}

.why-us-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    color: #555;
    font-size: 1.1rem;
}

.why-us-list li:before {
    content: "•";
    color: #f67300;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.features-section {
    background-color: #12163c;
    color: white;
    padding: 80px 0;
    margin-bottom: 2px;
}

.features-intro {
    text-align: center;
    margin-bottom: 60px;
}

.feature-card {
    margin-bottom: 40px;
    display: flex;
}

.feature-number {
    font-size: 4rem;
    font-weight: 700;
    color: #f67300;
    line-height: 1;
    margin-right: 20px;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}
.feature-content-content {
    color: rgb(206, 206, 206) !important;
}

.brand-logo {
    max-width: 200px;
    margin-top: 20px;
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .about-section {
        margin-top: 40px; /* Medium screens */
    }

    .about-hero {
        margin-bottom: 50px;
    }

    .why-us {
        margin-top: -50px;
    }

    .about-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 50px 0;
        margin-top: 50px; /* Small screens */
    }

    .why-us {
        margin-top: 30px;
    }

    .about-card img {
        max-height: 300px;
    }

    .about-title {
        font-size: 1.75rem;
        text-align: center;
    }

    .about-text {
        font-size: 1rem;
        text-align: center;
    }

    .contact-btn {
        width: 100%;
        display: block;
    }

    .about-contact {
        text-align: center;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
    }

    .feature-number {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .features-intro h2 {
        font-size: 1.5rem;
    }
}
