
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}


.kairom-logo {
    width: 150px;
    display: block;
    margin: 20px auto;
}


header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background-color: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    top: 0;
    z-index: 1000;
}

.kairom-log {
    width: 180px;
    height: auto;
}

.menu-container {
    position: relative;
}

.hamburger {
    display: none;
    width: 30px;
    height: 21px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.dropdown-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.dropdown-menu li {
    margin: 0 15px;
}

.dropdown-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.dropdown-menu a:hover {
    color: #007bff;
    background-color: #f0f0f0;
    border-radius: 5px;
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .dropdown-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        width: 200px;
        z-index: 1000;
    }

    .dropdown-menu li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu a {
        color: #333;
        padding: 12px 20px;
    }

    .dropdown-menu.show {
        display: flex;
    }
}



.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}


.card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 500px;
    border: 2px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: 0.3s;
}

.card:hover {
    background-color: #eaeaea;
}


.text {
    text-align: left;
    flex: 1;
}

.text a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.text a:hover {
    text-decoration: underline;
}


.image {
    flex-shrink: 0;
    margin-left: 15px;
}

.small-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}


footer {
    margin-top: 30px;
    padding: 10px;
    background-color: #f1f1f1;
}
