.title {
    text-align: center;
}

.about {
    display: flex;
    flex-direction: row;
    width: 80%;
    margin: 0 auto;
    padding: 40px 0;
    align-items: flex-start;
}

.left {
    width: 50%;
    text-align: left;
    padding-right: 40px;
}

.left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    position: relative;
}

.left p::first-line {
    font-weight: bold;
    color: #000;
}

.left p b, .left p strong {
    color: #007bff;
    font-weight: 600;
}

.divider {
    width: 1px;
    background-color: #eee;
    margin: 0 40px;
    align-self: stretch;
}

.right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}
.side-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.tech-item img {
    width: 45px;
    height: 45px;
    margin-bottom: 8px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.tech-item span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
}

.tech-item:hover {
    transform: translateY(-5px);
}

.tech-item:hover img {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .about {
        flex-direction: column;
        width: 90%;
    }
    .left, .right {
        width: 100%;
        padding-right: 0;
    }
    .divider {
        display: none;
    }
}
