/* General Section Styling */
.entreprenari-section {
    padding: 60px 0;
}

/* Title Styling */
.entreprenari-title {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #3b86c4;
}

.entreprenari-subtitle {
    font-size: 18px;
    color: #555;
    font-weight: 500;
}

/* Description Styling */
.entreprenari-description {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    margin: 0 auto 20px;
}

/* Section Styling */
.entreprenari-images {
    padding: 40px 0;
    text-align: center;
}

/* Image Container */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

/* Image Styling */
.image-container img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.image-container img:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .entreprenari-section{
        padding: 10px;
    }
    .image-container {
        margin-bottom: 5px;
    }
    .entreprenari-title{
        font-size: 20px;
    }
}
.register-btn {
    background-color: #4096d9;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.register-btn:hover {
    background-color: #0056b3; /* Darker Blue */
    transform: scale(1.05);
}

.register-btn:active {
    transform: scale(0.98);
}
