/* static/subscriptions/css/services.css */
.services-page-container {
    padding-top: 40px;
    padding-bottom: 60px;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h1 {
    font-size: 3em; /* Normalize to global h1 size (48px) */
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-header p {
    font-size: 1.2em;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    flex-direction: column; /* Ensure content stacks vertically */
}

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

.service-card h2 {
    margin-top: 0;
    margin-bottom: 15px; /* Added margin */
    color: #34495e; /* Slightly softer black */
    font-size: 1.9em; /* Adjusted size */
    font-weight: 600;
}

.service-card .price-section {
    margin-bottom: 20px;
    min-height: 50px; /* Ensure consistent height for this section */
}

.service-card .price {
    font-size: 1.6em;
    font-weight: 700;
    color: #1DB954; /* Green accent for price */
}

.service-card .variable-price-text {
    font-size: 1.1em; /* Slightly smaller for text */
    font-weight: 500;
    color: #555; /* Dark grey for text */
    line-height: 1.4;
}

.service-card .description {
    font-size: 1em;
    line-height: 1.7;
    color: #4A4A4A;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow description to take available space */
}

.service-card .features-title {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.service-card .features {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 25px;
    font-size: 0.95em;
    color: #555;
}

.service-card .features li {
    margin-bottom: 8px;
}

.service-card .btn-details, /* Assuming you might add a details/signup button */
.service-card .btn-signup {
    margin-top: auto; /* Push button to the bottom if card heights vary */
    padding: 12px 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
} 