/* Base Styles */
:root {
  --primary-color: #1b5e20;
  --primary-light: #4c8c4a;
  --primary-dark: #003300;
  --secondary-color: #4caf50;
  --secondary-light: #80e27e;
  --secondary-dark: #087f23;
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-gray: #666666;
  --background-light: #f5f5f5;
  --background-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --success-color: #4caf50;
  --error-color: #f44336;
  --warning-color: #ff9800;
  --info-color: #2196f3;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  --container-width: 1200px;
  --container-padding: 1rem;
  
  --border-radius: 8px;
  --box-shadow: 0 4px 6px var(--shadow-color);
  --transition: all 0.3s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background-light);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.button:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
}

.button.secondary {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.button.secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Header Styles */
header {
  background-color: var(--background-white);
  box-shadow: 0 2px 4px var(--shadow-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--container-padding);
}

.logo img {
  height: 50px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
}

.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu li {
  margin-right: 1.5rem;
}

.main-menu a {
  display: block;
  padding: 0.5rem;
  font-weight: 600;
  position: relative;
}

.main-menu a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.main-menu a:hover:after,
.main-menu a.active:after {
  width: 100%;
}

.utility-nav {
  display: flex;
  align-items: center;
  margin-left: 1.5rem;
}

#clock {
  font-size: 0.9rem;
  margin-right: 1rem;
  font-weight: 600;
}

#font-size-increase {
  background: none;
  border: none;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

#font-size-increase:hover {
  background-color: var(--background-light);
}

/* Hero Section */
.hero {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Page Header */
.page-header {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.2rem;
  margin: 0;
}

/* Blog Posts Grid */
.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

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

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--shadow-color);
}

.post-card a {
  display: block;
  color: var(--text-dark);
}

.post-image {
  height: 200px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.post-card:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  padding: 1.5rem;
}

.post-content h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.post-card:hover .post-content h2 {
  color: var(--primary-color);
}

.post-meta {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 0.75rem;
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 0.75rem;
  position: relative;
}

.read-more:after {
  content: '→';
  margin-left: 0.3rem;
  transition: var(--transition);
}

.post-card:hover .read-more:after {
  margin-left: 0.5rem;
}

/* Single Post */
.single-post {
  max-width: 900px;
  margin: 3rem auto;
  background-color: var(--background-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  color: var(--text-gray);
  font-weight: 600;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.back-link svg {
  margin-right: 0.5rem;
}

.back-link:hover {
  color: var(--primary-color);
}

.post-header {
  margin-bottom: 2rem;
}

.post-header h1 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.featured-image {
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: auto;
}

.post-content h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
}

.post-content h3 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
}

.post-content ul, 
.post-content ol {
  margin-bottom: 1.5rem;
}

.post-content a {
  text-decoration: underline;
}

.post-tags {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.post-tags h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.post-tags ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-tags li {
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}

.post-tags a {
  display: block;
  background-color: var(--background-light);
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.post-tags a:hover {
  background-color: var(--primary-light);
  color: var(--text-light);
}

.post-share {
  margin-top: 2rem;
}

.post-share h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.social-share {
  display: flex;
}

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--background-light);
  color: var(--text-dark);
  margin-right: 0.75rem;
  transition: var(--transition);
}

