/* Base Styles */
:root {
  --primary-color: #00274c; /* Michigan Blue */
  --secondary-color: #ffcb05; /* Michigan Yellow */
  --accent-color: #2f65a7; /* Lighter Blue */
  --text-color: #333;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #777;
  --white: #fff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--accent-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 80px 0;
}

.light-section {
  background-color: var(--light-gray);
}

.accent-section {
  background-color: #ffcb05; /* Michigan Maize */
  color: #00274c; /* Michigan Blue for text to maintain contrast */
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-header h2:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.accent-section .section-header h2:after {
  background: var(--secondary-color);
}

.section-header p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--dark-gray);
}

.accent-section .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.primary-btn {
  background-color: #00274c; /* Michigan Blue */
  color: white;
}

.accent-section .primary-btn {
  background-color: #00274c; /* Michigan Blue */
  color: white;
}

.primary-btn:hover {
  background-color: #003057; /* Darker blue on hover */
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.accent-section .primary-btn:hover {
  background-color: #003057; /* Darker blue on hover */
  color: var(--white);
}

.secondary-btn {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.accent-section .secondary-btn {
  color: var(--white);
  border: 2px solid var(--white);
}

.secondary-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.accent-section .secondary-btn:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.primary-home-hero-btn {
  background-color: var(--secondary-color); /* Michigan Maize */
  color: #00274c; /* Michigan Blue for text to maintain contrast */
}
.accent-section .primary-home-hero-btn {
  background-color: var(--secondary-color); /* Michigan Maize */
  color: #00274c; /* Michigan Blue for text to maintain contrast */
}
.primary-home-hero-btn:hover {
  background-color: var(--secondary-color); /* Michigan Maize */
  color: #00274c; /* Michigan Blue for text to maintain contrast */
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.accent-section .primary-home-hero-btn:hover {
  background-color: var(--white);
  color: var(--primary-color);
}
.secondary-home-hero-btn {
  background-color: transparent; /* Michigan Blue */
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.accent-section .secondary-home-hero-btn {
  color: var(--white);
  border: 2px solid var(--white);
}
.secondary-home-hero-btn:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.accent-section .secondary-home-hero-btn:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* Header Styles */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  z-index: 1000;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

#header.sticky {
  padding: 5px 0;
  background-color: rgba(255, 255, 255, 0.95);
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo h1 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin: 0;
  font-weight: 700;
}

.main-menu {
  display: flex;
}

.main-menu li {
  position: relative;
  margin-left: 30px;
}

.main-menu a {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
}

.main-menu a:hover {
  color: var(--primary-color);
}

.main-menu a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.main-menu a:hover:after,
.main-menu a.active:after {
  width: 100%;
}

.main-menu a.active {
  color: var(--primary-color);
}

.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: var(--shadow);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  padding: 10px 0;
  border-radius: 4px;
  z-index: 100;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown .dropdown li {
  margin: 0;
  width: 100%;
}

.has-dropdown .dropdown a {
  padding: 10px 20px;
  display: block;
  font-size: 0.9rem;
}

.has-dropdown .dropdown a:after {
  display: none;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
#hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/hero-bg.svg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  margin-top: 0;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Overview Section */
.overview-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.overview-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.overview-content .btn {
  margin-top: 20px;
}

/* Feature Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin: 40px 0;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: var(--primary-color);
  margin: 15px 0;
  font-size: 1.4rem;
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  word-wrap: break-word;
}

.feature-card p {
  color: var(--text-color);
  margin-bottom: 20px;
  flex-grow: 1;
  width: 100%;
  word-wrap: break-word;
  overflow: hidden;
}

.tile-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}

/* Content Tiles */
.tiles-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.content-tile {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  margin-bottom: 30px;
}

.content-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .content-tile {
    flex-direction: row;
  }

  .content-tile.reverse {
    flex-direction: row-reverse;
  }
}

.tile-image {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
  height: 100%;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  padding: 30px;
}

.tile-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tile-content h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.tile-content p {
  margin-bottom: 20px;
}

.tile-link {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}

.tile-link i {
  margin-left: 8px;
  transition: var(--transition);
}

.tile-link:hover {
  color: var(--primary-color);
}

.tile-link:hover i {
  transform: translateX(5px);
}

/* Call to Action */
.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  color: #00274c; /* Michigan Blue */
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00274c; /* Michigan Blue */
  font-weight: 600;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #00274c; /* Michigan Blue */
  font-weight: 400;
}

/* Page Banner */
#page-banner {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 120px 0 60px;
  text-align: center;
}

#page-banner h1 {
  font-size: 3rem;
  margin: 0;
}

/* Content Sections for Inner Pages */
.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.content-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 2rem;
}

