/* About Us Page Specific Styles */

.about-body {
    background-color: #fff;
}

.about-page {
    background-color: #fff;
}

/* Hero Section */
.about-hero {
    width: 100%;
    height: 250px;
    background-image: url('/assets/image/cx_about.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.about-hero h1 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 2px;
}

/* Main Section with Teal Background */
.about-main-section {
    background: linear-gradient(135deg, #13b47e 0%, #1a9d6f 100%);
    padding: 80px 20px;
}

.about-main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-main-text {
    color: #fff;
}

.about-main-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.about-main-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.about-main-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Why We Do It Section */
.about-why-section {
    background: #fff;
    padding: 80px 20px;
}

.about-why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-why-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #13b47e 0%, #1a9d6f 100%);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(19, 180, 126, 0.2);
}

.about-why-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    filter: brightness(1.1);
}

.about-why-content h2 {
    color: #13b47e;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.about-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-why-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.about-why-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #13b47e;
    font-weight: bold;
    font-size: 1.2rem;
}

/* How We Do It Section */
.about-how-section {
    background: linear-gradient(135deg, #13b47e 0%, #1a9d6f 100%);
    padding: 80px 20px;
}

.about-how-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-how-content h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.about-how-content p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.about-how-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.about-how-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 968px) {

    .about-main-container,
    .about-why-container,
    .about-how-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-why-content h2,
    .about-how-content h2 {
        font-size: 1.75rem;
    }

    .about-main-image,
    .about-why-image,
    .about-how-image {
        padding: 30px;
    }

    .about-main-section,
    .about-why-section,
    .about-how-section {
        padding: 60px 20px;
    }
}

@media (max-width: 640px) {
    .about-hero {
        height: 200px;
    }

    .about-hero h1 {
        font-size: 1.75rem;
    }

    .about-main-text p,
    .about-how-content p {
        font-size: 0.95rem;
    }

    .about-why-list li {
        font-size: 0.95rem;
    }

    .about-main-image,
    .about-why-image,
    .about-how-image {
        padding: 20px;
    }
}