/* AI Policy Project Specific Styles */

/* Add AI Policy-specific overrides and styles below */

.main-content {
  margin: 40px auto;
  padding: 0;
  max-width: 35%;
  text-align: left;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

.main-content h1 {
  text-align: center;
  font-size: 2.5em;
  margin: 20px auto;
  color: #333;
  width: 140%;
  max-width: 160%;
  line-height: 1.3;
  letter-spacing: -0.5px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.main-content h2, 
.main-content h3, 
.main-content p, 
.main-content ul, 
.main-content ol {
  text-align: left;
  max-width: 100%;
  margin-bottom: 20px;
  color: #555;
  line-height: 1.7;
  letter-spacing: 0.2px;
}

.main-content h2 {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #444;
  line-height: 1.4;
}

.main-content h3 {
  font-size: 1.4em;
  margin-top: 25px;
  margin-bottom: 12px;
  color: #444;
  line-height: 1.4;
}

.main-content p {
  margin-bottom: 18px;
  text-align: justify;
}

.main-content ul li, 
.main-content ol li {
  margin-left: 20px;
  width: calc(100% - 20px);
  margin-bottom: 8px;
  line-height: 1.6;
}

.hero img {
  display: block;
  margin: 0 auto;
  width: 80%;
  max-width: 1000px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

/* Button styling for project links */
.project-link {
  display: block;
  align-items: center;
  justify-content: center;
  width: 500px;
  margin: 20px auto;
  padding: 10px 20px;
  text-align: center;
  font-size: 16px;
  text-decoration: none;
  color: #52C7FB;
  background-color: transparent;
  border: 1px solid #52C7FB;
  border-radius: 25px;
  box-sizing: border-box;
  transition: background-color 0.3s, color 0.3s;
}

.project-link:hover {
  background-color: #52C7FB;
  color: white;
}

.project-link:active {
  background-color: #52C7FB;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .main-content {
    max-width: 100%;
    padding: 0 20px;
    text-align: justify;
  }
  
  .main-content h1 {
    text-align: center;
    font-size: 2.2em;
    width: 100%;
    max-width: 100%;
    position: static;
    left: auto;
    transform: none;
    margin: 20px 0;
    line-height: 1.3;
    font-weight: 700;
  }
  
  .main-content h2 {
    font-size: 1.6em;
  }
  
  .hero img {
    width: 100%;
    height: 250px;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .project-link {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .main-content h1 {
    font-size: 1.9em;
    margin: 15px 0;
  }
  
  .main-content h2 {
    font-size: 1.4em;
  }
  
  .hero img {
    height: 200px;
  }
}

@media (max-width: 360px) {
  .main-content h1 {
    font-size: 1.7em;
    margin: 10px 0;
  }
  
  .hero img {
    height: 180px;
  }
} 