.content-section h3 {
  color: var(--accent-color);
  margin: 30px 0 15px;
  font-size: 1.5rem;
}

.content-section p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.content-section ul,
.content-section ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.content-section li {
  margin-bottom: 10px;
}

.content-section img {
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: var(--shadow);
}

.content-section blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 15px 20px;
  margin: 20px 0;
  background-color: var(--light-gray);
  font-style: italic;
}

/* Two-column layout */
.two-columns {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .two-columns {
    flex-direction: row;
  }

  .column {
    flex: 1;
  }
}

/* Contact Form */
.contact-form-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact-form-container {
    flex-direction: row;
  }
}

.contact-info {
  flex: 1;
}

.form-container {
  flex: 2;
}

.contact-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-item .icon {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-right: 20px;
  min-width: 40px;
  text-align: center;
}

.contact-item .text h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.contact-item .text p {
  color: var(--dark-gray);
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 39, 76, 0.2);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Team Members */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-photo {
  height: 250px;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.2rem;
  margin: 15px 0 5px;
  color: var(--primary-color);
}

.team-member p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.team-member .social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.team-member .social-links a {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.team-member .social-links a:hover {
  color: var(--primary-color);
}

/* Footer */
#footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-info h3,
.footer-partners h3,
.footer-links h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-info h3:after,
.footer-partners h3:after,
.footer-links h3:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
  bottom: -10px;
  left: 0;
}

.footer-info p {
  margin-bottom: 10px;
}

.footer-email {
  color: var(--secondary-color);
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
}

.footer-email:hover {
  color: var(--white);
  text-decoration: underline;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.partner-logos a {
  display: inline-block;
  transition: var(--transition);
}

.partner-logos img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: var(--transition);
}

.partner-logos a:hover img {
  opacity: 1;
  transform: translateY(-3px);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--white);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.copyright {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Placeholder Image */
.placeholder-img {
  background-color: var(--light-gray);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-gray);
  font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
    margin: 0 auto;
  }

  #page-banner h1 {
    font-size: 2.5rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .main-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
  }

  .main-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-menu li {
    margin: 0;
  }

  .main-menu a {
    display: block;
    padding: 12px 15px;
  }

  .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .has-dropdown.active .dropdown {
    max-height: 500px;
  }

  .section-header p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .feature-card {
    padding: 20px;
  }

  .tile-content {
    padding: 20px;
  }

  .footer-content {
    gap: 40px;
  }

  #page-banner h1 {
    font-size: 2rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  .tile-content h3 {
    font-size: 1.4rem;
  }
}

/* Publications List Styles */
.publications-list {
  margin: 2rem 0;
}

.publication-item {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background-color: #f7f7f7;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.publication-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.publication-item h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-weight: 600;
}

.publication-item .authors {
  font-style: italic;
  color: #666;
  margin-bottom: 0.5rem;
}

.publication-item .journal {
  font-weight: 500;
  color: #333;
  margin-bottom: 1rem;
}

.publication-item .abstract {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

.contact-info {
  background-color: #f7f7f7;
  border-radius: 8px;
  padding: 2rem;
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 39, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #333;
}

.contact-details p {
  margin: 0 0 0.3rem;
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--secondary-color);
}

.social-links {
  margin-top: 2rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: var(--primary-color);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--secondary-color);
}

/* Enhanced Team Member Styles */
.team-section {
  margin: 3rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team-member {
  display: flex;
  flex-direction: column;
  background-color: #f7f7f7;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.member-image {
  height: 250px;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 1.5rem;
}

.member-info h3 {
  margin-top: 0;
  color: var(--primary-color);
}

.member-title {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Map Section Styles */
.map-section {
  margin: 3rem 0;
}

.map-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.map-container iframe {
  display: block;
  width: 100%;
}

/* Accordion Styles */
.faq-section {
  margin: 3rem 0;
}

.accordion {
  margin-top: 2rem;
}

.accordion-item {
  margin-bottom: 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  background-color: #f7f7f7;
  padding: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #333;
}

.accordion-icon {
  font-size: 1rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 1.25rem;
  max-height: 500px;
}

/* Enhanced Form Styles */
.contact-form {
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}

.checkbox-label input {
  width: auto;
  margin-right: 10px;
  margin-top: 3px;
}

.checkbox-label span {
  flex: 1;
}

/* Add these styles to fix the circular icons */
.contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #dee6ee; /* Changed from #f0f4f8 to a darker shade */
  min-width: 50px; /* Prevent shrinking */
}

.contact-icon i {
  font-size: 20px;
  color: #003057; /* UMich blue */
}

/* Make sure the contact items display correctly */
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-details {
  margin-left: 15px;
}
