/* pricing.css */

/* Hero Section (No change) */
.pricing-hero {
    background-color: #e9ecef;
    padding: 10px 10px;
    text-align: center;
    margin-bottom: px;
}

.pricing-hero .container h1 {
    font-family: 'Arial', sans-serif;
    font-size: 2.2em;
    color: #003399;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.pricing-hero .container h2 {
    font-family: 'Arial', sans-serif;
    font-size: 1.5em;
    color: #333;
    font-weight: normal;
    margin-bottom: 0;
    line-height: 1.4;
}

/* BUSY Software Editions Section (No major change here) */
.busy-editions {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.busy-editions .container h1 {
    font-family: 'Arial', sans-serif;
    font-size: 2em;
    color: #003399;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.busy-editions .section-description {
    font-family: 'Arial', sans-serif;
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

/* License Type Headings (No change) */
.license-type-heading {
    font-family: 'Arial', sans-serif;
    font-size: 2em;
    color: #d9534f;
    font-weight: bold;
    text-align: center;
    margin: 60px auto 30px auto;
    max-width: 900px; /* Adjust this max-width if needed to align with grid */
    padding-bottom: 10px;
    border-bottom: 2px solid #ccc;
}

.license-type-description {
    font-family: 'Arial', sans-serif;
    font-size: 1.05em; /* Slightly smaller than heading, readable */
    color: black; /* A softer color for description */
    text-align: center;
    max-width: 800px; /* Aligns with section-description above */
    margin: 0px auto 40px auto; /* 0px top, auto horizontal, 40px bottom spacing */
    line-height: 1.6;
}

.edition-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.edition-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 60px 30px 30px 30px; /* MODIFIED: Reduced top padding */
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
	position: relative;
}

.edition-icon {
    position: absolute;
    top: 10px; /* Adjust this value to control how far above the card the icon sits */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10; /* Ensure the icon is on top of other elements */
    width: 60px; /* Adjust size as needed */
    height: 60px; /* Adjust size as needed */
    background-color: #fff; /* Optional: add a background color */
    padding: 5px; /* Optional: add some padding */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: add a shadow */
    display: flex; /* To center the icon if it's an image or Font Awesome icon */
    justify-content: center;
    align-items: center;
}

.edition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.edition-card h3 { /* Styles Basic, Standard, Enterprise, etc. */
    font-family: 'Arial', sans-serif;
    font-size: 1.5em;
    color: #003399;
    font-weight: bold;
    margin-bottom: 20px; /* MODIFIED: Reduced even further */
    white-space: normal;
    min-height: 40px; /* Keep this to ensure consistent card heights if titles vary */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- NEW: Styles for the 3-column price layout within each card --- */
.price-columns {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns: one for label, one for value */
    gap: 5px 10px; /* Vertical and horizontal gap */
    padding-top: 0px;
    border-top: 1px dashed #eee; /* Subtle separator line */
    text-align: right; /* Default align to right for values */
}

.price-columns p {
    margin: 0; /* Remove default paragraph margins */
    padding: 0;
}

.price-columns .price-label {
    font-family: 'Arial', sans-serif;
    font-size: 1em;
    color: #555;
    font-weight: normal;
    text-align: left; /* Align labels to the left within their column */
}

.price-columns .price-value {
    font-family: 'Arial', sans-serif;
    font-size: 1.1em;
    color: #333;
    font-weight: bold;
    text-align: right; /* Align values to the right within their column */
}

/* Adjustments for the disclaimer block (no change) */
.disclaimer-block {
    background-color: #fffde7;
    border: 1px solid #ffecb3;
    border-radius: 8px;
    padding: 20px 30px;
    margin: 60px auto 0 auto;
    max-width: 800px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center; /* Centers text inside */
}

.disclaimer-block .disclaimer-text {
    font-size: 1em;
    color: #000000;
    line-height: 1.4;
    font-style: italic;
    margin: 0;
    white-space: normal;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-subpage {
        padding: 50px 15px;
    }
    .hero-subpage .container h1 {
        font-size: 2.2em;
    }
    .hero-subpage .container h2 {
        font-size: 1.3em;
    }

    .license-type-heading {
        font-size: 1.6em;
        margin: 40px auto 8px auto;
        max-width: 90%;
    }

	.license-type-description {
        font-size: 0.95em;
        margin: 0px auto 30px auto; /* Adjusted for mobile */
        padding: 0 15px; /* Add slight horizontal padding if needed for small screens */
    }

    .edition-cards-grid {
        grid-template-columns: 1fr; /* Stack cards on very small screens */
        padding: 0 15px;
    }

    .edition-card {
        padding: 15px 25px 25px 25px; /* MODIFIED: Reduced top padding for mobile */
    }

    .edition-card h3 {
        font-size: 1.3em;
        margin-bottom: 2px; /* MODIFIED: Reduced for mobile */
    }

    /* Adjust prices for smaller screens - they will still be in 2 columns */
    .price-columns {
        grid-template-columns: 1fr 1fr; /* Maintain 2 columns for prices on small screens */
        gap: 5px 8px;
        padding-top: 0px;
    }
    .price-columns p {
        margin: 0;
        padding: 0;
    }
    .price-columns .price-label {
        font-size: 0.95em;
    }
    .price-columns .price-value {
        font-size: 1em;
    }
    .disclaimer-block {
        margin: 40px 15px 0 15px;
        padding: 15px 20px;
    }
}

/* Value Proposition Section */
.value-proposition {
    padding: 60px 0;
    text-align: center;
    background-color: #f0f2f5; /* Use a slightly different background */
    margin-top: 50px;
}

.value-proposition h2 {
    font-family: 'Arial', sans-serif;
    font-size: 2em;
    color: #003399;
    font-weight: bold;
    margin-bottom: 40px;
}

.value-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.value-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
}

.value-item h3 {
    font-family: 'Arial', sans-serif;
    font-size: 1.3em;
    color: #d9534f; /* Red for these feature titles */
    margin-bottom: 10px;
}

.value-item p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
}
