.about-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.about-title {
    font-size: 36px;
    color: #c89b3c;
    margin-bottom: 20px;
    font-weight: 800;
}

.about-text {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-box {
    background: #fafafa;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.feature-box h3 {
    color: #c89b3c;
    font-size: 22px;
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 18px;
    color: #444;
}


.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 370px;
    width: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: 40px auto;
    overflow: hidden;
}

.profile-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 36%;
    width: 100%;
    border-radius: 24px 24px 0 0;
    background-color: #c98736;
    z-index: 0;
}

.image {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-color: #c98736;
    padding: 3px;
    margin-bottom: 10px;
    z-index: 1;
    flex-shrink: 0;
}

.image .profile-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 50%;
    border: 3px solid #fff;
}

.profile-card .text-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
    position: relative;
    z-index: 1;
}

.text-data .name {
    font-size: 22px;
    font-weight: 500;
}

.text-data .job {
    font-size: 15px;
    font-weight: 400;
}

.profile-card .media-buttons {
    display: flex;
    align-items: center;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.media-buttons .link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    height: 34px;
    width: 34px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: #c98736;
    text-decoration: none;
}

.profile-card .analytics {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.analytics .data {
    display: flex;
    align-items: center;
    color: #333;
    padding: 0 20px;
    border-right: 2px solid #e7e7e7;
}

.data i {
    font-size: 18px;
    margin-right: 6px;
}

.data:last-child {
    border-right: none;
}

.feature-icon {
    font-size: 40px;
    color: #c89b3c;
    margin-bottom: 10px;
}

.media-buttons i {
    transition: all 0.3s ease;
}

.media-buttons i:hover {
    transform: translateY(-5px) scale(1.2);
}

.link {
    transition: all 0.3s ease;
    display: inline-block;
}

.link:hover {
    transform: translateY(-5px) scale(1.1);
}

@media(min-width:800px) {
    .about-features {
        flex-direction: row;
        justify-content: center;
    }

    .feature-box {
        flex: 1;
    }
}