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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
    background-color: #FFFAF0;
}

.nav {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.nav button {
    padding: 5px 15px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
}

.language-toggle {
    position: absolute;
    right: 20px;
    top: 10px;
}

/* Updated header styles */
.header-container {
    background-color: #FFEBCD;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.search-bar {
    position: absolute;
    right: 0;
    top: -40px;
    width: 200px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.activity-section {
    background-color: #FFF8DC;
    grid-column: 1 / 5;
    border: 1px solid #ddd;
    padding: 20px;
    height: 150px;
}

.activity-name {
    color: #666;
    margin-bottom: 15px;
}

.text-box {
    background-color: #F0FFFF;
    border: 1px solid #ddd;
    padding: 10px;
}

.content-grid {
    background-color: #FFF8DC;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.activity-section {
    background-color: #FFF8DC;
    margin-bottom: 20px;
}

.row {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.row img {
    width: 100%;  /* Adjusts the image width to fit its container */
    max-width: 200px;  /* Sets a maximum width so images remain side-by-side */
    height: auto;  /* Maintains aspect ratio */
}

.image-box {
    background: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
    flex: 1;
}

.main-content {
    background-color: #FFF8DC;;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.content-how {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
}

.video-section {
    text-align: center;
}

.video-placeholder {
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 10px;
}

.video-caption {
    color: #666;
}

.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #F0F8FF;
    color: black;
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

.chat-button:hover {
    background-color: #555;
}

.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}

.chatbot-iframe {
    display: none;
    width: 350px;
    height: 430px;
    border: none;
}
  