*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.crest_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 2rem;
    gap: 1.5rem;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.crest_wrapper .b5 img {
    max-width: 150px;
    height: auto;
}

.crest_wrapper .b6 h1 {
    font-size: 3rem;
    font-family: sans-serif;
    font-weight: 600;
    color: green;
    margin: 0.5rem 0;
}

.crest_wrapper .b6 p {
    font-size: 1.1rem;
    font-family: sans-serif;
    color: green;
    margin: 0;
}

/* ✅ Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .crest_wrapper {
        flex-direction: column;
        margin: 1.5rem 1rem;
    }

    .crest_wrapper .b5 img {
        max-width: 120px;
    }

    .crest_wrapper .b6 h1 {
        font-size: 2rem;
    }

    .crest_wrapper .b6 p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .crest_wrapper .b6 h1 {
        font-size: 1.6rem;
    }

    .crest_wrapper .b6 p {
        font-size: 0.95rem;
    }

    .crest_wrapper {
        margin: 1rem;
    }
}
/* Container Styling */
.crest_info1 {
    max-width: 600px;
    margin: 100px auto;
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.1);
    text-align: center;
}

/* Header Styling */
.crest_info1 h1 {
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 15px;
}

/* Values Styling */
.values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.values p {
    background-color: #a5d6a7;
    color: #004d40;
    padding: 12px 20px;
    margin: 5px;
    border-radius: 20px;
    font-weight: bold;
    flex: 1 1 auto;
    text-align: center;
    min-width: 120px;
    transition: background-color 0.3s ease;
}

.values p:hover {
    background-color: #81c784;
}

/* Responsive Design */
@media (max-width: 480px) {
    .crest_info1 h1 {
        font-size: 1.5rem;
    }

    .values {
        flex-direction: column;
    }

    .values p {
        font-size: 1rem;
        padding: 10px;
    }
}

  .container {
      max-width: 900px;
      margin: auto;
    }

    h2 {
      color: #0b5e0f;
      text-transform: uppercase;
      font-weight: bold;
    }

    .section-title {
      font-size: 1.3rem;
      color: #0b5e0f;
      margin-top: 30px;
    }

    p {
      font-size: 1rem;
      line-height: 1.6;
      color: #333;
    }

    .crest-img {
      max-width: 150px;
      height: auto;
      display: block;
      margin: 20px auto;
    }

    @media (max-width: 600px) {
      .container {
        padding: 10px;
      }

      h2 {
        font-size: 1.1rem;
      }

      .section-title {
        font-size: 1.1rem;
      }

      p {
        font-size: 0.95rem;
      }
    }