@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
* 
{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

/***** Navigation bar *****/

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #ffffff;
}

.logo {
  font-weight: bold;
  color: #426b1f;
  font-family: 'Playfair Display', serif; 
}

.nav-links {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-links .nav-item {
  position: relative;
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #426b1f;
  font-weight: 400;
  padding: 0.5rem 1rem;
}

.nav-links .button.sponsor {
  background-color: #426b1f
  border: none;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
}

.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border-radius: 5px;
  padding: 1rem;
  z-index: 1000;
  width: 220px;
}

.dropdown-menu a {
  color: #426b1f;
  padding: 0.5rem 0;
  display: block;
  text-decoration: none;
}

.nav-item:hover .dropdown-menu {
  display: block;
}

.button {
  padding: 0.5rem 1rem;
  background-color: #426b1f;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}

.sponsor {
  margin-left: auto;
}

/* Responsive Design Adjustments */

@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-links .nav-item {
    margin-left: 0;
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
  }

  .nav-links .button.sponsor {
    width: 100%;
    text-align: center;
  }

  .dropdown-menu {
    width: 100%;
    position: relative;
    box-shadow: none;
  }

  .dropdown-menu a {
    width: 100%;
  }
}

/***** Footer *****/
.footer {
  background-color: #426b1f; 
  color: #ffffff;
  padding: 1rem 0; 
  text-align: center;
  margin-top: 2rem; 
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin: 0.5rem 0;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-section p,
.footer-section a {
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin: 0.5rem 0;
}

.footer-section a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer .container {
      flex-direction: column;
      align-items: center;
  }
}
/***** Adjusted Layout for Main Hero and Cards *****/


/* Main Hero Section */
.main-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Center content vertically */
  text-align: center;
  padding: 5rem 2rem;
  height: 100vh; /* Full screen */
  background: url("/static/images/colorful.png") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

/* Title - Keep it white and centered */
.title {
  font-size: 2.8rem;
  font-family: 'Playfair Display', serif;
  color: white;
  text-shadow: 2px 2px 10px rgb(255, 255, 255);
  margin-bottom: 1rem;
}

/* Subtitle - Keep it readable */
.subtitle {
  font-size: 1.4rem;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.73);
  margin-bottom: 3rem; /* Add space between subtitle and cards */
}

/* Adjust info cards */
.info-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 auto; /* Center the section */
  position: relative;
  top: -40px; /* Slightly raise cards but not too high */
  z-index: 2;
}

/* Card Styling */
.card {
  flex: 1;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

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

/* Responsive Design Adjustments */
@media screen and (max-width: 768px) {
  .main-hero {
      height: auto; /* Let content dictate height */
      padding-top: 1rem;
  }

  .title {
      font-size: 2rem;
  }

  .subtitle {
      font-size: 1rem;
  }

  .info-cards {
      flex-direction: column; /* Stack cards vertically */
      gap: 1rem; /* Reduce space between stacked cards */
      margin: 0; /* Remove additional spacing */
  }

  .card {
      padding: 1rem; /* Reduce card padding */
  }
}

/***** Corporate *****/

/* Corporate Title */
.corporate-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  color: #000000;
  padding: 0rem;
  margin-top: 1rem;
  font-size: 2.5rem;
}

/* Main Content */
.corporate-content {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
}

/***** Shared Styling for Both Boxes *****/

