/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  font-family: 'Cal Sans', sans-serif;
  color: #333;
}	

/* Section cards */
main.container section {
  background: #ffffff;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
}

/* Section headings */
main.container h2 {
  color: #2c3e50;
  margin-bottom: 15px;
}

/* Paragraphs and list text */
main.container p,
main.container li {
  line-height: 1.6;
  font-size: 16px;
  color: #444;
}

/* Team list style */
.team ul li {
  margin-bottom: 10px;
}

/* Contact links */
.contact a {
  color: #038a5c;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.logo1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo1 img {
  height: 50px;
  margin-right: 15px;
}

.logo1 h1 {
  font-size: 24px;
}


/* Main container */
main.container {
  flex: 1;
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 20px;
}

/* Intro section */
.intro {
  text-align: center;
  margin-bottom: 30px;
}

.intro h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.intro p {
  font-size: 16px;
  color: #555;
}

.btn {
  padding: 12px 24px;
  background: #2c3e50;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #038a5c;
}

.btn-logo {
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
}

/* Footer styles */
footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}
