/* =========================================================
   REGIS INNOVATION CENTER - MENTOR PAGE CSS
   Beautiful, Animated, and Responsive Design
   Inspired by About Page
   ========================================================= */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #1b1b1b;
    background: #fafafa;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Main Container */
.mentor-main {
    background: #fafafa;
    color: #1b1b1b;
    min-height: 100vh;
    overflow-x: hidden;
}

/* =========================================================
   HERO SECTION - ANIMATED INTRODUCTION
   ========================================================= */

.about-hero.mentor-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(27, 27, 27, 0.6) 40%, rgba(0, 0, 0, 0.8) 100%),
        radial-gradient(ellipse at center top, rgba(241, 196, 0, 0.1) 0%, transparent 70%),
        url('../about1.jpg') center/cover no-repeat fixed;
    color: white;
    overflow: hidden;
    background-attachment: fixed;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(241, 196, 0, 0.15), rgba(241, 196, 0, 0.08));
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(241, 196, 0, 0.2);
    box-shadow: 
        0 8px 32px rgba(241, 196, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.floating-element:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.floating-element:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.floating-element:nth-child(4) {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 5%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-60px) scale(0.9);
        opacity: 0.2;
    }
    75% {
        transform: translateY(-30px) scale(1.05);
        opacity: 0.4;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 40px;
    margin: 0 auto;
    animation: bannerFadeIn 1.2s ease-out;
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid rgba(241, 196, 0, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes bannerFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F1C400;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    opacity: 0;
    animation: slideUpFade 1.2s ease-out 0.1s forwards;
    text-shadow: 0 3px 15px rgba(241, 196, 0, 0.4);
    text-align: center;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    opacity: 0;
    animation: slideUpFade 1.2s ease-out 0.3s forwards;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #F1C400, #ffffff, #F1C400);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 500px;
    margin: 15px auto 25px;
    opacity: 0;
    animation: slideUpFade 1.2s ease-out 0.6s forwards;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    opacity: 0;
    animation: slideUpFade 1.2s ease-out 0.9s forwards;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 10px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #F1C400;
    margin-bottom: 6px;
    text-shadow: 0 2px 10px rgba(241, 196, 0, 0.3);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* =========================================================
   ABOUT HERO BANNER SECTION
   ========================================================= */

.about-hero-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(241, 196, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 43, 73, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #002B49;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-family: 'Georgia', serif;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.5;
}

/* =========================================================
   GRONOWSKI LAB SECTION - SPLIT LAYOUT
   ========================================================= */

.gronowski-lab-section {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    padding: 60px 0 40px;
}

.lab-container {
    max-width: 1400px;
}

.lab-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
}

.lab-title-block {
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out 0.2s forwards;
}

.lab-title-line {
    display: inline-block;
    background: #F1C400;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 1.6rem;
    padding: 10px 14px;
    line-height: 1;
    border-radius: 4px;
    width: fit-content;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInLeft 0.6s ease-out forwards;
}

.lab-title-line:nth-child(1) { animation-delay: 0.3s; }
.lab-title-line:nth-child(2) { animation-delay: 0.5s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lab-text {
    color: #2d2d2d;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s ease-out 0.9s forwards;
}

.community-text-container {
    background: linear-gradient(135deg, rgba(241, 196, 0, 0.08) 0%, rgba(241, 196, 0, 0.03) 100%);
    border-left: 4px solid #F1C400;
    border-radius: 12px;
    padding: 35px 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.community-text-container:hover {
    box-shadow: 0 12px 32px rgba(241, 196, 0, 0.15);
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(241, 196, 0, 0.12) 0%, rgba(241, 196, 0, 0.05) 100%);
}

.lab-lead {
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: #F1C400;
    text-shadow: 0 1px 3px rgba(241, 196, 0, 0.2);
}

.lab-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 400;
    color: #444;
}

.lab-text p strong {
    font-weight: 700;
    color: #002B49;
}

.lab-left {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out 0.3s forwards;
}

.lab-right {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s ease-out 0.6s forwards;
}

.lab-top-image {
    width: 100%;
}

.lab-top-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    object-fit: cover;
    aspect-ratio: 4 / 3;
    border: 1px solid #F1C400;
    padding: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.lab-top-image:hover img {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(241, 196, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 40px rgba(241, 196, 0, 0.1);
}

/* Student Run Section - Reverse Layout */
.student-run-section .lab-grid {
    grid-template-columns: 0.9fr 1.1fr;
}

/* =========================================================
   PROGRAMS SECTION - ECOSYSTEM CARDS
   ========================================================= */

.programs-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(241, 196, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 43, 73, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #002B49;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.ecosystem-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(241, 196, 0, 0.1);
}

.ecosystem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(241, 196, 0, 0.2);
    border-color: rgba(241, 196, 0, 0.3);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ecosystem-card:hover .card-image {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ecosystem-card:hover .card-overlay {
    opacity: 1;
}

.card-content {
    padding: 35px;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #002B49;
    margin-bottom: 15px;
    line-height: 1.2;
}

.card-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.learn-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #F1C400 0%, #e6b800 100%);
    color: #002B49;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 196, 0, 0.3);
    margin-bottom: 20px;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 196, 0, 0.4);
    background: linear-gradient(135deg, #e6b800 0%, #d4aa00 100%);
}

.card-feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #555;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #F1C400, #e6b800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* =========================================================
   CTA SECTION
   ========================================================= */

.cta-section {
    background: linear-gradient(135deg, #002B49 0%, #001a2e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(241, 196, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(241, 196, 0, 0.08) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.primary-button {
    background: linear-gradient(135deg, #F1C400 0%, #e6b800 100%);
    color: #002B49;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(241, 196, 0, 0.4);
}

.secondary-button {
    background: transparent;
    color: #F1C400;
    border: 2px solid #F1C400;
}

.secondary-button:hover {
    background: rgba(241, 196, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(241, 196, 0, 0.2);
}

.primary-button i,
.secondary-button i {
    transition: transform 0.3s ease;
}

.primary-button:hover i,
.secondary-button:hover i {
    transform: translateX(5px);
}
.primary-button:hover i,
.secondary-button:hover i {
    transform: translateX(5px);
}

/* =========================================================
   MENTOR FORM SECTION
   ========================================================= */

.mentor-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    padding: 100px 0;
    position: relative;
}

.mentor-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(241, 196, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 43, 73, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
}

.form-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #002B49;
    margin-bottom: 15px;
    line-height: 1.2;
}

.form-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(241, 196, 0, 0.1);
}

.mentor-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #002B49;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F1C400;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(241, 196, 0, 0.1);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(241, 196, 0, 0.05);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #F1C400;
}

.checkbox-label span {
    color: #333;
    font-size: 1rem;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #F1C400 0%, #e6b800 100%);
    color: #002B49;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(241, 196, 0, 0.3);
    margin-top: 20px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(241, 196, 0, 0.4);
    background: linear-gradient(135deg, #e6b800 0%, #d4aa00 100%);
}

.submit-button svg {
    transition: transform 0.3s ease;
}

.submit-button:hover svg {
    transform: translateX(5px);
}

/* =========================================================
   FOOTER STYLES
   ========================================================= */

.footer {
    background: linear-gradient(135deg, #001a2e 0%, #002B49 100%);
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: #F1C400;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #F1C400;
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px 0;
    border-top: 1px solid rgba(241, 196, 0, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */

@media (max-width: 1024px) {
    .lab-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .student-run-section .lab-grid {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .page-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-hero-banner {
        padding: 80px 0 50px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .lab-title-line {
        font-size: 1.2rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 30px 15px;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}
