:root {
    --primary-color: #2A5D34;
    --secondary-color: #7AB730;
    --accent-color: #FFC845;
}

.product-hero {
    padding-top: 100px;
    background-color: #2A5D34;
    color: white;
    margin-bottom: 100px;
}

.tech-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

#image-01 {
    margin-bottom: -90px;
    position: relative;
    z-index: 2;
}

.tech-card:hover {
    transform: translateY(-10px);
}

.tech-list {
    list-style: none;
    padding-left: 0;
}

.tech-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.tech-list li:last-child {
    border-bottom: none;
}

.process-steps .step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cert-card {
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
}

.resource-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 12px;
    height: 100%;
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.list-drops {
    padding-left: 85px;
    padding-right: 85px;
}

.accordion-button {
    font-size: 24px !important;
    font-weight: 600;
}

.accordion-body {
    font-size: 20px;
}

@media (max-width: 768px) {
    .product-hero {
        padding: 6rem 0 2rem;
    }
    
    .process-steps .step {
        flex-direction: column;
        text-align: center;
    }

    .list-drops {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.product-card {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.26);
      transition: transform 0.2s ease-in-out;
    }
    .product-card:hover {
      transform: scale(1.02);
    }
    .product-image {
      height: 200px;
      object-fit: contain;
      background-color: #fff;
    }
    .product-body {
      padding: 20px;
      text-align: center;
    }
    .product-title {
      font-size: 1.5rem;
      font-weight: 600;
    }
    .product-desc {
      color: #6c757d;
    }

.prd {
    border-radius: 20px;
    background-color: white;
}

.prd:hover {
    background-color: rgb(224, 224, 224);
    border: 1px solid gray;
}