
          
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #faf8f5;
    line-height: 1.6;
}

.bg-mat-green {
    background-color: #3a5a40 !important;
}

.text-mat-green {
    color: #3a5a40 !important;
}

.border-mat-green {
    border-color: #3a5a40 !important;
}

.hover-bg-mat-green:hover {
    background-color: #3a5a40 !important;
}

.accent-orange {
    color: #e9b384 !important;
}

.bg-accent-orange {
    background-color: #e9b384 !important;
}

.canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    opacity: 0.1;
    border-radius: 50%;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background-color: #3a5a40;
    top: 10%;
    left: 5%;
    animation: float 8s infinite ease-in-out;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background-color: #e9b384;
    top: 70%;
    left: 85%;
    animation: float 10s infinite ease-in-out;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background-color: #3a5a40;
    top: 40%;
    left: 70%;
    animation: float 12s infinite ease-in-out;
}

.card-hover-effect {
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.card-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.purchase-button {
    transition: all 0.3s ease;
}

.purchase-button:hover {
    transform: scale(1.05);
}

.text-gradient {
    background: linear-gradient(135deg, #3a5a40, #e9b384);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(10px) translateX(-15px); }
    75% { transform: translateY(-15px) translateX(5px); }
}

@media (max-width: 768px) {
    .shape-1 {
        width: 80px;
        height: 80px;
        top: 5%;
        left: 2%;
    }
    
    .shape-2 {
        width: 60px;
        height: 60px;
        top: 80%;
        left: 90%;
    }
    
    .shape-3 {
        width: 40px;
        height: 40px;
        top: 30%;
        left: 80%;
    }
}
          
        