/* Tutoring Landing Page Styles */

/* Import utility classes */
@import url('tutoring-utilities.css');

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Hedvig+Letters+Serif:opsz@12..24&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

/* Font variables */
:root {
    --font-title: 'Hedvig Letters Serif', serif;
    --font-body: 'Figtree', sans-serif;
    
    /* ACTEX Brand Colors */
    --royal-blue: #283C90;
    --navy: #02253B;
    --slate-grey: #242424;
    --aqua: #2C7D88;
    --actu-grey: #7B8BA3;
    --actu-grey-light: rgba(123, 139, 163, 0.1);
    --yellow: #FFCB05;
    --aqua-light: rgba(44, 125, 136, 0.1);
    
    /* Legacy color mappings for backward compatibility */
    --text-primary: var(--slate-grey);
    --text-secondary: var(--actu-grey);
    --text-hover: var(--actu-grey);
    --accent-blue: var(--royal-blue);
    --background-light: var(--aqua-light);
    --white: #FFFFFF;
    --darkblue: var(--navy);
    --lightblue: var(--aqua-light);
    --lightgray: #E5E7EB;
    --darkgray: var(--slate-grey);
}

/* Global container margins for all tutoring sections - now using utility classes */
.tutoring-hero .container,
.tutoring-value-props .container,
.tutoring-pricing .container,
.tutoring-catalog .container,
.tutoring-testimonials .container,
.tutoring-main-cta .container,
.tutoring-tutor-cta .container {
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: max(130px, 15vw) !important;
    padding-right: max(130px, 15vw) !important;
    max-width: 100% !important;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1199px) {
    .tutoring-hero .container,
    .tutoring-value-props .container,
    .tutoring-pricing .container,
    .tutoring-catalog .container,
    .tutoring-testimonials .container,
    .tutoring-main-cta .container,
    .tutoring-tutor-cta .container {
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* Hero Section */
.tutoring-hero {
    background: linear-gradient(135deg, var(--lightblue) 0%, var(--white) 100%);
    position: relative;
    overflow: visible;
    padding: 4rem 0 0 0;
    margin: 0;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 1rem; /* Add some padding to balance with image */
}

.hero-image {
    position: relative;
    overflow: hidden;
    z-index: 0;
    max-width: 100%;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--darkblue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--darkgray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: 1.5rem;
}

.hero-cta a{
    position: relative;
    z-index: 1000;
}

/* Tutoring-specific button styles - now using component classes */

.hero-pricing {
    font-family: var(--font-body);
    color: var(--darkgray);
}

.pricing-text {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.pricing-link {
    color: var(--aqua);
    text-decoration: none;
    font-weight: 500;
}

.pricing-link:hover {
    color: var(--darkblue);
    text-decoration: underline;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    position: relative;
    z-index: 2;
    margin: 0;
    display: block;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    margin: 0;
    padding: 0;
}

/* Value Propositions Section */
.tutoring-value-props {
    background-color: var(--yellow);
    padding: 6rem 0;
    position: relative;
    margin: 0;
    z-index: 1;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--darkblue);
    margin-bottom: 1.5rem;
}

.section-description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--darkgray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.value-props-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0rem;
}

.value-prop-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.value-prop-card:hover {
    transform: none;
    box-shadow: none;
}

.value-prop-icon {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-prop-content {
    flex: 1;
}

.value-prop-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--darkblue);
    margin-bottom: 0.5rem;
}

.value-prop-description {
    font-family: var(--font-body);
    color: var(--darkgray);
    line-height: 1.6;
    margin: 0;
}

/* Legacy nextgen classes removed - use utility classes instead */

.value-props-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
}

/* Pricing Section */
.tutoring-pricing {
    background-color: var(--white);
    padding: 6rem 0;
    position: relative;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 3rem 2rem 3rem;
    box-shadow: 0px 8px 14px 0px rgba(0, 0, 0, 0.05);
    margin-top: 3rem;
}

.pricing-table {
    margin-bottom: 1rem;
    border: none;
}

.pricing-table thead th {
    border: none;
    padding: 0.75rem 0.5rem;
    font-weight: 400;
    font-size: 1.125rem;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--lightgray);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table tbody td {
    border: none;
    padding: 1rem 0.5rem;
    vertical-align: middle;
}

