* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.5;
    font-family: Arial, sans-serif;
}

body {
    width: 100%;
    min-height: 100vh;
    background-color: rgb(9, 243, 9);
    color: #000;
}

.us {
    text-align: center;
    font-size: 2.5rem;
    padding: 20px 0;
}

.navigation {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 1.2rem;
    background-color: #1cff1c;
    padding: 10px 0;
    flex-wrap: wrap;
}

.navigation a {
    text-decoration: none;
    color: #000;
    padding: 8px 12px;
    border-radius: 5px;
    transition: 0.3s ease;
}

.navigation a:hover {
    background-color: green;
    color: white;
}

.wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 30px 20px;
}

.content {
    flex: 1 1 400px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.content p {
    font-size: 1rem;
    text-align: justify;
}

.social img {
    margin: 5px 10px 0 0;
    width: 40px;
    height: 40px;
    object-fit: contain;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s ease;
}

.social img:hover {
    transform: scale(1.1);
}

.image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.tems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding: 20px;
    gap: 20px;
}

.tem {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.tem img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.tem h4 {
    background-color: rgb(8, 209, 18);
    padding: 8px;
    margin-top: 10px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .navigation {
        gap: 15px;
        font-size: 1rem;
    }
    .wrap {
        flex-direction: column;
        text-align: center;
    }
    .content {
        max-width: 100%;
        align-items: center;
    }
    .content p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .us {
        font-size: 2rem;
    }
    .navigation {
        flex-direction: column;
        gap: 10px;
    }
}