/* Import Roboto Slab font */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500;600;700&display=swap");

/* --- Page Hero Section --- */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/pulication.png");
  background-size: cover;
  background-position: center;
  background-color: #4a0202;
  padding-top: 80px;
  box-sizing: border-box;
}

/* Overlay for better text readability */
.page-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Container for content */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  text-align: center;
}

/* Main Title */
.page-hero h1 {
  /* font-family: "Playfair Display", serif; */
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb Navigation */
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
  font-size: 14px;
  color: #ffffff;
}

.page-hero .breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-hero .breadcrumb a:hover {
  color: #c49a18;
  /* Gold color on hover */
}

.page-hero .breadcrumb span {
  color: #d1b24a;
  /* Gold color for current page */
  font-weight: 500;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .page-hero {
    min-height: 300px;
    height: 40vh;
    background-attachment: scroll;
    /* Disable parallax on mobile for better performance */
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

  .page-hero .breadcrumb {
    font-size: 12px;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .page-hero {
    min-height: 250px;
    height: 35vh;
  }

  .page-hero h1 {
    font-size: 2rem;
  }
}

/* 1. Top Content Styles */
.risk-section {
  padding: 40px 8%;
  width: 100%;
}

.risk-main-title {
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 600;
  /* margin-bottom: 40px; */
  margin-top: 20px;
  /* border-bottom: 2px solid #eee; */
  padding-bottom: 15px;
  /* font-family: 'Playfair Display', sans-serif; */
  text-align: left;
}

.title-line {
  width: 60px;
  height: 4px;
  background-color: #d1b24a;
  border-radius: 2px;
  margin-bottom: 40px;
}

.risk-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
  /* Space between top text and accordion below */
}

.risk-image-wrapper {
  flex: 0 0 300px;
}

.risk-image-wrapper img {
  width: 100%;
  height: 200px;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}

.risk-content-wrapper {
  flex: 1;
}

.risk-subtitle {
  color: #0056b3;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
}

.risk-content-wrapper p {
  color: #333;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  margin-top: 60px;
  text-align: justify;
}