.event-container {
  display: flex;
  justify-content: space-between; /* Align boxes next to each other */
  gap: 2rem; /* Space between boxes */
  margin-top: 2rem; /* Space above the boxes */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.event-highlights,
.whats-in-it-box {
  flex: 1; /* Equal width for both boxes */
  padding: 2rem;
  background: #eef7ee; /* Light green background */
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  text-align: left;
}

/***** Specific Styling for Event Highlights *****/

.event-highlights h2,
.whats-in-it-box h2 {
  font-size: 1.8rem;
  color: #426b1f; /* Dark green for titles */
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.event-highlights ul,
.whats-in-it-box ul {
  list-style: disc;
  margin-left: 1.5rem;
  color: #000000;
  line-height: 1.6;
}

.event-highlights p,
.whats-in-it-box li {
  font-size: 1rem;
  color: #000000;
}

/* Custom Bullet Styling for the What's In It For You Section */
.whats-in-it-box ul {
  list-style: none; /* Remove default bullet styling */
  padding: 0;
}

.whats-in-it-box p {
  position: relative;
  margin-bottom: 0.8rem; /* Space between items */
  padding-left: 1.5rem; /* Indent for custom bullet */
  
}

.whats-in-it-box p::before {
  content: "✔"; /* Green check mark bullet */
  position: absolute;
  left: 0;
  color: #426b1f; /* Green color for the bullet */
  font-size: 1.2rem;
}

/* Sponsorship Table Section */
.sponsorship-packages {
  text-align: center;
  margin-top: 2rem;
  padding: 2rem;
  background: #eef7ee;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sponsorship-packages h2 {
  font-size: 2rem;
  color: #000000;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.sponsorship-packages p {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 1.5rem;
}

.sponsorship-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.sponsorship-table th,
.sponsorship-table td {
  border: 1px solid #ddd;
  padding: 1rem;
  text-align: center;
  font-size: 1rem;
}

.sponsorship-table th {
  background: #426b1f;
  color: white;
  font-size: 1.2rem;
  font-family: 'Inter', sans-serif;
}

.sponsorship-table td {
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

.sponsorship-table img {
  max-width: 50px;
  margin-bottom: 0.5rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .corporate-content {
      padding: 1rem;
  }

  .event-container {
      flex-direction: column; /* Stack boxes vertically */
  }

  .event-highlights,
  .whats-in-it-box {
      width: 100%; /* Full width for smaller screens */
  }

  .sponsorship-table table {
      font-size: 0.9rem;
  }

  .sponsorship-table img {
      max-width: 40px;
  }

  .event-highlights {
      padding: 1.5rem;
  }
}


/****** Trees *****/

.trees-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

.title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: rgb(0, 0, 0);
}

/* Grid layout for trees */
.tree-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  width: 100%;
}

.tree-item {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
}

.tree-item img {
  width: 100%;
  max-width: 200px; 
  height: 150px;
  object-fit: cover; 
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.tree-item h2 {
  font-size: 1.2rem;
  margin: 0.5rem 0 0.2rem;
  color: #000;
}

.tree-item h3 {
  font-size: 1rem;
  font-style: italic;
  color: #000;
  margin: 0.2rem 0 0.5rem;
}

.tree-item p {
  font-size: 0.9rem;
  color: #000;
  margin-top: 0.5rem;
}

.tree-item p strong {
  color: #426b1f;
}

/* Style for the summary section */
.summary {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 1rem;
  font-size: 1rem;
  color: #000;
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 1rem;
}

@media (max-width: 768px) {
  .tree-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tree-item img {
    height: 140px;
    max-width: 100%;
  }

  .tree-item h2 {
    font-size: 1rem;
  }

  .tree-item p {
    font-size: 0.9rem;
  }
}



/***** History *****/

.history-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: #000000;
  font-size: 2.5rem;
  margin: 20px 0;/
  margin-top: 1rem;
}

.content {
  padding: 2rem;
  text-align: left;
  background-color: #ffffff;
  margin: 30px auto;
  max-width: 900px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(46, 141, 65, 0.1);
  border: 1px solid #e0e0e0;
  font-family: 'Inter', sans-serif;
}

.content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 1rem;
  color: rgb(0, 0, 0);
  text-align: justify;
  padding: 1.5rem;
  background-color: #eef7ee; 
  border-radius: 8px;
}

@media (max-width: 768px) {
  .content {
    padding: 1rem;
  }

  .history-title {
    font-size: 2rem;
  }

  .content p {
    font-size: 1rem;
  }
}

/***** Carbon Calculator *****/

.carbon-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  color: #000000;
  padding: 0rem;
  margin-top: 1rem;
  font-size: 2.5rem;
}

.intro, .how-it-works, .calculator-link {
  margin: 20px;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  text-align: center;
}

h1 {
  color: #333;
  font-family: 'Arial', sans-serif;
}

h2 {
  color: #3b873e;
}

p {
  font-family: 'Verdana', sans-serif;
  line-height: 1.6;
}
.cta-intro {
  font-weight: bold;
  margin-top: 1rem;
  text-align: center;
}
.cta-button {
  display: block;
  width: max-content;
  padding: 10px 20px;
  margin: 10px auto;
  background-color: #3b873e;
  color: white;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: #1d4717;
}

/* Responsive Design Adjustments */

@media (max-width: 768px) {
  .carbon-title, h1, h2 {
    font-size: 2rem; 
  }

  .intro, .how-it-works, .calculator-link {
    margin: 10px;
    padding: 15px; 
  }

  .cta-button, p {
    padding: 8px 16px; 
    font-size: 0.9rem; 
  }
}

@media (max-width: 480px) {
  .carbon-title, h1, h2 {
    font-size: 1.8rem; 
  }

  .intro, .how-it-works, .calculator-link, .cta-button {
    padding: 10px; 
    margin: 5px; 
    font-size: 0.8rem; 
  }
}

