/* styles.css */

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f6f8;
  color: #222;
  line-height: 1.6;
}

/* Header */

.site-header {
  background: #2d5d7b;
  color: white;
  padding: 2rem;
  text-align: center;
}

.site-header h1 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.subtitle {
  opacity: 0.9;
}

/* Layout */

.layout {
  display: flex;
  min-height: calc(100vh - 180px);
}

/* Sidebar */

.sidebar {
  width: 300px;
  background: white;
  border-right: 1px solid #ddd;
  padding: 1.5rem;
}

.sidebar h2 {
  margin-bottom: 1rem;
  color: #2d5d7b;
}

.resource-list {
  list-style: none;
}

.resource-list li {
  margin-bottom: 1.5rem;
}

.resource-list a {
  font-weight: bold;
  color: #2d5d7b;
  text-decoration: none;
}

.resource-list a:hover {
  text-decoration: underline;
}

.resource-list p {
  font-size: 0.95rem;
  color: #555;
  margin-top: 0.3rem;
}

/* Main Content */

.content {
  flex: 1;
  padding: 1.5rem;
}

.about-box {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid #ddd;
}

.about-box h2 {
  margin-bottom: 1rem;
  color: #2d5d7b;
}

.about-box p {
  margin-bottom: 1rem;
}

/* Chat */

.chat-container {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.chat-container iframe {
  width: 100%;
  height: 700px;
  border: none;
}

/* Footer */

.site-footer {
  background: #2d5d7b;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* Mobile */

@media (max-width: 800px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .chat-container iframe {
    height: 500px;
  }
}