/* Global Reset and Basic Styling */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9fbfe;
  color: #333;
}

/* Navigation Bar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 15px 30px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #007bff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #007bff;
  font-weight: 500;
}

.nav-links a:hover {
  color: #0056b3;
}

/* Hero Section Styling */
#hero {
  text-align: center;
  padding: 60px 20px;
  background-color: #e7f0fd;
}

#hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

#hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

#hero button {
  background-color: navy;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

#hero button:hover {
  background-color: teal;
}

/* Sections Styling */
section {
  padding: 40px 20px;
  margin-bottom: 30px;
  text-align: center;
}

/* GPT-4o Chatbot Styling */
#chatbot input {
  padding: 10px;
  width: 300px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#chatbot button {
  margin-left: 10px;
}

/* Disclaimer Styling */
.disclaimer {
  font-size: 12px;
  color: #888;
  margin-top: 15px;
}

/* Footer Styling */
footer {
  text-align: center;
  background-color: #ffffff;
  padding: 15px 0;
  box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

footer a {
  text-decoration: none;
  color: #007bff;
}

footer a:hover {
  color: #0056b3;
}
/* Formspree Contact Form Styles */
.fs-form {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.fs-field {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.fs-label {
  margin-bottom: 5px;
  font-weight: bold;
  color: #0056b3;
}

.fs-input, .fs-textarea {
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.fs-textarea {
  resize: vertical;
  height: 120px;
}

.fs-description {
  font-size: 12px;
  color: #888;
  margin-top: 5px;
}

.fs-button-group {
  text-align: right;
}

.fs-button {
  padding: 10px 20px;
  background-color: navy;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.fs-button:hover {
  background-color: teal;
}
.section-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  background-color: #f4f9ff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.section-title {
  text-align: center;
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
}

.iframe-container {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #e0e7ff;
}
