:root{
  --main-highlight-color:#0D7377;
  --main-letter-color:#333;
}

.more{
  text-decoration: underline;
  color: var(--main-highlight-color);
}

.more:hover{
  cursor: pointer;
}

body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #fdfdfd;
  color: var(--main-letter-color);
}

.headSec {
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--main-letter-color);
  text-align: center;
  padding: 100px 20px;
}

.headSec p{
  color:var(--main-highlight-color);
}

a{
  color:var(--main-letter-color);
}

.logo img{
  max-width: 180px;
  width: auto;
  height: auto;
}

.navbar {
  background: rgba(255,255,255,0.85);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: var(--main-letter-color);
  font-weight: bold;
}

.nav-links li a:hover {
  text-decoration: underline;
  color: var(--main-highlight-color);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.section {
  padding: 80px 20px;
  max-width: 800px;
  margin: auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.section.first{
  padding: 80px 20px;
  max-width: 800px;
  margin: auto;
  opacity: 100;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

p img{
  max-width: 140px;
  min-width: 50px;
  width: 25%;
  height: auto;
  float: left;
  border: 1px solid var(--main-highlight-color);
  margin-bottom: 10px;
  margin-right: 10px;
  border-radius: 10px;
}

.rightFloat{
  float: right;
  margin-right: 0;
  margin-left: 10px;
}

a:hover{
  color: var(--main-highlight-color);
}



/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 30px;
    width: 200px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .logo img{
  max-width: 130px;
  height: auto;
}
}
