/* styles.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.pamoka {
    font-family: Arial, sans-serif;
    background-color: #121212e8;
    color: #cbd0d9;
    line-height: 1.6;
    padding: 20px;
}

.container-pamoka {
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    background-color: #121212e8;
    color: #cbd0d9;
    line-height: 1.6;
    padding: 20px;
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section.reverse {
    flex-direction: row-reverse;
}

.text-content {
    max-width: 50%;
}

.text-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #f5f5f5;
}

.text-content p {
    margin-bottom: 20px;
}

.text-content .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff4500;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.text-content .button:hover {
    background-color: #ff6347;
}

.image-content img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}
