/* ==========================================
   ABOUT CONTAINER (DESPRE NOI)
   ========================================== */
.about--container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding: 60px 20px 80px;
}

/* ==========================================
   CARDURILE PRINCIPALE (ABOUT1 & ABOUT2)
   ========================================== */
.about1, 
.about2 {
    width: 48%;
    background: #ffffff;
    color: #333333;
    border-radius: 20px;
    padding: 40px 36px;
    border: 1px solid rgba(199, 138, 58, 0.18);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about1 {
    margin-top: 0;
}

.about2 {
    align-self: flex-start;
    margin-top: 60px; /* Decalaj elegant pe desktop */
}

.about1:hover, 
.about2:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(199, 138, 58, 0.12);
}

/* ==========================================
   TITLURI ȘI PARAGRAFE
   ========================================== */
.about--in1 h1,
.about--in2 h1 {
    color: #C78A3A;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.about--in1 h2,
.about--in2 h2 {
    color: #C78A3A;
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0 12px;
    line-height: 1.3;
}

.about-subtitle {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: #444444;
    margin-bottom: 16px;
}

.about-highlight {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
    color: #222222;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed rgba(199, 138, 58, 0.25);
}

/* ==========================================
   LISTE DE SERVICII / ACTIVITĂȚI
   ========================================== */
.about--in1 ul,
.about--in2 ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.about--in1 ul li,
.about--in2 ul li {
    padding: 10px 0 10px 24px;
    border-bottom: 1px solid rgba(199, 138, 58, 0.1);
    font-size: 14.5px;
    color: #333333;
    position: relative;
    line-height: 1.5;
}

.about--in1 ul li:last-child,
.about--in2 ul li:last-child {
    border-bottom: none;
}

.about--in1 ul li::before,
.about--in2 ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #C78A3A;
}

/* ==========================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================== */
@media (max-width: 992px) {
    .about--container {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px 60px;
    }

    .about1, 
    .about2 {
        width: 100%;
        margin-top: 0;
        padding: 32px 28px;
    }
}

@media (max-width: 480px) {
    .about1, 
    .about2 {
        padding: 24px 18px;
        border-radius: 14px;
    }

    .about--in1 h1,
    .about--in2 h1 {
        font-size: 24px;
    }

    .about--in1 h2,
    .about--in2 h2 {
        font-size: 18px;
    }

    .about-subtitle,
    .about--in1 ul li,
    .about--in2 ul li {
        font-size: 14px;
    }
}