.social-share a:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.related-posts {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.related-posts h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.related-post {
  display: block;
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.related-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.related-post img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-post h4 {
  padding: 1rem;
  font-size: 1rem;
  margin: 0;
  transition: var(--transition);
}

.related-post:hover h4 {
  color: var(--primary-color);
}

/* About Page */
.about-page {
  padding: 3rem 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.about-image img {
  border-radius: var(--border-radius);
  height: 100%;
  object-fit: cover;
}

.values-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.values-list li {
  display: flex;
  margin-bottom: 1.5rem;
}

.value-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.value-content h3 {
  margin-bottom: 0.25rem;
}

.team-section {
  margin-bottom: 4rem;
}

.team-intro {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

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

.team-member {
  background-color: var(--background-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member h3 {
  margin: 1rem 0 0.25rem;
  font-size: 1.2rem;
}

.team-member p {
  padding: 0 1rem;
  margin-bottom: 0.5rem;
}

.team-member p:nth-child(3) {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--background-light);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.3rem;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.partners-section {
  margin-bottom: 4rem;
}

.partners-section h2,
.partners-section > p {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.partner {
  text-align: center;
}

.partner img {
  height: 100px;
  width: auto;
  margin: 0 auto 1rem;
  filter: grayscale(100%);
  transition: var(--transition);
}

.partner:hover img {
  filter: grayscale(0);
}

.partner h3 {
  font-size: 1rem;
}

.achievements-section {
  margin-bottom: 4rem;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.achievement {
  display: flex;
  align-items: flex-start;
}

.achievement-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.achievement-content h3 {
  margin-bottom: 0.25rem;
}

.cta-section {
  text-align: center;
  background-color: var(--background-white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section > p {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.cta-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cta-option {
  background-color: var(--background-light);
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.cta-option:hover {
  background-color: var(--primary-light);
  color: var(--text-light);
  transform: translateY(-5px);
}

.cta-option:hover h3,
.cta-option:hover p {
  color: var(--text-light);
}

.cta-icon {
  width: 60px;
  height: 60px;
  background-color: var(--background-white);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: var(--transition);
}

.cta-option:hover .cta-icon {
  background-color: var(--primary-dark);
  color: var(--text-light);
}

.cta-option h3 {
  margin-bottom: 0.75rem;
}

.cta-button-container {
  margin-top: 2rem;
}

/* Contact Page */
.contact-page {
  padding: 3rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-info {
  background-color: var(--background-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-details {
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
  margin: 0;
}

.social-contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.social-contact h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--background-light);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.contact-form-container {
  background-color: var(--background-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 0;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(27, 94, 32, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 0.75rem;
  margin-top: 0.3rem;
}

.form-submit {
  grid-column: span 2;
  text-align: center;
  margin-top: 1rem;
}

.map-section {
  margin-bottom: 3rem;
}

.map-container {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-section h2 {
  margin-bottom: 2rem;
}

.accordion {
  background-color: var(--background-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--border-color);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  background-color: transparent;
  text-align: left;
  transition: var(--transition);
}

.accordion-header:hover {
  color: var(--primary-color);
}

.accordion-header svg {
  transition: var(--transition);
}

.accordion-header.active svg {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-header.active + .accordion-content {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: var(--background-white);
  border-radius: var(--border-radius);
  padding: 2rem;
  max-width: 500px;
  position: relative;
  box-shadow: 0 10px 30px var(--shadow-color);
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-gray);
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--text-dark);
}

.thank-you-message {
  text-align: center;
}

.thank-you-message svg {
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.thank-you-message h2 {
  margin-bottom: 1rem;
}

.thank-you-message p {
  margin-bottom: 1.5rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--background-white);
  box-shadow: 0 -2px 10px var(--shadow-color);
  z-index: 999;
  padding: 1.5rem;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-buttons button {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

#accept-all-cookies {
  background-color: var(--primary-color);
  color: var(--text-light);
}

#accept-all-cookies:hover {
  background-color: var(--primary-dark);
}

#customize-cookies,
#reject-cookies {
  background-color: var(--background-light);
  color: var(--text-dark);
}

#customize-cookies:hover,
#reject-cookies:hover {
  background-color: var(--border-color);
}

.cookie-content a {
  font-weight: 600;
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
}

.footer-links h3:after,
.footer-contact h3:after,
.footer-social h3:after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--text-light);
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-social .social-icons {
  margin-top: 1rem;
}

.footer-social .social-icons a {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.footer-social .social-icons a:hover {
  background-color: var(--secondary-color);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .about-intro {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    grid-row: 1;
  }
  
  .about-image img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
  }
  
  .cta-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .blog-posts {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .achievements-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    padding: 1rem;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  nav {
    width: 100%;
    flex-direction: column;
  }
  
  .main-menu {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.75rem;
  }
  
  .utility-nav {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .single-post {
    padding: 1.5rem;
  }
  
  .post-header h1 {
    font-size: 1.75rem;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: auto;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .main-menu {
    flex-direction: column;
    align-items: center;
  }
  
  .main-menu li {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  
  .blog-posts {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

/* Custom Font Size Change */
body.increased-font-size {
  font-size: 18px;
}

body.increased-font-size h1 {
  font-size: 2.75rem;
}

body.increased-font-size h2 {
  font-size: 2.25rem;
}

body.increased-font-size h3 {
  font-size: 1.75rem;
}

body.increased-font-size .post-content p,
body.increased-font-size .post-content li {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.post-card,
.team-member,
.achievement,
.cta-option {
  animation: fadeIn 0.6s ease-out forwards;
}

.post-card:nth-child(2),
.team-member:nth-child(2),
.achievement:nth-child(2),
.cta-option:nth-child(2) {
  animation-delay: 0.2s;
}

.post-card:nth-child(3),
.team-member:nth-child(3),
.achievement:nth-child(3),
.cta-option:nth-child(3) {
  animation-delay: 0.4s;
}

.post-card:nth-child(4),
.team-member:nth-child(4),
.achievement:nth-child(4) {
  animation-delay: 0.6s;
}

.post-card:nth-child(5),
.team-member:nth-child(5),
.achievement:nth-child(5) {
  animation-delay: 0.8s;
}
