/* Base Styles & Variables */
:root {
    --primary: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #81c784;
    --secondary: #ff8f00;
    --secondary-dark: #e65100;
    --accent: #00796b;
    --text: #333333;
    --text-light: #666666;
    --text-lighter: #888888;
    --white: #ffffff;
    --light-bg: #f5f5f5;
    --light-gray: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', 'Open Sans', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-dark);
  }
  
  p {
    margin-bottom: 1.5rem;
  }
  
  a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .container {
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  section {
    padding: 5rem 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 143, 0, 0.1);
    border-radius: 50px;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
  }
  
  .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: var(--white);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
  }
  
  .btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }


/* Program Simple Page Styles */
.program-simple {
    padding-top: var(--navbar-height);
}

/* Program Header */
.program-header {
    padding: 4rem 0 2rem;
    background-color: var(--light-bg);
}

.program-header h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.program-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
}

.breadcrumb {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text);
}

/* Program Description */
.program-description {
    padding: 3rem 0;
}

.description-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.description-text {
    flex: 1;
}

.description-text h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.description-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.description-image {
    flex: 1;
    min-width: 300px;
}

.description-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* Program Objectives */
.program-objectives {
    padding: 3rem 0;
    background-color: var(--light-bg);
}

.program-objectives h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.objective-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.objective-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.objective-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

/* Related Projects */
.related-projects {
    padding: 3rem 0;
}

.related-projects h2 {
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.project-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.project-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .description-content {
        flex-direction: column;
    }
    
    .description-image {
        width: 100%;
        order: -1;
    }
    
    .program-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .program-header {
        padding: 3rem 0 1.5rem;
    }
    
    .program-subtitle {
        font-size: 1.1rem;
    }
    
    .objectives-grid {
        grid-template-columns: 1fr;
    }
}