.hero-section {
    background-color: #004771; 
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #7CFC00;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    position: relative;
    transition: all 0.3s ease-in-out;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}

.hero-buttons .btn-primary {
    background-color: #7CFC00;
    color: #004771;
}

.hero-buttons .btn-outline-light {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.hero-buttons .btn:hover {
    transform: translateY(-5px);
}

.hero-buttons .btn-primary:hover {
    background-color: #004771;
    color: #7CFC00;
}

.hero-buttons .btn-outline-light:hover {
    background-color: white;
    color: #004771;
}

.hero-image {
    position: absolute;
    bottom: -40px;
    right: 50px;
    max-width: 500px;
    opacity: 0.9;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.hero-image img:hover {
    transform: scale(1.05);
}

.overlay-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('abstract-shape.png') no-repeat center;
    background-size: cover;
    opacity: 0.2;
}

@media (max-width: 992px) {
    .hero-section {
        padding: 100px 20px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 16px;
    }
    .hero-image {
        display: none;
    }
}