.hero-section {
    background: linear-gradient(135deg, #1c5f52 0%, #3d9b7d 100%);
    position: relative;
    z-index: 1;
}

.min-vh-75 {
    min-height: 75vh;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: -75px;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.shape-3 {
    width: 75px;
    height: 75px;
    top: 20%;
    left: 15%;
    animation: float 7s ease-in-out infinite;
}

.shape-4 {
    width: 125px;
    height: 125px;
    bottom: 20%;
    right: 15%;
    animation: float 9s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.btn-light {
    background: #ffffff;
    border-color: #ffffff;
    color: #16a085;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: #f8f9fa;
    border-color: #f8f9fa;
    color: #16a085;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-width: 2px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .min-vh-75 {
        min-height: 50vh;
    }
}

.opacity-10 {
    opacity: 0.1;
}

.stat-item {
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.tool-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card:hover .tool-icon {
    transform: scale(1.1);
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #16a085;
    color: white;
    font-weight: bold;
    margin: 0 auto;
}

.step-card {
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(22, 160, 133, 0.1);
    color: #16a085;
}

.accordion-button:focus {
    border-color: #16a085;
    box-shadow: 0 0 0 0.25rem rgba(22, 160, 133, 0.25);
}

.cta-section {
    background-color: #f8f9fa;
}