td{
    text-align: center;
}

th {
    text-align: center;
}

td, tr, th{
    background-color: transparent !important;
}

.table-description td{
    text-align: left;
}

.subcontent {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.subcontent:hover {
    transform: translateY(-5px);
}

.subcontent h3 {
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.subcontent p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.subcontent-container {
    padding: 2rem 0;
    width: 80%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .subcontent {
        padding: 1.5rem;
    }
    
    .subcontent h3 {
        font-size: 1.3rem;
    }
}
:root {
    --primary-color: #5a8d55;
    --secondary-color: #84b97f;
    --light-color: #e8f5e4;
    --dark-color: #3a5c38;
    --white-color: #ffffff;
    --accent-color: #32de84;
    --default-color: #213b52;
  }
  
  /* Page Title - Match with requirements.css */
  .page-title {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    padding: 110px 0 70px;
    color: var(--white-color);
    position: relative;
    text-align: center;
  }
  
  .page-title h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }