/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide scrollbars but keep functionality */
html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

body {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Hide scrollbars for all elements */
*::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-center {
    text-align: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
}

.logo-image {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.logo-image-small {
    height: 32px;
    width: auto;
    border-radius: 6px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #A51C30;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('harvard-campus.jpg') center center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 32, 44, 0.7);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(165, 28, 48, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(165, 28, 48, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #f8f9fa;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #A51C30 0%, #C41E3A 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(165, 28, 48, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(165, 28, 48, 0.4);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.about-profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #A51C30;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f7f7f7 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #A51C30;
}

.image-placeholder i {
    font-size: 4rem;
    color: #A51C30;
}

.about-description {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Page Hero Section */
.page-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('princeton-campus.jpg') center center/cover no-repeat;
    overflow: hidden;
}

/* Different campus images for different pages */
.contact-page {
    background: url('yale-campus.jpg') center center/cover no-repeat;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 32, 44, 0.7);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: #f8f9fa;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Packages Section */
.packages {
    padding: 6rem 0;
    background: #ffffff;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border-color: #A51C30;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #A51C30;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #A51C30;
    margin-bottom: 0.5rem;
}

.package-duration {
    color: #718096;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.package-features i {
    color: #A51C30;
    font-size: 0.9rem;
}

.package-button {
    width: 100%;
    background: #1a202c;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-button:hover {
    background: #2d3748;
    transform: translateY(-2px);
}

.package-button.featured {
    background: #A51C30;
}

.package-button.featured:hover {
    background: #C41E3A;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #fafafa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #A51C30;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    color: #A51C30;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-content p {
    font-style: italic;
    color: #4a5568;
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-info strong {
    color: #1a202c;
    font-weight: 600;
}

.author-info span {
    color: #718096;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #A51C30;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #C41E3A;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a202c;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #A51C30;
}

.submit-button {
    width: 100%;
    background: #A51C30;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    background: #C41E3A;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 0.25rem;
    text-align: center;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    justify-content: center;
    margin-bottom: 0;
}

.footer-logo-image {
    height: 120px;
    width: auto;
    border-radius: 12px;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.footer-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #a0aec0;
    margin: 0;
}

/* Package Modal */
.package-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-modal.active {
    opacity: 1;
}

.package-modal-content {
    background-color: white;
    margin: 2% auto;
    width: 95%;
    max-width: 1000px;
    max-height: 96vh;
    border-radius: 20px;
    position: relative;
    overflow-y: auto;
    transform: scale(0.8) translateY(-50px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.package-modal.active .package-modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    color: #718096;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #A51C30;
    color: white;
    transform: rotate(90deg);
}

/* Package Details */
.package-details {
    display: none;
    padding: 3rem;
}

.package-details.active {
    display: block;
}

.package-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f1f5f9;
}

.package-hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.package-hero-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.price-tag {
    background: linear-gradient(135deg, #A51C30 0%, #C41E3A 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

.timeline {
    background: #f8f9fa;
    color: #4a5568;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    border: 2px solid #e2e8f0;
}

.package-description {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.package-content {
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.content-section h3 i {
    color: #A51C30;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #A51C30;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #1a202c;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-item p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

.feature-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item li {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.feature-item li:before {
    content: "•";
    color: #A51C30;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.outcome-section {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
}

.outcome-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.outcome-section h3 i {
    color: #A51C30;
}

.outcome-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    text-align: center;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #A51C30 0%, #C41E3A 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(165, 28, 48, 0.3);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(165, 28, 48, 0.4);
    color: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #718096;
    transition: color 0.3s ease;
}

.close:hover {
    color: #A51C30;
}

.modal-content h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .logo-image {
        height: 28px;
    }

    .logo-image-small {
        height: 24px;
    }

    .logo-text {
        font-size: 1.25rem;
    }



    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-hero {
        min-height: 80vh;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    .page-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Package Modal Mobile Styles */
    .package-modal-content {
        margin: 1% auto;
        width: 98%;
        max-height: 98vh;
    }

    .package-details {
        padding: 2rem 1.5rem;
    }

    .package-hero h2 {
        font-size: 2rem;
    }

    .package-hero-info {
        flex-direction: column;
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.25rem;
    }

    .modal-close {
        right: 1rem;
        top: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo-image {
        height: 24px;
    }

    .logo-image-small {
        height: 20px;
    }

    .logo-text {
        font-size: 1.1rem;
    }



    .hero-title {
        font-size: 2rem;
    }

    .page-hero {
        min-height: 60vh;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-subtitle {
        font-size: 1rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .footer-logo-image {
        height: 80px;
    }

    .footer-logo-text {
        font-size: 1.25rem;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }
}

/* Comparison Table Section */
.comparison-section {
    padding: 4rem 0;
    background: #ffffff;
}

.comparison-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: white;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.875rem;
    table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
    padding: 0.75rem 0.5rem;
    text-align: center;
    border-right: 1px solid #f3f4f6;
    vertical-align: middle;
    word-wrap: break-word;
    max-width: 120px;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
    border-right: none;
}

.comparison-table th {
    background: #f9fafb;
    color: #374151;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    border-bottom: 2px solid #e5e7eb;
}

.package-header.featured {
    background: linear-gradient(135deg, #A51C30 0%, #C41E3A 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(165, 28, 48, 0.2);
}

.package-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: inherit;
    line-height: 1.2;
    word-wrap: break-word;
}

.package-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #A51C30;
}

.package-header.featured .package-price {
    color: white;
}

.package-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #A51C30;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-header {
    text-align: left !important;
    background: #f9fafb !important;
    color: #374151 !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    max-width: none !important;
}

.feature-name {
    text-align: left;
    font-weight: 500;
    color: #374151;
    background: #f9fafb;
    font-size: 0.875rem;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    max-width: none !important;
}

.category-row {
    background: #f3f4f6;
}

.category-title {
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    max-width: none !important;
}

.feature-value {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.875rem;
}

.feature-value.featured {
    color: #A51C30;
    font-weight: 600;
}

.feature-value i.fa-check {
    color: #10b981;
    font-size: 0.875rem;
}

.feature-value i.fa-times {
    color: #ef4444;
    font-size: 0.875rem;
}

.comparison-cta {
    text-align: center;
    margin-top: 2rem;
}

.comparison-cta p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Responsive Comparison Table */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        margin: 0 -1rem 2rem -1rem;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .comparison-table {
        font-size: 0.75rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.75rem;
    }
    
    .package-name {
        font-size: 0.875rem;
    }
    
    .package-price {
        font-size: 1rem;
    }
    
    .category-title {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .feature-name {
        font-size: 0.75rem;
    }
    
    .feature-value {
        font-size: 0.75rem;
    }
}