/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 26 2026 | 04:22:49 */
/* --- Tuition Section Styles --- */
.seek-tuition-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    font-family: inherit; /* Inherits your theme's font */
    text-align: center;
}

.seek-tuition-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.seek-tuition-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.seek-tuition-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.seek-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    flex: 1 1 300px; /* Responsive flex */
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.seek-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Highlight the middle card slightly */
.seek-card-highlight {
    border-top: 4px solid #1e73be; /* Change this hex code to match your brand color */
}

.seek-card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.seek-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.seek-card-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.seek-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e73be; /* Change this hex code to match your brand color */
    margin-bottom: 20px;
}

.seek-feature {
    font-size: 0.95rem;
    color: #444;
    margin: 8px 0;
    text-align: left;
    padding-left: 10px;
}

.seek-tuition-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.seek-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.seek-btn-primary {
    background-color: #1e73be; /* Change this hex code to match your brand color */
    color: #ffffff !important;
    border: 2px solid #1e73be;
}

.seek-btn-primary:hover {
    background-color: #155a96;
    border-color: #155a96;
}

.seek-btn-secondary {
    background-color: transparent;
    color: #1e73be !important;
    border: 2px solid #1e73be;
}

.seek-btn-secondary:hover {
    background-color: #1e73be;
    color: #ffffff !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .seek-tuition-header h2 {
        font-size: 1.8rem;
    }
    .seek-tuition-cards {
        flex-direction: column;
        align-items: center;
    }
    .seek-card {
        max-width: 100%;
        width: 100%;
    }
    .seek-tuition-cta {
        flex-direction: column;
        align-items: center;
    }
    .seek-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

