* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #000;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
}

#wbch-nav .container{
    padding: 0px !important;
}

/* Hero Section */
.hero-section {
  width: 100%;
  padding: 5rem 0px;
}

@media (min-width: 1280px) {
  .hero-section {
    padding: 8rem 0;
  }
}

.hero-section h1 {
  font-size: 2.15rem;
  font-weight: 700;
  color: #0070b6;
  text-align: center;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-section h1 {
    font-size: 3.8rem;
    text-align: left;
  }
}

@media (min-width: 1280px) {
  .hero-section h1 {
    font-size: 4.2rem;
  }
}

.hero-section h2 {
  font-size: 1.875rem;
  text-align: center;
  color: #000;
}

@media (min-width: 768px) {
  .hero-section h2 {
    font-size: 3rem;
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .hero-section h2 {
    font-size: 3.75rem;
    padding-right: 3.5rem;
  }
}

.hero-section p {
  font-size: 1.25rem;
  text-align: center;
  color: #000;
  margin: 2.5rem 0;
}

@media (min-width: 768px) {
  .hero-section p {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-section p {
    font-size: 1.875rem;
    margin: 5rem 0;
  }
}

.header-btn {
  background-color: #0070b6;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.header-btn:hover {
  background-color: #0070b6cc;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Breakdown Cover Section */
.breakdown-section {
  width: 100%;
  padding: 5rem 0px;
  background-color: #f6f6f6;
}

@media (min-width: 1280px) {
  .breakdown-section {
    padding: 5rem 0;
  }
}

.top-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .top-bar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .top-bar {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: border-color 0.3s;
}

.top-bar-item:hover {
  border-color: #0070b6;
}

.top-bar-item i {
  font-size: 1.5rem;
  color: #0070b6;
}

.top-bar-item p {
  font-size: 1rem;
  font-weight: 200;
}

.bottom-layout {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  margin-top: 5rem;
}

@media (min-width: 768px) {
  .bottom-layout {
    flex-direction: row;
    gap: 5rem;
  }
}

.bottom-layout-left {
  width: 100%;
}

.bottom-layout-left p:first-child {
  font-size: 1rem;
  font-weight: 700;
  color: #0070b6;
}

@media (min-width: 768px) {
  .bottom-layout-left p:first-child {
    font-size: 1.125rem;
  }
}

.bottom-layout-left p:nth-child(2) {
  font-size: 1.25rem;
  margin: 1rem 0;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .bottom-layout-list-item {
    font-size: 1.5rem;
  }

  .bottom-layout-left p:nth-child(2) {
    font-size: 1.6rem;
  }
}

.bottom-layout-list-item__desc {
  font-size: 0.8rem !important;
}

@media (min-width: 1024px) {
  .bottom-layout-list-item {
    font-size: 1.875rem;
    line-height: 1.5;
  }

  .bottom-layout-list-item__desc {
    font-size: 0.9rem !important;
  }
}

.bottom-layout-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bottom-layout-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bottom-layout-list-item div {
  min-width: 0.5rem;
  min-height: 3rem;
  background-color: #0070b6;
}

.bottom-layout-list-item p {
  font-size: 0.875rem;
  opacity: 0.8;
}

@media (min-width: 768px) {
  .bottom-layout-list-item p {
    font-size: 1rem;
  }
}

.bottom-layout-right {
  width: 100%;
}

.bottom-layout-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Breakdown Cover Types Section */
.cover-types-section {
  width: 100%;
  padding: 5rem 0rem;
  background-color: #fff;
}

@media (min-width: 1280px) {
  .cover-types-section {
    padding: 5rem 0;
  }
}

.cover-types-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  text-align: center;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .cover-types-section h2 {
    font-size: 1.875rem;
  }
}

.cover-types-section p {
  max-width: 48rem;
  margin: 0 auto 3rem;
  font-size: 0.875rem;
  color: #4b5563;
  text-align: center;
}

.cover-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cover-types-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .cover-types-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cover-types-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
  background-color: #f6f6f6;
  border-radius: 0.5rem;
  transition: box-shadow 0.3s;
}

.cover-types-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cover-types-card i {
  font-size: 2.25rem;
  color: #0070b6;
  margin-bottom: 1rem;
}

.cover-types-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.cover-types-card p {
  font-size: 0.875rem;
  color: #374151;
}

/* Customise AA Breakdown Cover Section */
.customise-section {
  width: 100%;
  padding: 5rem 0px;
  background-color: #fff;
}

@media (min-width: 1280px) {
  .customise-section {
    padding: 5rem 0;
  }
}

.customise-section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.customise-section-title h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .customise-section-title h2 {
    font-size: 1.875rem;
  }
}

.customise-section-title p {
  max-width: 48rem;
  margin: 0 auto;
  font-size: 0.875rem;
  color: #4b5563;
}

.customise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 2.5rem;
}

@media (min-width: 768px) {
  .customise-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.customise-item {
  display: flex;
  gap: 1rem;
}

.customise-item i {
  font-size: 1.5rem;
  color: #0070b6;
  margin-top: 0.25rem;
}

.customise-item div h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.25rem;
}

.customise-item div p {
  font-size: 0.875rem;
  color: #374151;
}

.customise-item div a {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0070b6;
  text-decoration: none;
}

.customise-item div a:hover {
  text-decoration: underline;
}
