/* About Section CSS - High-Density UI */
.about-section {
    padding: 0;
    background-color: #ffffff;
    overflow: hidden;
}

/* New Heading Box Styling */
.about-header-box {
    background-color: var(--primary-color);
    padding: 60px 5%;
    text-align: center;
    width: 100%;
    margin-bottom: 60px;
    position: relative;
    border-bottom: 4px solid var(--accent-color);
    /* Removed redundant animation */
}

.about-header-box .about-overline {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: block;
}

.about-header-box h2 {
    color: #ffffff;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1.5px;
}

.about-header-box h2 span {
    color: var(--secondary-color);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 5%;
}

/* About Visual Column */
.about-visual {
    position: relative;
    /* Removed redundant animation */
}

.about-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    z-index: 2;
    position: relative;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 6px solid var(--accent-color);
    border-left: 6px solid var(--accent-color);
    border-radius: 12px 0 0 0;
    z-index: 1;
}

.about-visual::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, rgba(0, 106, 255, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 24px;
    z-index: 0;
}

/* About Content Column */
.about-content {
    background-color: #f8fafc;
    border: 2px solid var(--accent-color);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 25px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #1a1a1a;
}

.about-feature i {
    color: #10b981;
    font-size: 1.2rem;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInSlideRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInSlideLeft {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive Polish */
@media (max-width: 992px) {
    .about-header-box { padding: 40px 5%; margin-bottom: 40px; }
    .about-header-box h2 { font-size: 2.5rem; }
    .about-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .about-visual::before, .about-visual::after { display: none; }
}

@media (max-width: 768px) {
    .about-section { padding: 40px 0; }
    .about-header-box h2 { font-size: 2.2rem; }
    .about-content { padding: 30px 5%; border-left: none; border-right: none; border-radius: 0; }
    .about-features { align-items: center; }
}

@media (max-width: 480px) {
    .about-header-box h2 { font-size: 1.8rem; }
    .about-content p { font-size: 1.05rem; }
}