.pricing-column {
    font-family: "Hedvig Letters Serif";
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--accent-blue);
    width: 150px;
}

.pricing-none {
    width: 300px;
}

.pricing-tier {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tier-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.tier-description {
    margin-left: 1.5rem;
}

.tier-icon {
    flex-shrink: 0;
}

.tier-label {
    font-weight: 600;
    color: var(--darkblue);
    font-size: 1.125rem;
}

.tier-description {
    color: var(--darkgray);
    font-size: 0.875rem;
}

.pricing-price {
    font-family: Figtree;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--text-primary);
}

.pricing-cta {
    text-align: center;
}

.pricing-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
}

/* Exam Catalog Section */
.tutoring-catalog {
    background-color: var(--background-light);
    padding: 6rem 0;
    position: relative;
}

/* Exam catalog grid is now handled by Bootstrap responsive classes */

.exam-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exam-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.exam-card-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--darkblue);
    margin-bottom: 1.5rem;
    text-align: center;
}

.exam-card-heading {
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
    color: var(--text-primary);
    text-align: left;
    margin-bottom: 1.5rem;
}

.exam-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.exam-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
}

.exam-group:not(:first-child) {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 0.5rem;
}

.exam-item {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: var(--text-secondary);
    padding: 0;
    border-radius: 6px;
    text-align: left;
    display: block;
    transition: color 0.3s ease;
    text-decoration: none;
}

.exam-item:hover {
    color: var(--text-hover);
}

.exam-item::before {
    content: "•";
    margin-right: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Figtree', sans-serif;
}

.exam-item span {
    font-family: 'Figtree', sans-serif;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
}

.catalog-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
}

/* Testimonials Section */
.tutoring-testimonials {
    background-color: white;
    padding: 6rem 0;
    position: relative;
}

/* Testimonials grid is now handled by Bootstrap responsive classes */

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.testimonial-title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--darkblue);
    margin-bottom: 0.5rem;
}

.testimonial-author {
    font-family: var(--font-body);
    color: var(--darkgray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.star {
    color: var(--yellow);
    font-size: 1.125rem;
    margin-right: 0.25rem;
}

.testimonial-text {
    font-family: var(--font-body);
    color: var(--darkgray);
    line-height: 1.6;
}

/* Testimonial card specific typography */
.testimonial-title {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0%;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.testimonial-author {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0%;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.testimonial-body {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: var(--text-primary);
}

.testimonials-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
}

/* Main CTA Section */
.tutoring-main-cta {
    background-color: var(--background-light);
    padding: 6rem 0;
    position: relative;
}

.cta-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--darkblue);
    margin-bottom: 1.5rem;
}

.cta-description {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--darkgray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    margin-top: 2rem;
}

.main-cta-wave-top {
    position: absolute;
    top: -90px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
}

.main-cta-wave {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
}

/* Tutor CTA Section */
.tutoring-tutor-cta {
    background-color: white;
    padding: 6rem 0 0 0;
    margin-bottom: 0;
    color: var(--darkblue);
}

.tutor-cta-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.tutor-cta-description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.tutor-cta-button .btn {
    font-family: var(--font-body);
    background-color: var(--aqua-light);
    border-color: transparent;
    color: var(--aqua);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 22px;
    letter-spacing: 0%;
    transition: all 0.3s ease;
}

.tutor-cta-button .btn:hover {
    background-color: var(--aqua-light);
    color: var(--aqua);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 125, 136, 0.15);
}

.tutor-cta-button .arrow {
    letter-spacing: -0.3em;
    display: inline-block;
}

.tutor-cta-image {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tutor-cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 0;
}

.tutoring-tutor-cta .container {
    margin-bottom: 0;
    padding-bottom: 0;
}

.tutoring-tutor-cta .row {
    margin-bottom: 0;
}

/* Find Tutor Wizard Styles */
.find-tutor-wizard {
    background-color: var(--background-light);
    padding: 4rem 0;
    min-height: 80vh;
}

.back-link {
    color: var(--aqua);
    text-decoration: none;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: 0%;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--aqua);
    text-decoration: none;
    opacity: 0.8;
}


.wizard-container {
    max-width: 800px;
}

.wizard-header {
    margin-bottom: 3rem;
}

.wizard-card {
    background: white;
    border-radius: 20px;
    padding: 1rem 2rem;
    box-shadow: 0px 8px 14px 0px rgba(0, 0, 0, 0.05);
    position: relative;
}

