/* About Page Styles */

/* About Hero Section */
.about_hero {
    background: linear-gradient(135deg, #ffffff 0%, #f0faf7 100%);
    padding: 80px 0;
}

.about_hero_content {
    padding-right: 30px;
}

.hero_subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #43c59e;
    margin-bottom: 25px;
    line-height: 1.4;
}

.hero_description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.about_hero_image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero_img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.services_section {
    padding: 80px 0;
    background: #fff;
}

.services_content {
    padding-left: 30px;
}

.section_heading {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.services_description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.services_image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service_img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Mission Section */
.mission_section {
    padding: 80px 0;
    background: #f8f9fa;
}

.mission_title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.title_underline {
    width: 80px;
    height: 4px;
    background: #43c59e;
    margin: 0 auto 40px;
    border-radius: 2px;
}

.mission_text {
    font-size: 17px;
    color: #333;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 40px;
}

.mission_icon {
    text-align: center;
}

.mission_icon img {
    width: 80px;
    height: 80px;
    filter: brightness(0.9);
}

/* Safety Banner */
.safety_banner_section {
    padding: 70px 0;
    background: #fff;
}

.safety_banner_box {
    background: linear-gradient(135deg, #43c59e 0%, #3ab58c 100%);
    border-radius: 20px;
    padding: 70px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.safety_banner_box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.safety_banner_box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.safety_banner_box h2 {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.book_now_button {
    background: #fff;
    color: #43c59e;
    border: none;
    border-radius: 10px;
    padding: 16px 55px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.book_now_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Partnerships Section */
.partnerships_section {
    padding: 80px 0;
    background: #fff;
}

.partnerships_title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.partnership_card {
    background: #e8f5f1;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.partnership_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(67, 197, 158, 0.2);
}

.partnership_icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #43c59e;
    border-radius: 16px;
}

.partnership_icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.partnership_card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.partnership_card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Download App Section */
.download_app_section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0faf7 100%);
}

.download_title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.download_description {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 45px;
}

.download_options {
    display: flex;
    align-items: center;
    gap: 45px;
    flex-wrap: wrap;
}

.qr_code_box img {
    width: 160px;
    height: 160px;
    border: 3px solid #e8e8e8;
    border-radius: 16px;
    padding: 12px;
    background: #fff;
}

.store_buttons_box {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.store_button {
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.store_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.store_button img {
    height: 55px;
    width: auto;
    display: block;
}

.phone_mockup_box {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone_mockup_box img {
    width: 100%;
    max-width: 450px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 991px) {
    .about_hero {
        padding: 60px 0;
    }
    
    .about_hero_content,
    .services_content {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 40px;
    }
    
    .hero_subtitle {
        font-size: 24px;
    }
    
    .section_heading,
    .mission_title,
    .partnerships_title,
    .download_title {
        font-size: 30px;
    }
    
    .safety_banner_box h2 {
        font-size: 36px;
    }
    
    .services_section,
    .mission_section,
    .partnerships_section,
    .download_app_section {
        padding: 60px 0;
    }
    
    .download_options {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .about_hero {
        padding: 50px 0;
    }
    
    .hero_subtitle {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .hero_description,
    .services_description {
        font-size: 15px;
    }
    
    .section_heading,
    .mission_title,
    .partnerships_title,
    .download_title {
        font-size: 26px;
    }
    
    .mission_text,
    .download_description {
        font-size: 15px;
    }
    
    .safety_banner_section {
        padding: 50px 0;
    }
    
    .safety_banner_box {
        padding: 50px 25px;
    }
    
    .safety_banner_box h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .book_now_button {
        padding: 14px 40px;
        font-size: 16px;
    }
    
    .partnership_card {
        padding: 35px 25px;
    }
    
    .partnership_card h3 {
        font-size: 20px;
    }
    
    .services_section,
    .mission_section,
    .partnerships_section,
    .download_app_section {
        padding: 50px 0;
    }
}

@media (max-width: 575px) {
    .hero_subtitle {
        font-size: 20px;
    }
    
    .section_heading,
    .mission_title,
    .partnerships_title,
    .download_title {
        font-size: 22px;
    }
    
    .safety_banner_box h2 {
        font-size: 24px;
    }
    
    .partnership_card {
        padding: 30px 20px;
    }
    
    .partnership_card h3 {
        font-size: 18px;
    }
}
