  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
        }

        /* Navigation */
        .navbar {
            background: #ffffff;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
             display: flex;
            align-items: flex-start; /* Align items to the top */
            justify-content: space-between;
            padding-top: 10px; /* Optional spacing */
        }

        .logo {
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            height: 100%;
            
        }

        .logo::before {
            content:none;
            margin-right: 8px;
            font-size: 28px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 30px;
            padding-top: 12px;
            padding-right: 23px;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: #0052cc;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #0052cc;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .demo-btn {
            background: linear-gradient(135deg, #0052cc, #007bff);
            color: white;
            padding: 12px 24px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
        }

        .demo-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 82, 204, 0.4);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            padding: 120px 0 80px;
            background: #ffffff;
            min-height: 100vh;
            display: flex;
            align-items: center;
             flex-direction: column;     /* ✅ Add this */
    justify-content: space-between; /* ✅ Add this */
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            animation: fadeInUp 1s ease-out;
        }

        .hero-title {
            font-size: 48px;
            font-weight: 700;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 20px;
            color: #666;
            margin-bottom: 30px;
            font-weight: 400;
        }

        .hero-cta {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #0052cc, #007bff);
            color: white;
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 82, 204, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #0052cc;
            padding: 16px 32px;
            border: 2px solid #0052cc;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: #0052cc;
            color: white;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 24px;
            font-weight: 700;
            color: #0052cc;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 14px;
            color: #666;
         }

        /* Main Content Areas */
        .main-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .content-section {
          margin-left: -25px;
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            
        }

        .content-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #0052cc, #007bff);
        }

        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        }

        .section-label {
            font-size: 16px;
            font-weight: 600;
            color: #0052cc;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .payroll-circle {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 20px auto;
            position: relative;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .payroll-circle:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 82, 204, 0.2);
        }

        .payroll-circle::before {
            content: '';
            position: absolute;
            width: 220px;
            height: 220px;
            border: 2px solid #0052cc;
            border-radius: 50%;
            opacity: 0;
            animation: pulse 2s infinite;
            margin-right: 8px;
        }

        .circle-icon {
            font-size: 48px;
            margin-bottom: 10px;
        }

        .circle-text {
            font-size: 14px;
            font-weight: 600;
            color: #0052cc;
            text-align: center;
        }

        .counter {
            font-size: 24px;
            font-weight: 700;
            color: #0052cc;
            margin: 5px 0;
        }

        .facility-title {
            font-size: 28px;
            font-weight: 700;
            color: #333;
            margin-bottom: 30px;
        }

        .workflow-card {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 30px;
            border-radius: 12px;
            border: 2px solid #dee2e6;
            position: relative;
            overflow: hidden;
        }

        .workflow-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(135deg, #20c997, #17a2b8);
        }

        .workflow-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .workflow-title::before {
            content: "🔄";
            font-size: 20px;
        }

        .progress-bar {
            background: #e9ecef;
            height: 8px;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 15px;
        }

        .progress-fill {
            background: linear-gradient(135deg, #20c997, #17a2b8);
            height: 100%;
            width: 75%;
            border-radius: 4px;
            animation: progressLoad 2s ease-out;
        }

        .timeline-dots {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }

        .timeline-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #20c997;
            position: relative;
        }

        .timeline-dot.pending {
            background: #dee2e6;
        }

        .timeline-dot::after {
            content: '';
            position: absolute;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 20px;
            background: #dee2e6;
        }

        /* Features Section */
       .features {
    padding: 80px 0;
    background: #f8f9fa;
    flex: 1;
  }
        .features-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            color: #333;
            margin-bottom: 50px;
        }

       .features-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default: 1 column (mobile-first) */
    gap: 30px;
    justify-content: center;
}



