.about-us {
    padding: 80px 0;
    width: 100%;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: flex;
    width: 1142px;
    align-items: flex-start;
    gap: 153px;
    margin: 0 auto;
}

.about-logo {
    flex-shrink: 0;
}

.about-logo img {
    max-width: 100%;
    height: auto;
    margin-top: 100px;
}

.about-right-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.about-text {
    text-align: left
}

.about-label {
    color: #34C7F5;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.about-title {
    position: relative;
    background: linear-gradient(120deg, #1D7AC0, #34C7F5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 3s ease-in-out infinite;
}

.about-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
}

.about-cards {
    display: flex;
    gap: 20px;
}

.about-card {
    display: flex;
    width: 269px;
    padding: 40px 10px 10px 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: #FAFCFF;
    border: 1px solid #E8E8E8;
    box-shadow: 0px 4px 8px rgba(3, 7, 18, 0.1);
}

.about-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}


/* Responsive styles */
@media screen and (max-width: 1200px) {
    .about-content {
        width: 100%;
        gap: 80px;
    }

    .about-card {
        width: auto;
    }
}

@media screen and (max-width: 1024px) {
    .about-us {
        padding: 60px 0;
    }

    .about-content {
        gap: 60px;
    }

    .about-logo img {
        margin-top: 50px;
    }

    .about-right-content {
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .about-logo {
        text-align: center;
    }

    .about-logo img {
        margin-top: 0;
        max-width: 70%;
    }

    .about-text {
        text-align: center;
    }

    .about-cards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-card {
        width: calc(50% - 10px);
    }
}

@media screen and (max-width: 480px) {
    .about-us {
        padding: 40px 0;
    }

    .about-container {
        padding: 0 15px;
    }

    .about-label {
        font-size: 14px;
    }

    .about-description {
        font-size: 14px;
    }

    .about-cards {
        flex-direction: column;
    }

    .about-card {
        width: 100%;
        padding: 30px 10px 10px 10px;
    }

    .about-card p {
        font-size: 14px;
    }
}