﻿/* Content/about-samco.css */

/* Reduce gap from Hero */
.about-samco-section {
    background: #ffffff;
    padding: 25px 20px 60px; /* TOP GAP REDUCED */
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.about-title {
    text-align: center;
    margin-bottom: 35px;
}

    .about-title h2 {
        font-size: 38px;
        font-weight: 800;
        color: #1f2d3d;
    }

.about-bold {
    font-weight: 900;
}

.title-underline {
    width: 55px;
    height: 3px;
    background: #f4c430;
    margin: 8px auto;
}

.about-subtitle {
    color: #6b7280;
    font-size: 14px;
}

/* Layout */
.about-content {
    display: flex;
    align-items: center;
    gap: 45px;
    margin-bottom: 40px;
}

/* Left */
.about-left {
    width: 50%;
}

    .about-left h3 {
        color: #0a8f2c;
        font-size: 23px;
        margin-bottom: 12px;
    }

    .about-left p {
        color: #4b5563;
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 12px;
    }

.about-points {
    list-style: none;
    padding: 0;
    margin: 18px 0;
}

    .about-points li {
        background: #f1f7f2;
        padding: 11px 14px;
        margin-bottom: 9px;
        border-radius: 6px;
        font-size: 18px;
    }

        .about-points li::before {
            content: "✔";
            color: #0a8f2c;
            margin-right: 8px;
        }

/* Learn More Button (Reduced Size) */
.learn-more-btn {
    display: inline-block;
    background: #0a8f2c;
    color: #fff;
    padding: 5px 10px;
    font-size: 8px;
    border-radius: 3px;
    text-decoration: none;
}

    .learn-more-btn:hover {
        background: #086d22;
    }

/* Right Image */
.about-right {
    width: 50%;
}

    .about-right img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    }

/* Vision & Mission */
.vm-section {
    display: flex;
    gap: 25px;
}

.vm-card {
    width: 50%;
    background: #f8fafc;
    border-radius: 10px;
    padding: 25px;
    font-size: 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

    .vm-card h4 {
        color: #0a8f2c;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .vm-card p {
        font-size: 14px;
        color: #374151;
        line-height: 1.7;
    }

/* Mobile */
@media (max-width: 768px) {
    .about-content,
    .vm-section {
        flex-direction: column;
    }

    .about-left,
    .about-right,
    .vm-card {
        width: 100%;
    }

    .about-title h2 {
        font-size: 30px;
    }
}
