main {
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

section {
  margin-bottom: 3rem;
}

section h2 {
  color: #00588f;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.tool-grid a.tool-card {
  display: block;
  text-decoration: none;
  background-color: white;
  border-left: 6px solid #fd8301;
  border-radius: 1.2rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease;
  color: inherit;
}

.tool-grid a.tool-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.tool-card h3 {
  margin-top: 0;
  color: #00588f;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-family: 'Poppins', sans-serif;
}

.tool-card p {
  color: #444;
  font-size: 1rem;
}

.logout-button {
  background-color: #00588f;
  color: white;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.2s ease, transform 0.2s ease;
  height: 100%;
}

.logout-button:hover {
  background-color: #e56f00;
  transform: translateY(-1px);
}

.hero-section-modern {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
  border-radius: 1.5rem;
  margin-bottom: 4rem;
}

.hero-bg-blur {
  position: absolute;
  inset: 0;
  background: url('assets/pgt.jpg') center/cover no-repeat;
  filter: blur(4px) brightness(0.7);
  z-index: 0;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,88,143,0.5), rgba(253,131,1,0.4));
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.hero-text h1 span {
  color: #fd8301;
}

.hero-text p {
  font-size: 1.15rem;
  font-weight: 400;
  color: #f0f0f0;
}

.about-contact {
  margin-bottom: 2.5rem;
  padding-left: 1rem;
  border-left: 3px solid #fd8301;
}

.about-contact h2 {
  font-size: 1.4rem;
  font-family: 'Poppins', sans-serif;
  color: #00588f;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.about-contact p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.about-contact i {
  color: #00588f;
}