body {
  font-family: 'Inter', sans-serif;
  background: #f9f9f9;
}

*, *::before, *::after {
  box-sizing: border-box;
}

header {      
  color: #333;
  background: #fff;
  padding: 15px 20px;
  font-family: 'Inter', sans-serif;      
  border: 1px solid #333;
  border-bottom: 3px solid #333;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

header .logo {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
}

header nav a {
  color: #333;
  text-decoration: none;
  margin-left: 20px;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 600px) {
  header .header-container {
    flex-direction: column;
    align-items: center;
  }

  header nav {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  header nav a {
    margin: 0 10px;
  }
}

footer {      
  color: #333;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;        
}

footer a{
  color: #333;
  text-decoration: none;
}

.calText {
  max-width: 700px;
  margin: 40px auto;
  padding: 20px;    
  color: #444;
  line-height: 1.6;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border: 1px solid #333;
  border-bottom: 3px solid #333;
}

h1 {      
  font-size: 28px;
  font-weight: 700;  
  margin: 30px auto;
  color: #222;
  letter-spacing: 0.5px;        
}

.calText h2 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

@media (max-width: 600px) {
  h1 {
    font-size: 24px;
  }

  .calText h2 {
    font-size: 20px;
  }
}