.about-us {
    background-color: #f8f9fa;
    padding: 60px 20px;
}


.about-us-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.about-us-image {
    flex: 1;
    min-width: 300px;
}

.about-us-image img {
    width: 100%;
    border-radius: 10px;
}

.about-us-text {
    flex: 2;
    min-width: 300px;
}

.about-us-text h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.about-us-text p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
}

.about-us-cards {
    display: flex;
    gap: 20px;
}

.card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 250px;
}

.icon {
    margin-bottom: 15px;
}

.icon img {
    width: 60px; /* İkonun boyutu */
    height: 60px;
    object-fit: contain; /* İkonun bozulmasını önler */
    transition: transform 0.3s ease-in-out;
}

.card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.card p {
    font-size: 1em;
    color: #555;
}

.about-us-buttons {
    margin-top: 30px;
}

.about-us-buttons .btn {
    background-color: #f35422;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-right: 10px;
    display: inline-block;
}

.about-us-buttons .btn:hover {
    background-color: #f35422;
}

@media (max-width: 768px) {
    .about-us-wrapper {
        flex-direction: column;
    }

    .about-us-cards {
        flex-direction: column;
    }
}
