body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F7D0D4;
}

.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #4A111F;
    padding: 10px 20px;
    height: auto;
    border-bottom: 10px solid #3A0D17;
}

.navbar .left {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 10px;
}

.navbar .left .logo {
    width: 70px;
    height: auto;
    margin-bottom: 10px;
}

.navbar .left p {
    color: #F7D0D4;
    font-size: 30px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    margin: 0;
}

.navbar .right {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.navbar .right button {
    background-color: transparent;
    border: 2px solid #3A0D17;
    color: #F7D0D4;
    padding: 8px 16px;
    margin: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s, color 0.3s;
}

.navbar .right button:hover {
    background-color: #F7D0D4;
    color: #4A111F;
}

.centered-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
}

.image-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    flex-wrap: wrap;
}

.image-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 300px;
    margin-bottom: 30px;
}

.oic-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.image-caption {
    color: #4A111F;
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

.border-line {
    width: 200px;
    border: 2px solid #4A111F;
    margin-top: 5px;
}

.description {
    color: #4A111F;
    font-size: 18px;
    font-weight: 400;
    margin-top: 15px;
}

.contact-bar {
    background-color: #4A111F;
    padding: 20px 0;
    text-align: center;
}

.contact-bar p {
    color: #F7D0D4;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.social-icon {
    width: 40px;
    height: auto;
}

.footer {
    background-color: #4A111F;
    color: #F7D0D4;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .navbar .right {
        flex-direction: row;
        gap: 15px;
        margin-top: 10px;
    }

    .image-row {
        flex-direction: column;
        align-items: center;
    }

    .image-container {
        max-width: 90%;
        margin-bottom: 20px;
    }

    .oic-image {
        width: 100%;
    }

    .image-caption {
        font-size: 18px;
    }

    .description {
        font-size: 16px;
    }
}

.coming-soon {
    background-color: #F7D0D4;
    text-align: center;
    padding: 20px 0;
}

.coming-soon p {
    color: #4A111F;
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    font-family: Arial, sans-serif;
}
.study-guide-button {
    background-color: #4A111F;
    color: #F7D0D4;
    border: 2px solid #3A0D17;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.study-guide-button:hover {
    background-color: #F7D0D4;
    color: #4A111F;
}

