/* ============================================
   6. ABOUT PAGE STYLES
   ============================================ */
.about-container {
    max-width: 1100px;
    margin: 50px auto 40px;
    padding: 0 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h1 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #1a1a1a;
}

.about-header h1 span {
    color: #c9a84c;
    font-weight: 700;
}

.about-header p {
    color: #666;
    font-size: 17px;
    margin-top: 12px;
    border-bottom: 2px solid #c9a84c;
    display: inline-block;
    padding-bottom: 8px;
}

/* About Story Section */
.about-story {
    background: #fafafa;
    border-radius: 20px;
    padding: 50px 45px;
    border: 1px solid #eaeaea;
    box-shadow: 0 6px 24px rgba(0,0,0,0.02);
    transition: all 0.25s ease;
    margin-bottom: 40px;
    border-left: 6px solid #c9a84c;
}

.about-story:hover {
    border-color: #c9a84c;
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.08);
    transform: translateY(-3px);
}

.about-story h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-story h2 i {
    color: #c9a84c;
    font-size: 30px;
}

.about-story p {
    color: #3d3d3d;
    font-size: 16.5px;
    line-height: 1.9;
    margin-bottom: 18px;
    text-align: justify;
}

.about-story p:last-child {
    margin-bottom: 0;
}

.about-story .highlight {
    color: #c9a84c;
    font-weight: 600;
}

/* Mission & Vision Grid */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 10px;
    margin-bottom: 40px;
}

.mv-card {
    background: #fafafa;
    border-radius: 20px;
    padding: 44px 36px 40px;
    border: 1px solid #eaeaea;
    box-shadow: 0 6px 24px rgba(0,0,0,0.02);
    transition: all 0.25s ease;
    text-align: left;
}

.mv-card:hover {
    border-color: #c9a84c;
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.08);
    transform: translateY(-4px);
}

.mv-card .icon {
    font-size: 44px;
    color: #c9a84c;
    margin-bottom: 18px;
    display: block;
}

.mv-card h3 {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border-bottom: 3px solid #c9a84c;
    padding-bottom: 12px;
    display: inline-block;
}

.mv-card p {
    color: #3d3d3d;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 6px;
}

.mv-card .highlight {
    color: #c9a84c;
    font-weight: 600;
}


/* Core Values Section - Horizontal Design */
.core-values {
    background: #fafafa;
    border-radius: 20px;
    padding: 50px 45px;
    border: 1px solid #eaeaea;
    box-shadow: 0 6px 24px rgba(0,0,0,0.02);
    transition: all 0.25s ease;
    border-right: 6px solid #c9a84c;
}

.core-values:hover {
    border-color: #c9a84c;
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.08);
    transform: translateY(-3px);
}

.core-values h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.core-values h2 i {
    color: #c9a84c;
    font-size: 30px;
}

/* Horizontal Value Items */
.core-value-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 14px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    margin-bottom: 15px;
}

.core-value-item:last-child {
    margin-bottom: 0;
}

.core-value-item:hover {
    border-color: #c9a84c;
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.10);
}

/* Left Side - Number, Icon, and Title */
.core-value-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
    min-width: 280px;
}

.core-value-left .number {
    font-size: 24px;
    font-weight: 700;
    color: #c9a84c;
    min-width: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.core-value-left .value-icon {
    font-size: 28px;
    color: #c9a84c;
    width: 40px;
    text-align: center;
}

.core-value-left h4 {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

/* Right Side - Description */
.core-value-right {
    flex: 1;
    border-left: 2px solid #e8e8e8;
    padding-left: 25px;
}

.core-value-right p {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}