﻿.about-page-wrapper {
    max-width: 1200px;
    margin: 2rem auto;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Main Section */
.main-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.main-section .illustration-block {
    width: 40%;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    background: #f9f9f9;
}

.main-section .illustration-block img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.main-section .illustration-block img:hover {
    transform: scale(1.05);
}

.main-section .text-block {
    color: #4a5568;
    width: 50%;
}

.text-block .company-description {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a5568;
    font-size: 1rem;
}

.text-block .company-description .font-semibold {
    font-weight: 600;
    color: #0056b3; /* Blue accent */
}

.text-block .contact-sales-button {
    display: inline-block;
    background-color: #f57620; /* Orange accent */
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.text-block .contact-sales-button:hover {
    background-color: #e96a1f;
    transform: translateY(-3px);
}

/* Middle Text */
.middle-text {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
}

.middle-text .text-paragraph {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
    color: #6b7280;
    font-style: italic;
    font-size: 1.05rem;
}

.middle-text .section-divider {
    width: 60px;
    height: 3px;
    background-color: #0056b3;
    margin: 2rem auto;
    border-radius: 2px;
}

/* Feature Areas */
.feature-areas {
    padding-top: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.feature-list .feature-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #4a5568;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-list .feature-item:hover {
    transform: translateY(-5px);
}

.feature-list .feature-item .feature-icon {
    margin-right: 0.75rem;
    width: 50px;
}

.feature-list .feature-item .font-semibold {
    font-weight: 600;
    color: #0056b3;
}

/* Bottom Banner */
.bottom-banner-wrapper {
    background: linear-gradient(to right, #dbf5fd, #ffffff);
    padding: 3rem 1.5rem;
    text-align: center;
    border-radius: 0.5rem;
    margin-top: 3rem;
}

.bottom-banner-con {
    max-width: 900px;
    margin: auto;
}

.bottom-banner-wrapper .banner-text {
    color: #4a5568;
    margin: 0 auto 2rem;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 500;
}

.bottom-banner-wrapper .banner-text-2 {
    font-size: 1.2rem;
    color: #0056b3;
    margin-bottom: 2rem;
    font-weight: 700;
}

.bottom-banner-wrapper .contact-sales-button {
    text-decoration: none;
    background-color: #f57620;
    color: white;
    padding: 12px 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bottom-banner-wrapper .contact-sales-button:hover {
    background-color: #e96a1f;
    transform: translateY(-3px);
}

/* Scroll-trigger states */
.hidden {
    opacity: 0;
    transform: translateY(40px);
}

.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}

/* Responsive */
@media (max-width: 930px) {
    .main-section .illustration-block { width: 60%; }
}

@media (max-width: 850px) {
    .main-section .illustration-block { width: 80%; }
    .text-block .company-description { font-size: 0.85rem; }
}

@media (min-width: 768px) {
    .about-page-wrapper { padding: 3rem; }
}

@media (max-width: 700px) {
    .main-section { flex-direction: column; align-items: start; }
    .main-section .illustration-block,
    .main-section .text-block { width: 100%; }
}