.about-section {
    background: hsl(217.24deg 67.44% 8.43%);
}

.about-label {
    display: inline-block;
    font-weight: 600;
    font-size: 42px;
    color: white;
}

.about-title {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
    color: #172033;
    margin: 0;
}

.about-tag-text{
    color: #0d6efd;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.about-title span {
    display: block;
    color: #0d6efd;
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: white;
    margin-bottom: 20px;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    color: #172033;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.about-link i {
    transition: 0.3s ease;
}

.about-link:hover {
    color: #0d6efd;
}

.about-link:hover i {
    transform: translateX(6px);
}

@media (max-width: 991px) {
    .about-title {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .about-title {
        font-size: 32px;
    }

    .about-text {
        font-size: 16px;
    }
}