/***** Team *****/

.button {
  display: inline-block;
  padding: 5px 15px;
  background-color: #426b1f;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
}

.button:hover {
  background-color: #365214;
}
.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column; 
  align-items: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  color: #000000;
  padding: 0rem;
  margin-top: 1rem;
  font-size: 2.5rem;
}

.team-row {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%; 
}

.team-member {
  width: 45%; 
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  border-radius: 8px;
  margin: 10px 1%; 
  padding: 20px; 
  background-color: #fff; 
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-photo {
  width: 150px; 
  height: 150px; 
  object-fit: cover; 
  display: block;
  margin-bottom: 20px; 
}

.member-info {
  padding: 10px;
  background-color: #ffffff;
}
.award-button {
  display: inline-block;
  padding: 5px 15px;
  background-color: #426b1f;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.award-button:hover {
  background-color: #365214;
}


/* Responsive Design Adjustments */

@media (max-width: 768px) {
  .team-member {
      width: 100%; 
      margin: 10px 0; 
  }
}

/***** Individual *****/

/* Hero Section */
.planting-days-page .hero {
  text-align: center;
  padding: 1rem;
}

.planting-days-page .main-title {
  font-family: 'Playfair Display', serif;
  color: #000000;
  margin-top: 1rem;
  font-size: 2.5rem;
}

.planting-days-page .subtitle {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 1rem;
}

/* Offering Section */
.individual-offering {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem;
  background-color: #ffffff;
}

.offering-details, .extras-details {
  flex: 1;
  padding: 2rem;
  background-color: #eef7ee;
  border: 1px solid #b3ddb3;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.offering-details:hover, .extras-details:hover {
  transform: translateY(-10px);
}

.offering-details h2, .extras-details h2 {
  font-size: 1.6rem;
  color: #426b1f;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.offering-details ul, .extras-details p {
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
}


/* Tree Link */
.tree-link {
  color: #426b1f;
  text-decoration: underline;
}

.tree-link:hover {
  text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .individual-offering {
      flex-direction: column;
  }

  .offering-details, .extras-details {
      margin-bottom: 1rem;
  }
}

/***** Manifesto *****/
.manifesto-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  color: #000000;
  padding: 1rem 0;
  margin-top: 1rem;
  font-size: 2.8rem;
}

.main-content {
  padding: 2.5rem;
  text-align: left;
  background-color: #ffffff;
  margin: 30px auto;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 6px 10px rgba(0,0,0,0.1);
  border: 2px solid #e0e0e0;
}

.main-content h1, .main-content h2 {
  color: #3a703b;
}

.main-content h1 {
  font-size: 2.8rem;
  margin-top: 0;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #e6e6e6;

}

.main-content h2 {
  font-size: 2rem;
  margin-top: 2rem;

}

.main-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 1rem;
  color: #000000;

}

.main-content a {
  color: #3b873e;
  text-decoration: none;
  border-bottom: 1px dashed #3b873e;
  transition: color 0.3s, border-bottom-color 0.3s;
}
.main-content p {
  margin-top: 1rem;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.main-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 0.5rem;
  color: #000000;

}
.main-content a:hover {
  color: #2d6b2f;
  border-bottom-color: #2d6b2f;
}

.photos {
  display: flex;
  justify-content: center;
  margin: 2rem;
  flex-wrap: wrap;
}

.photo-item {
  text-align: center;
  flex: 1;
}

.photos img {
  width: 250px;
  height: 200px;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.photos p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #000000;
}

/* Responsive Design Adjustments */

@media (max-width: 768px) {
  .main-content {
    padding: 2rem;
  }

  .main-content h1 {
    font-size: 2.2rem;
  }

  .main-content h2 {
    font-size: 1.6rem;
  }

  .main-content p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .main-content {
    padding: 1rem;
  }

  .main-content h1 {
    font-size: 1.8rem;
  }

  .main-content h2 {
    font-size: 1.4rem;
  }

  .main-content p {
    font-size: 0.95rem;
  }
}


/***** Core Values *****/
.values-section {
  padding: 5rem 2rem;
  background-color: #f3f3f3;
  text-align: center;
}

.values-title {
  font-family: 'Playfair Display', serif;
  color: #000000;
  font-size: 3rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
  text-align: center;
}



/***** Staggered Layout for Values *****/

.values-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  background-color: #ffffff; /* All white background for all blocks */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  height: 100%; /* Ensures all blocks are the same size */
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.value-item h3 {
  font-size: 2rem;
  color: #426b1f;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.value-item p {
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.7;
}

