/* About Section */
.about-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background: rgba(55, 93, 88, 0.03);
}

.about-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-tag {
    display: inline-block;
    background: rgba(55, 93, 88, 0.15);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8em;
    color: rgb(55, 93, 88);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 2.5em;
    color: #162938;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-content h2 span {
    color: rgb(55, 93, 88);
}

.about-text {
    font-size: 1.1em;
    color: #162938;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.85;
}

.about-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.stat-number {
    font-size: 2em;
    font-weight: 700;
    color: rgb(55, 93, 88);
}

.stat-label {
    font-size: 0.85em;
    color: #162938;
}

.about-visual {
    flex: 1;
    min-width: 300px;
}

.about-card {
    background: transparent;
    backdrop-filter: blur(5px);
    border-radius: 30px;
    padding: 40px;
    border: 2px solid rgba(20, 189, 167, 0.2);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-icon {
    font-size: 2em;
}

.feature-item h4 {
    color: rgb(55, 93, 88);
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.9em;
    color: #162938;
    opacity: 0.8;
}