/* MEED Website Styles */

:root {
    --primary-color: #153d5d;
    --secondary-color: #2d8094;
    --accent-color: #153d5d;
    --background-color: #f4f2f0;
    --white: #FFFFFF;
    --light-gray: #F5F6FA;
    --text-primary: #153d5d;
    --text-secondary: #2d8094;
    --border-color: #e0ddd9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand img {
    height: 30px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-mobile {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: var(--background-color);
    padding: 0;
    text-align: center;
    position: relative;
}

.hero-banner-container {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-info {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-info {
    margin-top: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hero .btn-secondary {
    background: rgba(255,255,255,0.2);
    border-color: var(--white);
    color: var(--white);
}

.hero .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Sections */
section {
    padding: 4rem 0;
}

/* Main Content */
.main-content {
    background: var(--background-color);
    padding-top: 2rem;
}

.forum-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
}

.intro-section {
    max-width: 800px;
    margin: 3rem auto;
    text-align: center;
}

.intro-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.save-date-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 3rem auto;
    max-width: 600px;
}

.save-date-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.time-location {
    font-size: 1.125rem;
    opacity: 0.9;
}

.description-section {
    max-width: 800px;
    margin: 3rem auto;
}

.description-section h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.what-to-expect {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.what-to-expect h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.what-to-expect ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.what-to-expect li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.what-to-expect li:before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Why Matters Callout */
.why-matters-callout {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.why-matters-callout::before {
    content: "!";
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 120px;
    opacity: 0.1;
    font-weight: 700;
}

.why-matters-callout h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.why-matters-callout p {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.why-matters-callout strong {
    color: var(--white);
    font-weight: 700;
    background: rgba(255,255,255,0.1);
    padding: 2px 6px;
    border-radius: 3px;
}

/* York Section */
.york-section {
    margin: 3rem 0;
}

.york-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.york-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.york-text h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Community Section */
.community-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    margin-top: 4rem;
}

.community-section .overlay {
    background: rgba(21, 61, 93, 0.9);
    padding: 4rem 0;
}

.community-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
}

.community-section .large-text {
    color: var(--white);
    font-size: 1.25rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stats .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.stats .stat-label {
    display: block;
    font-size: 1rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Where Section */
.where-section {
    background: var(--white);
}

.where-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.venue-info {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.venue-info a:not(.btn-secondary) {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.venue-info a:not(.btn-secondary):hover {
    text-decoration: underline;
}

.venue-meta {
    margin: 1rem 0;
    color: var(--text-secondary);
}

.date-large {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1rem 0 2rem;
}

.when-register {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.when-register .btn-primary {
    margin: 0 auto;
}

/* Countdown */
.countdown {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-top: 0.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Tabs */
.tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 10px;
}

.tab-button {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s;
    white-space: nowrap;
}

.tab-button.active {
    background: var(--primary-color);
    color: var(--white);
}

.tab-button:hover:not(.active) {
    background: rgba(21,61,93,0.1);
}

.tab-panel {
    display: none;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Speakers Grid */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.speaker-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.speaker-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.speaker-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.video-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Papers List */
.papers-list {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.paper-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.paper-item:last-child {
    border-bottom: none;
}

.paper-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.paper-authors {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.paper-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.paper-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.paper-links a:hover {
    text-decoration: underline;
}

/* Past Conferences Grid */
.past-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.past-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.past-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.past-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* About Section */
.about-section {
    background: var(--white);
    text-align: center;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background: var(--background-color);
}

.team-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    justify-items: center;
}

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    width: 100%;
    max-width: 350px;
}

.member-photo {
    margin-bottom: 1.5rem;
}

.member-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.profile-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.profile-link:hover {
    text-decoration: underline;
}

/* Local Organiser Section */
.local-organiser-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.local-organiser-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.organiser-card {
    display: flex;
    justify-content: center;
}

.team-member.local-organiser {
    background: #f9f7f5;
    border: 1px solid var(--border-color);
}

/* Founders Grid - 3 columns */
.founders-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .founders-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    text-align: left;
    line-height: 1.6;
}

/* About MEED */
.about-meed {
    padding: 4rem 0;
    background: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Events Timeline */
.events-section {
    padding: 4rem 0;
    background: var(--background-color);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.event-card {
    display: flex;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    overflow: hidden;
}

.event-card.upcoming {
    border: 2px solid var(--secondary-color);
}

.event-year {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    min-width: 150px;
}

.event-card.upcoming .event-year {
    background: var(--secondary-color);
}

.event-content {
    padding: 2rem;
    flex: 1;
}

.event-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.event-date, .event-venue {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.event-theme {
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.event-stats span {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Submission Page */
.submission-section {
    padding: 4rem 0;
}

.important-dates {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.date-item {
    text-align: center;
    padding: 1rem;
    border-radius: 5px;
    background: var(--background-color);
}

.date-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.date-value {
    display: block;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
}

.guidelines, .submission-process {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
}

.guidelines h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.guidelines ul {
    list-style: disc;
    padding-left: 2rem;
}

.guidelines li {
    margin-bottom: 0.75rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info {
    text-align: center;
    background: var(--background-color);
    padding: 3rem;
    border-radius: 10px;
}

/* Form Styles */
.submission-form-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
}

.abstract-form {
    max-width: 700px;
    margin: 2rem auto 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input[type="checkbox"] {
    margin-right: 0.5rem;
}

.form-group textarea {
    resize: vertical;
}

.word-count {
    display: block;
    text-align: right;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-note {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 1rem;
    text-align: center;
}

.abstract-form .btn-primary {
    display: block;
    margin: 2rem auto 0;
    padding: 1rem 3rem;
}

/* Newcastle Showcase */
.newcastle-showcase {
    margin: 3rem 0;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.newcastle-showcase h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.showcase-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.showcase-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.showcase-text {
    padding: 1rem;
}

/* Video Embed */
.video-embed {
    margin: 2rem 0;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Event Highlights */
.event-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.event-highlights li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.event-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.event-details h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    background: var(--background-color);
    padding: 4rem 0;
    text-align: center;
}

.contact-section h2 {
    text-align: center;
}

.contact-methods {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.contact-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Navigation Active State */
.nav-links a.active {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
}

.footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .where-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .forum-title {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 1.25rem;
    }
    
    .york-content {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dates-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-year {
        min-width: auto;
        padding: 1rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
    }
    
    .why-matters-callout {
        padding: 2rem;
    }
    
    .why-matters-callout h2 {
        font-size: 1.5rem;
    }
    
    .why-matters-callout p {
        font-size: 1rem;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .hero-info {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        background: rgba(255, 255, 255, 0.95);
        padding: 1rem;
        margin-top: -4px;
    }
    
    .tabs {
        flex-wrap: nowrap;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-button {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
}