/* About Section */
.about-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(26, 58, 46, 0.08);
    border-left: 4px solid #1a3a2e;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(26, 58, 46, 0.15);
}

.about-image {
    flex: 0 0 200px;
    width: 200px;
    height: 200px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f0f4f2 0%, #e8f0ec 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a3a2e;
    font-size: 1.2rem;
    font-weight: 500;
    border: 2px dashed #1a3a2e;
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 58, 46, 0.05) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.about-content {
    flex: 1;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a3a2e;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.highlight-badge {
    background: #1a3a2e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}