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

body {
    font-family: Arial, sans-serif;
    background-color:#FFF8DC

    padding 20px;
}

header {
    background-color:#FFF8DC
    gap 20px;
    padding: 20px;
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    margin: 0 auto;
    padding-top: 50px;
    background-color:#FFFAF0
}

.language-select {
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-left: auto;
}

.search-bar {
    padding: 0.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    width: 200px;
}

.search-bar input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}


/* Left side: Email and Full Name */
.left-side {
    flex: 1;
    margin-right: 20px;
}

.left-side label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.left-side input[type="text"], 
.left-side input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Right side: Topic Interests and Email Permission */
.right-side {
    flex: 1;
}

.right-side label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.right-side .topics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.right-side .topics div {
    display: flex;
    flex-direction: column;
}

.right-side input[type="checkbox"] {
    margin-right: 10px;
}

/* Subscribe Button */
.subscribe-container {
    text-align: center;
    margin-top: 20px;
}

.subscribe-container button {
    background-color: #228B22;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.subscribe-container button:hover {
    background-color: #0056b3;
}

/* Email Permission Text Box */
.permission {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.permission input {
    margin-right: 10px;
}

.permission p {
    font-size: 14px;
    line-height: 1.5;
}

/* Search Bar */
.search-bar {
    width: 100%;
    text-align: right;
    margin-bottom: 20px;
}

.search-bar input[type="text"] {
    width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* AI Chat Button */
.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; /* Hidden by default */
    width: 350px;
    height: 430px;
    border: none;
  }
  