  .pages-header {
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 30px;
  }
  .pages-header-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto;
    transition: transform 0.4s ease;
  }
  .pages-header-img:hover {
    transform: scale(1.01);
  }

  .content-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-container {
    margin-bottom: 4rem;
    background: #ffffff;
    padding: 3rem 4rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
  }
  .section-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  }
  .section-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #800000 0%, #c42b2b 100%);
  }

  .section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
  }
  .divider {
    flex-grow: 1;
  }
  .hr-header {
    border-top: 2px solid rgba(128, 0, 0, 0.1);
    margin: 0 30px;
    width: 100%;
  }
  
  .section-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: #800000;
    white-space: nowrap;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(128, 0, 0, 0.05);
  }
  .section-title-with-logo {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .section-title-logo {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
  }

  .centered-content {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .section-content {
    color: #333;
  }
  .paragraph-content {
    text-align: justify;
    font-size: 1.2rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
  }

  /* Core Values Specific */
  .core-values {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: #fefefe;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
  }
  .core-values:hover {
    background: #fffafa;
    border-color: rgba(128,0,0,0.3);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.08);
  }
  .cv-letter {
    font-size: 3.5rem;
    font-weight: 900;
    color: #800000;
    width: 80px;
    flex-shrink: 0;
    text-shadow: 2px 2px 4px rgba(128,0,0,0.15);
    line-height: 1;
  }
  .cv-letter p {
    margin: 0;
  }
  .cv-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #444;
  }
  .cv-description p {
    margin: 0 0 0.5rem 0;
    text-align: justify;
  }
  .cv-description strong {
    font-size: 1.4rem;
    color: #800000;
    letter-spacing: 0.5px;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .section-container {
        padding: 2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .hr-header {
        margin: 0 15px;
    }
    .cv-letter {
        font-size: 2.5rem;
        width: 50px;
    }
  }