/* Ensuring all blocks are the same size and smaller */
.value-item {
  grid-column: span 6;
  height: 250px; /* Smaller block size but consistent */
}

.value-item:nth-child(5) {
  grid-column: span 12; /* Bottom block in the middle */
  margin-left: auto;
  margin-right: auto;
  height: 200px; 
}

/* Responsive Design */
@media (max-width: 1024px) {
  .values-title {ina
    font-size: 2.5rem;
  }

  .values-subtitle {
    font-size: 1.6rem;
  }

  .values-grid {
    grid-template-columns: repeat(8, 1fr);
  }

  .value-item {
    grid-column: span 8;
    height: auto; /* Adjusting height for responsiveness */
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .value-item:nth-child(5) {
    grid-column: span 4;
  }

  .value-item {
    grid-column: span 4;
    height: auto;
  }
}

@media (max-width: 480px) {
  .values-title {
    font-size: 2rem;
  }

  .values-subtitle {
    font-size: 1.4rem;
  }

  .values-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .value-item {
    padding: 1.5rem;
    height: auto;
  }
}
/***** How We Help Page *****/
.planting2-page {
  background-color: #ffffff;
  padding: 2rem 1rem;
  font-family: 'Inter', sans-serif;
  color: #000;
  display: flex;                 
  flex-direction: column;
  align-items: center;           
  font-size: 1rem;
  justify-content: center;
}


.planting2-info {
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  width: 100%;
  text-align: center;
  align-items: center;
}

.main-title {
  color: #000;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.steps-content2 p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #000;
  text-align: center;
}
.step p {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

/* Image Row */
.image-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 1000px;
}

.image-row div {
  flex: 1;
  text-align: center;
}

.image-row img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .image-row {
    flex-direction: column;
    align-items: center;
  }

  .image-row div {
    width: 100%;
    max-width: 400px;
  }
}@media (max-width: 768px) {
  .planting2-info {
    padding: 1.5rem;
  }

  .main-title {
    font-size: 2rem;
  }

  .steps-content2 p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .planting2-info {
    padding: 1rem;
  }

  .main-title {
    font-size: 1.6rem;
  }

  .steps-content2 p {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  .image-row img {
    height: 130px;
  }
}


/***** Payment *****/

.payment-section {
  padding: 2rem;
  text-align: center;
}

.payment-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 1.5rem;
}

.payment-method {
  background-color: #fff;
  padding: 2rem;
  margin: 1.5rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.payment-method h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 1rem;
}

.payment-method p {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 1rem;
}

.payment-button {
  background-color: #426b1f;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.payment-button:hover {
  background-color: #365214;
}

.bank-details {
  text-align: left;
  display: inline-block;
  margin-top: 1rem;
}

.bank-details p {
  font-size: 1rem;
  color: #000000;
  margin: 0.5rem 0;
}
.confirmation-section {
  padding: 0rem;
  padding-bottom: 1rem;
  text-align: center;
  margin-top: 1rem;
}

.confirmation-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: #426b1f;
  font-family: 'Inter', sans-serif;
}
/* Responsive Design Adjustments */
@media (max-width: 768px) {
  .payment-section, .payment-method, .confirmation-section {
    padding: 1rem; 
  }

  .payment-title, .payment-method h2, .confirmation-text {
    font-size: 1.8rem;  
  }

  .payment-button, .bank-details p {
    font-size: 0.9rem;  
  }
}
@media (max-width: 480px) {
  .bank-details {
    width: 100%;
    text-align: center;
  }
}


