/* Basic Styles */
/* Ensure the row uses flexbox properly */
.licenses {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap */
    justify-content: center; /* Center the items horizontally */
	font-family: Arial, sans-serif;
    align-items: center; /* Center the content vertically */
    flex-direction: row; /* Stack elements */
}

/* Individual License Item adjustments */
.license-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 380px; /* Limit max width */
    margin-bottom: 20px;
    text-align: center;
	border: 2px solid #f1f1f1;
}

.license-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	border: 2px solid green;
}

.premium-plan {
    border: 2px solid #2980b9;
}

.recommended-badge {
    background-color: #3498db;
    color: #fff;
    padding: 8px 15px;
    font-weight: bold;
    position: absolute;
    top: 0px;
    right: 0px;
}

.title h2 {
    font-size: 1.8em;
    font-weight: bold;
    color: #333;
}

.title span {
    font-size: 1.1em;
    color: #777;
}

.pricing {
    font-size: 2em;
    font-weight: bold;
    color: #2980b9;
    margin: 20px 0;
}

.features ul {
    list-style-type: none; /* Removes the bullet points */
    padding-left: 0; /* Removes the default left padding */
    text-align: left;
}

.features li {
    font-size: 0.9em;
    margin: 10px 0;
}

.icon {
    margin-right: 10px; /* Optional: Adds space between icon and text */
}

.features li .icon-check {
    width: 20px;
    height: 20px;
    fill: #2ecc71;
	color: green; /* Green for the check icon */
    margin-right: 10px;
}

.features li .icon-close {
    width: 20px;
    height: 20px;
    fill: #e74c3c;
	color: red; /* Green for the check icon */
    margin-right: 10px;
}
.icon-close + .feature-title {
    text-decoration: line-through; /* Adds a horizontal line through the text */
}

button, .download-template-subscribe {
    background-color: #2980b9;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

button:hover, .download-template-subscribe:hover {
    background-color: #3498db;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .licenses {
        justify-content: center;
    }

    .license-item {
        max-width: 100%;
    }

    .pricing {
        font-size: 1.5em;
    }
}