@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row on tablet & desktop */
    }
}


        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .feature-title {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        .feature-description {
            color: #666;
            line-height: 1.6;
        }

        /* Footer */
       .footer {
    background: #002b45;
    color: white;
    padding: 60px 0 30px;
    margin-top: auto;
}
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 10px;
        }

        .footer-section a {
            color: #b3d9ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #ffffff;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #0052cc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: #007bff;
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid #334155;
            padding-top: 20px;
            text-align: center;
            color: #b3d9ff;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.5; }
            100% { transform: scale(1.1); opacity: 0; }
        }

        @keyframes progressLoad {
            from { width: 0%; }
            to { width: 75%; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                gap: 0;
                padding: 20px 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 15px 0;
            }

            .hamburger {
                display: flex;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            .main-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .content-section {
                padding: 30px 20px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        .expandable-card {
    cursor: pointer;
    position: relative;
    }

    .feature-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    margin-bottom: 12px;
    }

    .expandable-content {
    display: none;
    margin-top: 10px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    }

.expandable-card.expanded .expandable-content { 
    display: block;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.tab-buttons button {
  padding: 6px 12px;
  border: none;
  background-color: #e0f2f1;
  color: #00695c;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.tab-buttons button:hover {
  background-color: #b2dfdb;
}

.tab-content {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}

.greenhouse-details-section {
  display: none;
  background: #f9f9f9;
  padding: 60px 20px;
  animation: fadeInUp 0.6s ease-in-out;
  margin: 34px;
}

.greenhouse-details-section.visible {
  display: block;
}

.greenhouse-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.greenhouse-card {
  background: #e8f5e9;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.greenhouse-card.white {
  background: #ffffff;
}

.greenhouse-icon {
  font-size: 32px;
  color: #2e7d32;
  margin-bottom: 10px;
}

.greenhouse-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.greenhouse-details-section {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: #f9f9f9;
  overflow-y: auto;
  z-index: 999;
  padding: 60px 20px;
  animation: fadeInUp 0.4s ease-in-out;
}

.greenhouse-details-section.visible {
  display: block;
}

.greenhouse-description {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.greenhouse-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.greenhouse-card {
  flex: 1 1 220px;
  max-width: 280px;
  background: #e8f5e9;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.greenhouse-card.white {
  background: white;
}

.greenhouse-icon {
  font-size: 32px;
  color: green;
  margin-bottom: 10px;
}

.greenhouse-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.greenhouse-info-blocks {
  display: flex;
  flex-direction: column;
  gap: 30px;
  /* max-width: 1000px; */
  margin: 0 auto;
}

.HRMS-info-blocks{
  display: flex;
  flex-direction: column;
  gap: 30px;
  /* max-width: 1000px; */
  margin: 0 auto;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.info-item img {
  width: 180px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.info-text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2e7d32;
}

.info-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .info-item {
    flex-direction: column;
    text-align: center;
  }

  .info-item img {
    width: 100%;
    max-width: 300px;
  }
}

.greenhouse-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  padding: 20px;
  flex-wrap: wrap; /* ensures responsiveness */
}

.greenhouse-image {
  flex: 1;
  max-width: 500px;
}

.greenhouse-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.greenhouse-info {
  flex: 1;
  max-width: 600px;
}

.greenhouse-info h3 {
  font-size: 24px;
  color: #2e7d32;
  margin-bottom: 12px;
}

.greenhouse-info p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.hrms-info{
      flex: 1;
  max-width: 600px;
}

.hrms-info h3{

    font-size: 24px;
  color: #0e0f0e;
  margin-bottom: 12px;

}

.hrms-info p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.flex-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap; /* Ensures it stacks nicely on small screens */
}

.left-col {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.right-col {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.right-col img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-list {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}


.greenhouse-carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto 60px;
}
.hrms-carousel-container{
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.greenhouse-carousel {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}
.hrms-carousel{
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.greenhouse-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 30px;
  display: flex;
  justify-content: center;
}

.glass-box {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  max-width: 550px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-left: 78px;
}

.glass-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1d3557;
}

.glass-box p {
  font-size: 16px;
  color: #444;
  margin-top: 10px;
}

.glass-box img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.glass-box-hrms{
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  max-width: 550px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-left: 78px;
}

.glass-box-hrms h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1d3557;
}

.glass-box-hrms p {
  font-size: 16px;
  color: #444;
  margin-top: 10px;
}

.glass-box-hrms img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}



/* Buttons */
.carousel-prev, .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: white;
  font-size: 32px;
  padding: 8px 16px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
.carousel-prev:hover, .carousel-next:hover {
  background: rgba(0, 0, 0, 0.5);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}


.prevHrms, .nextHrms {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: white;
  font-size: 32px;
  padding: 8px 16px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.prevHrms:hover, .nextHrms:hover {
  background: rgba(0, 0, 0, 0.5);
}

.prevHrms {
  left: 10px;
}

.nextHrms {
  right: 10px;
}

.back-arrow-btn {
  padding: 3px 30px;
  font-size: 22px;
  background-color: transparent;
  color: #0052cc;
  border: 2px solid #0052cc;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-arrow-btn:hover {
  background-color: #0052cc;
  color: white;
  transform: translateX(-5px);
}

.back-arrow-container {
  text-align: center;
  margin-top: -10px; /* 👈 brings it closer to carousel */
  margin-bottom: 30px;
}



#page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.footer {
    background: #002b45;
    color: white;
    padding: 60px 0 30px;
    margin-top: auto;
}

.greenhouse-carousel-container {
  overflow: hidden;
  position: relative;
}
.greenhouse-carousel {
  display: flex;
  transition: transform 0.5s ease;
}
.greenhouse-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 20px;
}
.hrms-slide  {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 20px;
 
}

.demo-section {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #f7f9fc;
  z-index: 10000;
  padding: 3rem 1rem;
  overflow-y: auto;
}

.demo-section.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.demo-container {
  display: flex;
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
  margin: auto;
}

.demo-left, .demo-right {
  flex: 1;
  min-width: 320px;
}

.demo-left h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.demo-left p, .demo-left ul {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.demo-points {
  list-style: none;
  padding: 0;
}

.trusted .logos img {
  height: 40px;
  margin-right: 1rem;
}

.demo-right form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

form input, form select, form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.btn-submit {
  width: 100%;
  background: #007BFF;
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.btn-back {
  margin-top: 0.75rem;
  width: 100%;
  background: #ccc;
  color: black;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.policy-text {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 1rem;
}





/*
.demo-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff4ef;
  z-index: 9999;
  overflow-y: auto;
  padding: 4rem 2rem;
  display: none; 
}

.demo-section.active {
  display: flex !important;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hidden {
  display: none !important;
}
*/