/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9fefb;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 0;
}
.graphic-preview {
  position: relative;
  width: 100%;
  max-width: 350px;
  height: 300px;
  margin: 0 auto;
  margin-right: 0;
}

.stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.page {
  position: absolute;
  width: 100%;
  max-width: 320px;
  height: 180px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform-origin: center;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .graphic-preview {
    height: 250px;
    margin-right: 0;
  }
  
  .page {
    max-width: 280px;
    height: 150px;
  }
  
  .page-back {
    top: 50px !important;
  }
  
  .page-third {
    top: 100px !important;
  }
}

/* Back page (bottom) - Horizontal with spacing */
.page-back {
  top: 60px;
  left: 0px;
  width: 320px;
  height: 180px;
  transform: rotate(-1deg);
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
  color: #333;
  padding: 20px;
  opacity: 1;
  z-index: 2;
  border: 2px solid #e9ecef;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Third page (bottom most) - New layer */
.page-third {
  top: 120px;
  left: -10px;
  width: 320px;
  height: 180px;
  transform: rotate(1deg);
  background: linear-gradient(to bottom, #28a745, #ffffff);
  color: #2c5530;
  padding: 20px;
  opacity: 1;
  z-index: 1;
  border: 2px solid #1e7e34;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

/* Front (main) page - Horizontal */
.page-front {
  top: 0px;
  left: 20px;
  width: 320px;
  height: 180px;
  transform: rotate(-0.5deg);
  background: linear-gradient(to bottom, #007744, #ffffff);
  color: #333;
  padding: 20px;
  opacity: 1;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* Inner content styling */
.cover-text h2 {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 600;
}

.cover-text p {
  font-size: 14px;
  margin-bottom: 8px;
  font-style: italic;
}

.cover-text ul {
  padding-left: 0;
  font-size: 12px;
  line-height: 1.4;
  list-style: none;
}

.cover-text ul li {
  position: relative;
  margin-bottom: 4px;
  padding-left: 20px;
}

.cover-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #007744;
  font-weight: bold;
  font-size: 14px;
}

/* Header */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(to right, #6DE5B6, #007744);
  color: white;
  position: relative;
  z-index: 1000;
}

.logo-svg {
        width: 80px;
        height: 80px;
      }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}
.nav-links li a {
        color: white;
        text-decoration: none;
        font-weight: 500;
      }

.nav-links a.active,
.nav-links a:hover {
  text-decoration: underline;
}
/* Hamburger Icon */
      .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
      }

      .hamburger span {
        width: 25px;
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s ease;
      }

      /* Responsive */
      @media (max-width: 768px) {
        .nav-links {
          position: absolute;
          top: 100%;
          left: 0;
          right: 0;
          background: #007744;
          flex-direction: column;
          align-items: center;
          display: none;
          padding: 1rem 0;
        }

        .nav-links.active {
          display: flex;
        }

        .hamburger {
          display: flex;
        }
      }
/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #6DE5B6, #f9fefb);
}

.hero-text {
  flex: 1;
  padding-right: 2rem;
}

.hero-text h1 {
  font-size: 3rem;
  color: #007744;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.btn-primary,
.btn-secondary {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 5px;
  background-color: #007744;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary {
  background-color: #6DE5B6;
  color: #007744;
}

/* Features Section */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  background-color: #f4fff9;
  padding: 4rem 2rem;
}

.feature-box {
  flex: 1;
  min-width: 280px;
  background: #fafffe;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-box ul {
  list-style: none;
  padding-left: 0;
}

.feature-box ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature-box ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background: linear-gradient(45deg, #007744, #00aa55);
  transform: rotate(45deg);
  box-shadow: 0 2px 4px rgba(0, 119, 68, 0.3);
}
.stacked-graphic {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 600px;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

@media (max-width: 768px) {
  .stacked-graphic {
    height: 350px;
    padding: 30px 10px;
    max-width: 100%;
  }
}

.stack {
  position: relative;
  transform-style: preserve-3d;
  width: 100%;
  max-width: 320px;
}

@media (max-width: 768px) {
  .stack {
    max-width: 280px;
  }
}

.layer {
  background: linear-gradient(135deg, #007744, #28a745);
  color: white;
  padding: 25px 35px;
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateZ(0px);
  transition: transform 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .layer {
    padding: 20px 25px;
    max-width: 280px;
    font-size: 14px;
  }
}

/* Layer depth */
.layer:nth-child(1) {
  background: linear-gradient(135deg, #007744, #6DE5B6);
  color: white;
  transform: translateZ(80px) translateY(-15px);
  z-index: 5;
}

@media (max-width: 768px) {
  .layer:nth-child(1) {
    transform: translateZ(40px) translateY(-10px);
  }
}

.layer:nth-child(2) {
  transform: translateZ(60px) translateY(15px);
  background: linear-gradient(135deg, #28a745, #ffffff);
  color: #2c5530;
  z-index: 4;
}

@media (max-width: 768px) {
  .layer:nth-child(2) {
    transform: translateZ(30px) translateY(10px);
  }
}

.layer:nth-child(3) {
  transform: translateZ(40px) translateY(45px);
  background: linear-gradient(135deg, #6DE5B6, #ffffff);
  color: #007744;
  z-index: 3;
}

@media (max-width: 768px) {
  .layer:nth-child(3) {
    transform: translateZ(20px) translateY(30px);
  }
}

.layer:nth-child(4) {
  transform: translateZ(20px) translateY(75px);
  background: linear-gradient(135deg, #e9ecef, #ffffff);
  color: #495057;
  z-index: 2;
}

@media (max-width: 768px) {
  .layer:nth-child(4) {
    transform: translateZ(10px) translateY(50px);
  }
}

.layer:nth-child(5) {
  transform: translateZ(0px) translateY(105px);
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  color: #6c757d;
  z-index: 1;
}

@media (max-width: 768px) {
  .layer:nth-child(5) {
    transform: translateZ(0px) translateY(70px);
  }
}
/* Page Headers - Consistent across all pages */
.services .container h1,
.contact .container h1,
.seo-tools .container h1 {
  font-size: clamp(1.5rem, 6vw, 4rem);
  color: transparent;
  -webkit-text-stroke: 1.5px #007744;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.3);
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.stair {
  font-size: clamp(1.5rem, 6vw, 4rem);
  color: transparent;
  -webkit-text-stroke: 1.5px #007744;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.3);
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}
/* Services and SEO Tool Cards */
.services {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #f8f9fa, #f9fefb);
}

.services .container p {
  font-size: 1.2rem;
  color: #495057;
  margin-bottom: 3rem;
  text-align: center;
}

.service-grid,
.tool-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.service-card,
.tool-item {
  background: linear-gradient(135deg, #f8f9fa, #fafffe);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before,
.tool-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007744, #28a745, #6DE5B6);
}

.service-card:hover,
.tool-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  background: linear-gradient(135deg, #fafffe, #f8f9fa);
}

.service-card h2,
.tool-item h2 {
  color: #007744;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.service-card p,
.tool-item p {
  color: #495057;
  line-height: 1.6;
  margin: 0;
}

/* Modal Overlay System */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: #fafffe;
  border-radius: 20px;
  max-width: 800px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid #e9ecef;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

/* Modal Header */
.modal-header {
  background: linear-gradient(135deg, #007744, #28a745);
  color: white;
  padding: 2rem;
  border-radius: 20px 20px 0 0;
  position: relative;
}

.modal-header h2 {
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
  font-weight: 600;
}

.modal-header p {
  margin: 0;
  opacity: 0.9;
  font-size: 1.1rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.modal-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Modal Body */
.modal-body {
  padding: 2.5rem;
}

.modal-section {
  margin-bottom: 2rem;
}

.modal-section h3 {
  color: #007744;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.modal-section p {
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.modal-section ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.modal-section ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  color: #495057;
  line-height: 1.6;
}

.modal-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #007744;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Feature highlights */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #007744;
}

.feature-item h4 {
  color: #007744;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-item p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

/* Pricing info in modal */
.pricing-info {
  background: linear-gradient(135deg, #007744, #28a745);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  text-align: center;
}

.pricing-info h3 {
  color: white;
  margin-bottom: 1rem;
}

.pricing-info .price {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.pricing-info .period {
  opacity: 0.8;
  font-size: 1.1rem;
}

/* Responsive modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 90vh;
  }
  
  .modal-header {
    padding: 1.5rem;
  }
  
  .modal-header h2 {
    font-size: 1.5rem;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Form */
.contact {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #f8f9fa, #f9fefb);
}

.contact .container {
  max-width: 800px;
}

.contact .container p {
  font-size: 1.2rem;
  color: #495057;
  margin-bottom: 3rem;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  background: #fafffe;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-form label {
  font-weight: 600;
  color: #007744;
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #007744;
  box-shadow: 0 0 0 3px rgba(0, 119, 68, 0.1);
}

.contact-form button {
  margin-top: 1rem;
  align-self: flex-start;
}


/* CTA */
.cta {
  text-align: center;
  padding: 4rem 2rem;
  background: #007744;
  color: white;
}

.cta h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}
.service-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #f8f9fa, #f9fefb);
}

.bubble {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  overflow: visible;
  flex-direction: column;
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Balloon colors */
.bubble:nth-child(1) {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
}

.bubble:nth-child(2) {
  background: linear-gradient(135deg, #4ecdc4, #7fdddd);
  color: white;
}

.bubble:nth-child(3) {
  background: linear-gradient(135deg, #45b7d1, #74c8e0);
  color: white;
}

.bubble:nth-child(4) {
  background: linear-gradient(135deg, #96ceb4, #b8dcc7);
  color: white;
}

.bubble:nth-child(5) {
  background: linear-gradient(135deg, #feca57, #ffd97a);
  color: white;
}

.bubble:nth-child(6) {
  background: linear-gradient(135deg, #c44569, #d267a0);
  color: white;
}

/* Balloon string effect */
.bubble::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
  border-radius: 1px;
}

.bubble:hover {
  transform: translateY(-10px);
}

.bubble p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.bubble-overlay {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
  white-space: nowrap;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.bubble h3 {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-bubbles {
    gap: 2rem;
    padding: 3rem 1rem;
  }
  
  .bubble {
    width: 220px;
    height: 220px;
    padding: 1.5rem;
  }
  
  .bubble p {
    font-size: 0.9rem;
  }
  
  .bubble-overlay {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}

.seo-stair-section {
  background-color: #f9fbfc;
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* SEO Tools Section */
.seo-tools {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #f8f9fa, #f9fefb);
}

.seo-tools .container p {
  font-size: 1.2rem;
  color: #495057;
  margin-bottom: 3rem;
  text-align: center;
}



.pricing-section {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #007744, #6DE5B6);
  text-align: center;
  color: #fff;
}

.pricing-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card {
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid #ffffff40;
  border-radius: 15px;
  width: 280px;
  min-height: 350px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1.5rem;
  margin: 0 auto;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #ffffff;
}

.card-details {
  opacity: 1;
  max-height: none;
  overflow: visible;
  transition: none;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffffff;
}

.card ul li {
  margin-bottom: 0.75rem;
  padding-left: 1.2rem;
  position: relative;
}

.card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6DE5B6;
  font-weight: bold;
}

.card-price {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid #ffffff;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  margin-top: auto;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.card:hover .card-details {
  opacity: 1;
  max-height: 1000px;
  margin-top: 1rem;
}

.ranking-layered {
  position: relative;
  width: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.badge-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  width: 100%;
  max-width: 800px;
}

.badge-layer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge {
  background: #fafffe;
  color: #333;
  font-weight: 500;
  text-align: left;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: transform 0.3s ease;
  border: 1px solid #e9ecef;
  padding: 0.75rem;
  position: relative;
  overflow: hidden;
}

/* Browser chrome effect */
.badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(to right, #f1f3f4, #e8eaed);
  border-bottom: 1px solid #dadce0;
}

/* Browser dots */
.badge::after {
  content: '●●●';
  position: absolute;
  top: 3px;
  left: 8px;
  font-size: 8px;
  color: #9aa0a6;
  letter-spacing: 2px;
}

.badge:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Rank styling with different heights - webpage screenshots */
.badge-layer:nth-child(1) .badge {
  width: 80px;
  height: 60px;
  font-size: 8px;
  background: #fafffe;
  color: #666;
  border: 1px solid #e0e0e0;
}

.badge-layer:nth-child(1) .badge::before {
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

.badge-layer:nth-child(2) .badge {
  width: 90px;
  height: 80px;
  font-size: 9px;
  background: #fafffe;
  color: #555;
  border: 1px solid #d0d0d0;
}

.badge-layer:nth-child(2) .badge::before {
  background: linear-gradient(to right, #f1f8f3, #e3f2e6);
}

.badge-layer:nth-child(3) .badge {
  width: 100px;
  height: 100px;
  font-size: 10px;
  background: #fafffe;
  color: #444;
  border: 1px solid #c0c0c0;
}

.badge-layer:nth-child(3) .badge::before {
  background: linear-gradient(to right, #e9f5ec, #d4edda);
}

.badge-layer:nth-child(4) .badge {
  width: 110px;
  height: 120px;
  font-size: 11px;
  background: #fafffe;
  color: #333;
  border: 1px solid #b0b0b0;
}

.badge-layer:nth-child(4) .badge::before {
  background: linear-gradient(to right, #d4f2db, #c3e6cb);
}

.badge-layer:nth-child(5) .badge {
  width: 120px;
  height: 140px;
  font-size: 12px;
  background: #fafffe;
  color: #007744;
  border: 2px solid #007744;
  box-shadow: 0 8px 25px rgba(0, 119, 68, 0.2);
}

.badge-layer:nth-child(5) .badge::before {
  background: linear-gradient(to right, #c3e6cb, #a7d6b0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .badge-wrapper {
    gap: 0.5rem;
  }
  
  .badge-layer:nth-child(1) .badge { width: 60px; height: 45px; font-size: 7px; }
  .badge-layer:nth-child(2) .badge { width: 70px; height: 60px; font-size: 8px; }
  .badge-layer:nth-child(3) .badge { width: 80px; height: 75px; font-size: 9px; }
  .badge-layer:nth-child(4) .badge { width: 90px; height: 90px; font-size: 10px; }
  .badge-layer:nth-child(5) .badge { width: 100px; height: 105px; font-size: 11px; }
  
  .badge::before {
    height: 15px;
  }
  
  .badge::after {
    top: 2px;
    left: 6px;
    font-size: 6px;
  }
}

.footer {
  background-color: #007744;
  color: white;
  padding: 3rem 2rem;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-column h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 0.5rem 0;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-column.logo p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.footer-column.social .social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icons a {
  color: white;
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1rem;
}