/***** Science Portfolio *****/
.co2-section {
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 900px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.co2-section h2 {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.co2-section ul {
  list-style-type: disc;
  text-align: left;
  margin: 1.5rem auto;
  padding: 0 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.co2-section ul p {
  margin-bottom: 0.8rem;
}

.co2-section ul p ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
  list-style-type: circle;
}

.co2-section img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  margin: 1.5rem auto;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.co2-section p {
  font-size: 1rem;
  color: #000000;
  margin-top: 1rem;
}

.co2-sections p {
  color: #000000;
  margin-top: 1rem;
  font-size: 0.5rem;
}

.science-portfolio {
  padding: 2rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.science-portfolio h1 {
  color: #000000;
  margin-bottom: 1rem;
}

.science-portfolio p {
  color: #333;
  margin-bottom: 2rem;
  max-width: 800px;
}

/* Responsive Design Adjustments */

/* For tablets and smaller devices */
@media (max-width: 768px) {
  .co2-section, .graph-section {
      padding: 1rem;
      max-width: 95%;
  }

  .co2-section h2, .graph-section h2 {
      font-size: 2rem;
  }

  .co2-section ul {
      padding: 0 1rem;
      font-size: 1rem;
  }

  .co2-section img, .graph-section img {
      max-width: 100%;
  }
}

/* For phones and extra small devices */
@media (max-width: 480px) {
  .co2-section, .graph-section {
      padding: 0.5rem;
  }

  .co2-section h2, .graph-section h2 {
      font-size: 1.8rem;
  }

  .co2-section ul {
      padding: 0 0.5rem;
      font-size: 0.9rem;
      line-height: 1.5;
  }

  .co2-section img, .graph-section img {
      max-width: 100%;
  }

  .navbar {
      flex-direction: column;
      align-items: flex-start;
      padding: 1rem;
  }

  .nav-links {
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
  }

  .nav-links a, .button.sponsor {
      padding: 0.5rem 1rem;
      width: 100%;
      text-align: center;
  }
}
@media (max-width: 480px) {
  .science-portfolio p {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
}

/***** Why Choose Us Section *****/

/* Section Container */
.benefits-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  padding: 2rem;
  margin: 2rem auto;
  background: linear-gradient(135deg, #eef7ee, #ffffff);
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  gap: 4rem;
  position: relative;
}

/* Title Styling */
.benefits-section h1 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  color: #000000;
  margin-bottom: 1rem;
  text-align: center;
  position: absolute;
  top: -4rem; /* Position outside the box */
  background: none;
}

/* Text Content Styling */
.text-content {
  width: 100%;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.text-content h2 {
  font-size: 1.8rem;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  color: #000000;
  margin-bottom: 1rem;
}

.text-content ul {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
  color: #333333;
  font-size: 1.2rem;
  line-height: 1.8;
}

.text-content ul li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.text-content ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #426b1f;
  font-size: 1.5rem;
}

/* Image Content Styling */
.image-content {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.image-content img {
  width: 300px; /* Set fixed width */
  height: 250px; /* Set fixed height for uniform dimensions */
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover; /* Ensure images are cropped properly */
}

.image-content img:hover {
  transform: scale(1.05); /* Add a slight zoom effect */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .benefits-section {
      width: 90%;
      padding: 1rem;
  }

  .text-content {
      width: 100%;
  }

  .image-content {
      flex-direction: column;
      gap: 1rem;
  }

  .image-content img {
      width: 120px; /* Adjust image size for mobile */
      height: 120px;
  }
}

/***** Carbon Offset Costs Section *****/

/* General Styling */
.carbon-offset-section {
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
  padding: 2rem;
  background: #eef7ee;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carbon-offset-section h1 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  color: #000000;
  margin-bottom: 1rem;
}

/* Offset List */
.offset-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.offset-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.offset-item h2 {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.offset-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
}

/* Oak Value Section */
.oak-value {
  padding: 1.5rem;
  background: #448144;
  color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.oak-value h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
  color: #000000;
}

.oak-value p {
  font-size: 1rem;
}

.oak-value .source-links {
  font-size: 0.85rem;
  color: #393838;
  margin-top: 1rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .offset-list {
      gap: 1rem;
  }

  .carbon-offset-section {
      padding: 1.5rem;
  }
}
/***** Gift Trees Page *****/

/* Page Title and Subtitle */
.gift-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  color: #426b1f;
  margin-top: 2rem;
  font-size: 2.5rem;
}

.gift-subtitle {
  font-family: 'Arial', sans-serif;
  text-align: center;
  color: #555555;
  margin-top: 0.5rem;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Steps Container */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.step {
  background: #eef7ee;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.step .number {
  width: 50px;
  height: 50px;
  background: #426b1f;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.step p {
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
}

/* Button Styling */
.button.join {
  background-color: #426b1f;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Arial', sans-serif;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.button.join:hover {
  background-color: #365214;
}

/* Responsive Design */
@media (max-width: 768px) {
  .steps-container {
      grid-template-columns: 1fr;
      padding: 1rem;
  }

  .step {
      padding: 1rem;
  }

  .step p {
      font-size: 0.95rem;
  }
}

/**** Founder Section ****/
.founder-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  color: #000000;
  font-size: 2.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content {
  max-width: 900px;
  margin: 0 auto 2rem auto;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(46, 141, 65, 0.1);
  border: 1px solid #e0e0e0;
  font-family: 'Inter', sans-serif;
}

.content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 1rem;
  color: rgb(0, 0, 0);
  text-align: justify;
  padding: 1.5rem;
  background-color: #eef7ee;
  border-radius: 8px;
}
