.about-page{
    width: 100%;
    background-color: #fff;
}

.about-introdution{
    background-color: #f9fafb;
    width: 100%;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.about-section {
    padding: 4rem 0;
}

.about-title {
    font-weight: 600;
    line-height: 1.2;
}

.about-title--h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.about-title--h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.about-title--h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.about-paragraph,
.about-description {
    margin-bottom: 1rem;
    color: #4b5563;
}

.about-paragraph--lead {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 2rem;
}

.about-list {
    margin-bottom: 1rem;
}

.about-list-item {
    margin-bottom: 0.5rem;
    list-style: none;
}

.about-grid {
    display: grid;
    gap: 2rem;
}

.about-grid--2col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-stack--lg {
    gap: 3rem;
}

.about-bg-light {
    background-color: #f9fafb;
}

.about-bg-dark {
    background-color: #1f2937;
    color: white;
}

.about-border-bottom {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.about-image {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
}

.about-image .qa-img{
    width: 100%;
    height: 320px;
    border-radius: 8px;
    object-fit: contain;
    overflow: hidden;

}

/* Button */
.about-btn {
    display: inline-block;
    background-color: #1E90FF;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.about-btn:hover {
    background-color: #0077e6;
}



/* About Us Section Container */
.about-us-section {
    width: 100%;
    padding: 80px 0;
    background-color: #f9fafb;
    overflow: hidden;
}

/* Content Container - Fixed 1400px Width */
.about-us-container {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image Wrapper */
.about-us-img-wrapper {
    flex: 1;
    max-width: 650px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about-us-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-us-img-wrapper:hover .about-us-img {
    transform: scale(1.03);
}

/* Content Area */
.about-us-content {
    flex: 1;
    max-width: 650px;
}

.about-us-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 16px;
}

.about-us-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: #165dff;
    border-radius: 2px;
}

.about-us-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 40px;
    text-align: justify;
}

/* Statistics Area */
.about-us-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #165dff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: #718096;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



/* Advantages Section Container */
.advantages-section {
    width: 100%;
    padding: 80px 0;
    background-color: #ffffff;
}

/* Content Container - Fixed 1400px Width */
.advantages-container {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.advantage-item.row-reverse {
    flex-direction: row-reverse;
}

/* Image Wrapper */
.advantage-img-wrapper {
    flex: 0 0 50%;
    max-width: 50%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.advantage-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.advantage-img-wrapper:hover .advantage-img {
    transform: scale(1.02);
}

/* Content Area */
.advantage-content {
    flex: 0 0 calc(50% - 60px);
    max-width: calc(50% - 60px);
}

.advantage-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    position: relative;
    padding-left: 20px;
}

.advantage-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background-color: #165dff;
    border-radius: 2px;
}

.advantage-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.support-item{
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 5px;
}