/* assets/css/o-kompanii.css */

.about-page {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1f2937;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* --- Hero / Typography --- */
.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.about-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #f9c115;
    /* Site yellow */
    border-radius: 2px;
}

/* --- Content Block --- */
.about-content {
    /* background: #fff; */
    /* border: 1px solid #e5e7eb; */
    /* border-radius: 12px; */
    /* padding: 32px; */
    /* box-shadow: 0 4px 6px rgba(0,0,0,0.02); */
    margin-bottom: 60px;
}

.about-intro {
    font-size: 16px;
    margin-bottom: 40px;
    color: #374151;
}

.about-intro p {
    margin-bottom: 16px;
}

/* --- Values Grid --- */
.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.value-card {
    background: #ffffff;
    border-left: 4px solid #f9c115;
    padding: 24px;
    border-radius: 0 8px 8px 0;
    transition: transform 0.2s;
}

.value-card:hover {
    transform: translateX(5px);
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.value-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    display: block;
    color: #111;
    text-transform: uppercase;
}

.value-desc {
    font-size: 15px;
    color: #4b5563;
}

/* --- Advantages List --- */
.about-advantages {
    margin-bottom: 60px;
}

.adv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.adv-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.adv-icon {
    flex-shrink: 0;
    width: 24px;
    /* Bullet size */
    height: 24px;
    background: #f9c115;
    border-radius: 50%;
    margin-top: 2px;
    position: relative;
}

.adv-icon::after {
    content: "✓";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    font-weight: bold;
}

.adv-content {
    font-size: 16px;
}

.adv-title {
    font-weight: 700;
    color: #111;
}

/* --- Image Footer --- */
.about-image {
    margin-top: 60px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    /* Utilizing .responsive-img from utility if available, but explicit here too */
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .about-page {
        padding: 24px 16px;
    }

    .about-title {
        font-size: 26px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }
}