.wizard-step {
    border-bottom: 1px solid #E5E7EB;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    margin: 0 -3rem;
    padding-left: 3rem;
    padding-right: 3rem;
}

.wizard-step:last-child {
    border-bottom: none;
}

.wizard-step.unlocked {
    opacity: 1;
    pointer-events: auto;
}

.step-header {
    margin-bottom: 1.5rem;
}

.wizard-step .step-content {
    display: block;
}

/* When step content is hidden, center the step header vertically */
.wizard-step.content-hidden .step-header {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    min-height: 60px;
}

.step-title {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0%;
    color: var(--accent-blue);
    margin: 0;
    text-align: left;
}

.step-title.inactive {
    color: var(--slate-grey) !important;
}

.step-content {
    margin-left: 0;
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.option-btn {
    background: white;
    border: 2px solid #E5E7EB;
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.option-btn:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 125, 136, 0.15);
}

.option-btn.selected {
    background-color: white;
    border-color: #FFCB05;
    color: var(--text-primary);
    font-weight: 700;
}

.option-btn.selected:hover {
    background-color: white;
    border-color: #FFCB05;
    color: var(--text-primary);
    font-weight: 700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 203, 5, 0.3);
}

.university-input {
    margin-top: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.university-input .form-control {
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.university-input .form-control:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(40, 60, 144, 0.25);
}

.form-select {
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

.form-select:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(40, 60, 144, 0.25);
}

.wizard-actions {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

/* Legacy button classes - use .btn component classes instead */
/* Legacy nextgen-btn removed - use .btn .btn-primary .btn-lg instead */


/* Tutor Results Page */
.tutor-results-page {
    background-color: var(--background-light);
    padding: 4rem 0;
    min-height: 80vh;
}

.results-header {
    margin-bottom: 2rem;
}

.header-divider {
    width: 100px;
    height: 3px;
    background-color: #011A2B;
    margin-top: 1rem;
}

.selected-criteria {
    margin-top: 2rem;
}

.criteria-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.criteria-tag {
    background-color: #2C7D88;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.criteria-tag.editable {
    background-color: #02253B;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.criteria-tag.editable:hover {
    background-color: #011A2B;
}

.filters-section {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.filter-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.875rem;
    background-color: white;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    border-color: var(--accent-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(40, 60, 144, 0.1);
}

.pricing-overview {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.pricing-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
}

/* Tutor Cards */
.tutor-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--lightgray);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tutor-card:hover {
    transform: translateY(-4px);
}

.tutor-avatar {
    text-align: center;
    margin-bottom: 1.5rem;
}

.tutor-avatar img {
    width: 184px;
    height: 184px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--actu-grey-light);
}

.tutor-name {
    font-family: 'Hedvig Letters Serif', serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.tutor-affiliation {
    font-family: Figtree;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #7B8BA3;
    margin-bottom: 1rem;
}

.tutor-rating {
    background-color: #F3F4F6;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-text {
    font-family: Figtree;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #02253B;
}

.tutor-details {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-icon {
    color: var(--accent-blue);
    font-size: 0.875rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.detail-text {
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #242424;
}

.tutor-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.action-btn {
    padding: 0.75rem 1rem;
    border-radius: 20px;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.action-btn.primary {
    background-color: #02253B;
    color: white;
}

.action-btn.primary:hover {
    background-color: #011A2B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 37, 59, 0.25);
}

.action-btn.secondary {
    background-color: rgba(63, 138, 139, 0.1);
    color: #2C7D88;
}

.action-btn.secondary:hover {
    background-color: rgba(63, 138, 139, 0.1);
    color: #2C7D88;
    border: 2px solid #2C7D88;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 125, 136, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-overview {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .filters-section {
        margin-top: 2rem;
    }
    
    .tutor-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .tutor-card {
        padding: 1.5rem;
    }
    
    .criteria-tags {
        gap: 0.5rem;
    }
    
    .criteria-tag {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

.tutor-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid var(--lightgray);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tutor-card:hover {
    transform: translateY(-4px);
}

.tutor-avatar {
    text-align: center;
    margin-bottom: 1.5rem;
}

.tutor-avatar img {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--actu-grey-light);
}

.tutor-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tutor-title {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.tutor-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.specialty-tag {
    background-color: var(--background-light);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.tutor-rating {
    margin-bottom: 1rem;
}

.stars {
    color: var(--yellow);
    font-size: 1rem;
    margin-right: 0.5rem;
}

.rating-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.tutor-pricing {
    margin-bottom: 1rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-blue);
}

.tutor-availability {
    margin-bottom: 1.5rem;
}

.availability-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.availability-badge.available {
    background-color: #D1FAE5;
    color: #065F46;
}

.availability-badge.busy {
    background-color: #FEF3C7;
    color: #92400E;
}

/* Legacy nextgen-btn-sec removed - use .btn .btn-secondary instead */

/* Legacy nextgen-s3 removed - use .font-body .text-3xl .font-semibold .text-primary instead */
/* Legacy choose-tutor-section removed - use .text-left .mb-lg instead */

/* Legacy choose-tutor-title removed - use .font-body .text-3xl .font-semibold .text-primary instead */

/* Legacy choose-tutor-description removed - use .font-body .text-base .text-secondary instead */

/* Avatar Placeholder */
.avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid #E5E7EB;
}

.avatar-placeholder i {
    font-size: 2rem;
    color: var(--text-secondary);
}

/* Updated Tutor Card Styles to Match Image */
.tutor-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid var(--lightgray);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tutor-card:hover {
    transform: translateY(-4px);
}

.tutor-avatar {
    margin-bottom: 1.5rem;
}

.tutor-name {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.tutor-affiliation {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.tutor-rating {
    background-color: #F3F4F6;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.rating-text {
    font-family: Figtree;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #02253B;
}

.tutor-content {
    flex-shrink: 0;
}

.tutor-details {
    margin-bottom: 2rem;
    text-align: left;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-icon {
    color: var(--accent-blue);
    font-size: 0.875rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
    width: 16px;
}

.detail-text {
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #242424;
}

.tutor-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.action-btn {
    padding: 0.75rem 1rem;
    border-radius: 20px;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.action-btn.primary {
    background-color: #02253B;
    color: white;
}

.action-btn.primary:hover {
    background-color: #011A2B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 37, 59, 0.25);
}

.action-btn.secondary {
    background-color: rgba(63, 138, 139, 0.1);
    color: #2C7D88;
}

.action-btn.secondary:hover {
    background-color: rgba(63, 138, 139, 0.1);
    color: #2C7D88;
    border: 2px solid #2C7D88;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 125, 136, 0.15);
}

/* No Tutors Message */
.no-tutors-message {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.no-tutors-message h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.no-tutors-message p {
    font-family: var(--font-body);
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Responsive Design - Now handled by Bootstrap responsive classes */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .value-prop-card {
        margin-bottom: 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .tutor-cta-title {
        font-size: 2rem;
    }
    
    .exam-group {
        grid-template-columns: 1fr;
    }
    
    .hero-image img {
        max-width: 300px;
    }
    
    .wizard-card {
        padding: 1rem 1.5rem;
    }
    
    .wizard-step {
        margin: 0 -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .option-buttons {
        gap: 0.75rem;
    }
    
    .option-btn {
        min-width: 100px;
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .choose-tutor-title {
        font-size: 1.5rem;
    }
    
    .pricing-overview {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .filters-section {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .pricing-card {
        padding: 2rem 1rem;
    }
    
    .value-prop-card,
    .exam-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .wizard-card {
        padding: 0.75rem 1rem;
    }
    
    .wizard-step {
        padding: 1rem 0;
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .option-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .option-btn {
        min-width: auto;
        width: 100%;
        max-width: 200px;
    }
}

/* Filter styling classes */
.filter-name {
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    color: #7B8BA3; /* ACTEX Slate Grey */
}

.filter-value {
    font-family: Figtree;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    color: #242424; /* ACTEX Slate Grey */
}
.divider-line {
    width: 100%;
    height: 1px;
    background-color: #7B8BA3;
    opacity: 0.2;
    margin-bottom: 1rem;
}

.tutor-highlights {
    margin-bottom: 1rem;
    text-align: left;
}

.tutor-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 0;
    text-align: left;
}

.tutor-highlights-list li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Figtree', sans-serif;
    font-size: 0.875rem;
    color: var(--text-primary);
    text-align: left;
}

.tutor-highlights-list li::before {
    content: "•";
    color: var(--accent-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
    display: inline-block;
    width: 1.5rem;
    text-align: left;
}

.results-header {
    margin-bottom: 1.5rem;
}

.title-underline {
    height: 2px;
    background-color: #283C90;
    width: 100%;
    margin-top: 0rem;
}

/* Criteria and filters row layout - criteria left, filters right */
.criteria-filters-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.criteria-block {
    flex-shrink: 0;
}

.filters-section {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-shrink: 0;
}

/* Custom Dropdown Styling */
.custom-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 0.25rem;
    min-width: 120px;
}

.dropdown-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: none;
    font-family: Figtree;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    color: #242424;
    padding: 0;
}

.dropdown-selected:hover {
    border-color: transparent;
}

.dropdown-selected.active {
    border-color: transparent;
    box-shadow: none;
}

.dropdown-text {
    flex: 1;
    font-family: Figtree;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    color: #242424;
}

.dropdown-arrow {
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
    width: 12px;
    height: 12px;
}

.dropdown-selected.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    margin-top: 0.25rem;
}

.dropdown-options.show {
    display: block;
}

.dropdown-option {
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font-family: Figtree;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    color: #242424;
    transition: background-color 0.3s ease;
}

.dropdown-option:hover {
    background-color: #F9FAFB;
}

.dropdown-option.selected {
    background-color: #2C7D88;
    color: white;
}

/* Icon styling for provided PNG icons */
.edit-icon {
    width: 12px;
    height: 12px;
    margin-left: 4px;
    vertical-align: middle;
}

.filter-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

.rating-icon {
    width: 10px;
    height: 10px;
    margin-right: 4px;
    vertical-align: middle;
    transform: translateY(-2px);
}

.detail-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

.calendar-icon {
    height: 17px;
    width: auto;
    margin-right: 8px;
    vertical-align: middle;
}

/* Exam display styles */
.exam-primary {
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #242424; /* ACTEX slate gray - primary exam */
    margin-right: 0;
    padding-right: 0;
}

.exam-secondary {
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #7B8BA3; /* ACTEX Gray - secondary exams */
    margin-right: 0;
    padding-right: 0;
}

.exam-separator {
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #7B8BA3; /* ACTEX Gray - separators */
    margin-left: 0;
    padding-left: 0;
}

.exam-ellipsis {
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #7B8BA3; /* ACTEX Gray - ellipsis */
}

/* Specific styling for tutor card buttons */
.tutor-actions .action-btn.secondary {
    background-color: rgba(63, 138, 139, 0.1) !important;
    color: #2C7D88 !important;
    border: none !important;
}

.tutor-actions .action-btn.secondary:hover {
    background-color: rgba(63, 138, 139, 0.1) !important;
    color: #2C7D88 !important;
    border: 2px solid #2C7D88 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 125, 136, 0.15);
}

/* Updated filter labels to match image */
.filter-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
    cursor: pointer;
    margin: 0;
}

.filter-group {
    margin: 0;
}

/* Updated criteria tags styling */
.criteria-tag {
    background-color: #E5E7EB;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #D1D5DB;
    display: inline-flex;
    align-items: center;
}

.criteria-tag.editable {
    background-color: #E5E7EB;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.criteria-tag.editable:hover {
    background-color: #D1D5DB;
}

/* Criteria Block - similar to pricing block */
.criteria-block {
    height: 33px;
    border-radius: 20px;
    background-color: transparent;
    border: 1px solid #7B8BA3;
    display: flex;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0;
    box-shadow: none;
}

.criteria-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 8px;
    border-radius: 8px;
    background: transparent;
    border: none;
    flex: 0 1 auto;
    text-align: center;
    height: 21px;
    position: relative;
    min-width: fit-content;
}

.criteria-item.pencil-item {
    flex: 0 0 auto;
    width: auto;
    padding-right: 10px;
}

.criteria-value {
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
    color: #7B8BA3; /* ACTEX Slate Grey */
}

.criteria-edit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.criteria-edit-btn:hover {
    opacity: 0.7;
}

.criteria-edit-icon {
    width: 16px;
    height: 16px;
    margin-left: 12px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Vertical dividers between criteria items - only between the first 3 text items */
.criteria-item:nth-child(1)::after,
.criteria-item:nth-child(2)::after {
    content: '';
    position: absolute;
    right: -0.5px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 21px;
    background-color: #7B8BA3; /* ACTEX Slate Grey */
    opacity: 1;
}
.pricing-overview {
    height: 66px;
    border-radius: 80px;
    background-color: rgba(123, 139, 163, 0.1); /* #7B8BA3 with 10% opacity */
    display: flex;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0;
    box-shadow: none;
    width: 100%;
}

.pricing-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    border-radius: 8px;
    background: transparent;
    border: none;
    flex: 1;
    text-align: center;
    height: 42px;
    position: relative;
}

.pricing-label {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #7B8BA3; /* ActU Grey */
    margin-bottom: 0.25rem;
}

.pricing-price {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #242424;
}

/* Vertical dividers between pricing items */
.pricing-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.5px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 42px;
    background-color: #F6F7FB;
    opacity: 1;
}

.about-tutor-title-small {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #64748b;
    margin: 0;
    margin-bottom: 1rem;
}

/* Updated tutor card elements */
.about-tutor-title {
    font-family: 'Hedvig Letters Serif', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #242424;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.tutor-rating {
    background: #F3F4F6;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.rating-text {
    font-size: 0.875rem;
    color: var(--text-primary);
}

.tutor-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.action-btn {
    padding: 0.75rem 1rem;
    border-radius: 20px;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    border: 1px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.action-btn.secondary {
    background-color: rgba(63, 138, 139, 0.1);
    color: #2C7D88;
}

.action-btn.secondary:hover {
    background-color: rgba(63, 138, 139, 0.1);
    color: #2C7D88;
    border: 2px solid #2C7D88;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 125, 136, 0.15);
}

.action-btn.primary {
    background: #02253B;
    border-color: #02253B;
    color: white;
}

.action-btn.primary:hover {
    background: #011A2B;
    border-color: #011A2B;
}

/* Tutoring Options Page Styles */
.tutoring-options-page {
    padding: 4rem 0 2rem 0;
}

.tutoring-options-page .container {
    max-width: 60%;
    margin: 0 auto;
}

.main-content-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.left-column-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 40%;
}

.right-column-content {
    width: 60%;
    padding-left: 2rem;
}

.tutor-header-section {
    margin-bottom: 2rem;
}

/* Legacy tutor-header-section nextgen classes removed - use utility classes instead */

.tutor-avatar-large {
    width: 375px;
    height: 375px;
    border-radius: 50%;
    background-color: #F6F7FB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
}

.tutor-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.availability-section {
    display: flex;
    justify-content: center;
}

.availability-section .action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.availability-section .action-icon {
    width: 16px;
    height: 16px;
}

.availability-section .action-btn.secondary {
    background-color: #F6F7FB;
    color: #02253B;
    border: none;
    border-radius: 24px;
    padding: 0.75rem 1.5rem;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.availability-section .action-btn.secondary:hover {
    background-color: #E8EAED;
    color: #02253B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 37, 59, 0.15);
}

.tutoring-options-section {
    margin-bottom: 2rem;
}

.options-title {
    font-family: 'Hedvig Letters Serif', serif;
    font-size: 21px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    color: #242424;
    margin-bottom: 1.5rem;
}

.session-bundles {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.bundle-option {
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
    height: 76px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.bundle-option:hover {
    border-color: #2C7D88;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 125, 136, 0.15);
}

.bundle-option.active {
    border-color: #2C7D88;
    background-color: rgba(44, 125, 136, 0.05);
}

.bundle-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}

.bundle-name {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    color: #242424;
}

.bundle-price {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    color: #242424;
}

.booking-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}

.checkmark-icon {
    width: 16px;
    height: 16px;
}

.booking-text {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
    font-style: italic;
    line-height: 100%;
    letter-spacing: 0%;
    color: #283C90;
}

.add-to-cart-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.add-to-cart-btn {
    background-color: #FFCB05;
    color: #242424;
    border: none;
    border-radius: 24px;
    padding: 0 2rem;
    height: 46px;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart-btn:hover {
    background-color: #E6B800;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 203, 5, 0.3);
}

.current-price {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    color: #02253B;
}

.key-info-section {
    background-color: white;
    border-radius: 20px;
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    box-shadow: 0px 8px 14px 0px #0000000D;
    border: 1px solid #F2F3F6;
}

.key-info-title {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    color: #02253B;
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.info-icon {
    width: 20px;
    height: 20px;
}

.info-title {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    color: #7B8BA3;
}

.info-description {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    color: #242424;
    margin: 0;
    margin-left: 28px;
}

.currency-note {
    margin-top: -0.75rem;
    margin-left: 2rem;
    padding-top: 0;
    border-top: none;
    text-align: left;
}

.currency-note small {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
    color: #7B8BA3;
}

.about-tutor-wrapper {
    position: relative;
    margin-top: 2rem;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

.wave-top {
    width: 100%;
    height: auto;
    margin-bottom: -1px; /* Overlap with section */
    background-color: white;
}

.wave-top .wave-image {
    width: 100%;
    height: auto;
    display: block;
    background-color: white;
}

.wave-bottom {
    width: 100%;
    height: auto;
    margin-top: -1px; /* Overlap with section */
}

.wave-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-tutor-section {
    background-color: #F6F7FB;
    border-radius: 0; /* Remove border radius when using waves */
    padding: 2.5rem 0 1.5rem 0;
    margin-top: 0;
    margin-bottom: 0;
    min-height: 35vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-tutor-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 70%;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-tutor-title {
    font-family: 'Hedvig Letters Serif', serif;
    font-size: 40px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    color: #242424;
    margin: 0;
    text-align: left;
}

.about-tutor-columns {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.tutor-info-column {
    flex: 0 0 40%;
    min-width: 200px;
    padding-top: 0;
}

.tutor-biography-column {
    flex: 0 0 60%;
    padding-top: 0;
}

.tutor-name-large {
    font-family: 'Figtree', sans-serif;
    font-size: 28px;
    font-weight: 600;
    font-style: normal;
    line-height: 36px;
    letter-spacing: 0%;
    color: #242424;
    margin: 0 0 0.5rem 0;
}

.tutor-credentials-text {
    font-family: 'Figtree', sans-serif;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    line-height: 30px;
    letter-spacing: 0%;
    color: #242424;
    margin: 0;
}

.tutor-biography {
    margin-top: 0;
}

.tutor-biography p {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0%;
    color: #374151;
    margin: 0;
}

.resources-section {
    text-align: center;
    padding: 2rem 2rem 3rem 2rem;
    background-color: white;
    border-radius: 12px;
}

.resources-title {
    font-family: 'Hedvig Letters Serif', serif;
    font-size: 32px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #242424;
    margin-bottom: 1rem;
}

.resources-description {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: #242424;
    margin: 0;
}

.resources-button-container {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.resources-exam-button {
    background-color: rgba(44, 125, 136, 0.1);
    color: #2C7D88;
    border: none;
    border-radius: 23px;
    padding: 1rem 2rem;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.resources-exam-button:hover {
    background-color: #2C7D88;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 125, 136, 0.3);
}

.tutor-rating-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.rating-value {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    color: #242424;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 16px;
    height: 16px;
    margin-right: 2px;
}

.star.filled {
    opacity: 1;
}

.star.half {
    opacity: 0.5;
}

.star.empty {
    opacity: 0.3;
}

.reviews-count {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    color: #2C7D88;
}

.tutor-name-header {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 500;
    color: #6B7280;
    margin: 0.5rem 0 0 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tutoring-options-page .container {
        max-width: 95%;
    }
    
    .main-content-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .left-column-content {
        width: 100%;
    }
    
    .right-column-content {
        width: 100%;
        padding-left: 0;
    }
    
    .tutor-avatar-large {
        width: 250px;
        height: 250px;
    }
    
    .add-to-cart-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .bundle-info {
        flex-direction: column;
    }
    
    .about-tutor-section {
        min-height: auto;
        padding: 1.5rem 0 1rem 0;
    }
    
    .about-tutor-title {
        margin-bottom: 1.5rem;
        font-size: 40px;
    }
    
    .about-tutor-content {
        max-width: 95%;
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .about-tutor-columns {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tutor-info-column {
        flex: none;
        width: 100%;
    }
    
    .tutor-biography-column {
        flex: none;
        width: 100%;
    }
    
    .about-tutor-wrapper {
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        width: 100vw;
    }
    
    .wave-top,
    .wave-bottom {
        width: 100%;
    }
    
    .resources-exam-button {
        font-size: 16px;
        padding: 0.875rem 1.5rem;
    }
}
