:root {
    --neon-green: #c6ff01;
    --neon-green-dark: #9ecc00;
    --neon-green-light: #d4ff33;
    --black: #000000;
    --dark-gray: #0a0a0a;
    --gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --white: #ffffff;
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Rajdhani', sans-serif;
}

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

html {
    scroll-behavior: auto;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/vehicle.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
    pointer-events: none;
}

.grid-background {
    display: none;
}

.particles {
    display: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(198, 255, 1, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--neon-green));
}

.logo-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    color: var(--neon-green);
    letter-spacing: 2px;
    text-shadow: 0 0 3px var(--neon-green);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    transition: width 0.3s ease;
    box-shadow: 0 0 3px var(--neon-green);
}

.nav-link:hover {
    color: var(--neon-green);
    text-shadow: 0 0 3px var(--neon-green);
}

.nav-link:hover::after {
    width: 100%;
}

.register-btn {
    background: transparent;
    border: 2px solid var(--neon-green);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    color: var(--neon-green);
    transition: all 0.3s ease;
}

.register-btn:hover {
    background: var(--neon-green);
    color: var(--black);
    box-shadow: 0 0 8px var(--neon-green);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--neon-green);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 2rem 3rem;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.glitch, .glitch-delay, .glitch-delay-2 {
    position: relative;
    color: var(--neon-green);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.hero-date {
    font-size: 1.2rem;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero-venue {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2.5rem;
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-primary {
    background: var(--neon-green);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--neon-green-light);
}

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

.btn-secondary:hover {
    background: var(--neon-green);
    color: var(--black);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    width: 100%;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--neon-green);
}


.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--neon-green);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 10px var(--neon-green);
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 2px;
}

/* Sections */
.section {
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
}

.section-dark {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

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

.section-title {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.title-number {
    color: var(--neon-green);
    font-size: 2rem;
    opacity: 0.5;
    text-shadow: 0 0 3px var(--neon-green);
}

.title-text {
    color: var(--white);
    text-shadow: 0 0 3px rgba(198, 255, 1, 0.3);
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-intro {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.intro-wrapper {
    display: grid;
    grid-template-columns: 4px 1fr;
    gap: 2.5rem;
    position: relative;
}

.intro-accent {
    width: 4px;
    background: linear-gradient(180deg, var(--neon-green) 0%, transparent 100%);
    border-radius: 2px;
    position: relative;
}

.intro-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--neon-green);
}

.intro-text-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.9;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.intro-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-green) 0%, transparent 100%);
    margin: 0.5rem 0;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.rosmaster-image-section {
    margin: 4rem auto;
    max-width: 800px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
}

.rosmaster-image {
    width: 100%;
    max-width: 700px;
    height: 500px;
    object-fit: contain;
    object-position: center center;
    border-radius: 12px;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 30px rgba(198, 255, 1, 0.4);
    display: block;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem;
}

.subsection-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    color: var(--neon-green);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding: 0 2rem 1.5rem;
    letter-spacing: 2px;
    display: inline-block;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.subsection-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(198, 255, 1, 0.3), transparent);
    z-index: 0;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    box-shadow: 0 0 10px var(--neon-green);
}


.pillars-section {
    margin-top: 3rem;
    position: relative;
}

.pillars-section::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(198, 255, 1, 0.3), transparent);
}

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

.feature-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(198, 255, 1, 0.3);
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--neon-green);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 25px rgba(198, 255, 1, 0.4);
    background: rgba(0, 0, 0, 0.75);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(198, 255, 1, 0.5));
}

.feature-card h3 {
    font-family: var(--font-primary);
    color: var(--neon-green);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-size: 1rem;
}

/* How We Learn Section */
.how-we-learn-section {
    margin-top: 4rem;
    padding-top: 4rem;
    position: relative;
}

.how-we-learn-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    box-shadow: 0 0 15px var(--neon-green);
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.learning-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(198, 255, 1, 0.3);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    backdrop-filter: blur(5px);
}

.learning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.learning-card:hover::before {
    transform: scaleX(1);
}

.learning-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(198, 255, 1, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.learning-card:hover::after {
    opacity: 1;
}

.learning-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 25px rgba(198, 255, 1, 0.4);
    background: rgba(0, 0, 0, 0.75);
    transform: translateY(-5px);
}

.learning-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.learning-card h4 {
    font-family: var(--font-primary);
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.learning-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-size: 1rem;
}

/* Curriculum */
.curriculum-content {
    max-width: 1000px;
    margin: 0 auto;
}

.week-item {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(198, 255, 1, 0.3);
    border-left: 4px solid var(--neon-green);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.week-item:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(198, 255, 1, 0.3);
    transform: translateX(5px);
}

.week-title {
    font-family: var(--font-primary);
    color: var(--neon-green);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.week-topics {
    list-style: none;
    padding: 0;
    margin: 0;
}

.week-topics li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.week-topics li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

.week-topics li strong {
    color: var(--neon-green);
    font-weight: 600;
}

.week-topics li code {
    background: rgba(198, 255, 1, 0.1);
    color: var(--neon-green);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
}

.extra-support {
    background: rgba(198, 255, 1, 0.08);
    border: 2px solid var(--neon-green);
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 3rem;
    box-shadow: 0 0 25px rgba(198, 255, 1, 0.2);
}

.extra-support-title {
    font-family: var(--font-primary);
    color: var(--neon-green);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Robots Section */
.robots-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.robots-lead-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.robots-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.robot-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(198, 255, 1, 0.3);
    border-left: 4px solid var(--neon-green);
    border-radius: 12px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

@media (max-width: 968px) {
    .robot-card {
        grid-template-columns: 1fr;
    }
    
    .robot-image-container {
        min-height: 250px;
        max-height: 400px;
    }
}

.robot-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 25px rgba(198, 255, 1, 0.3);
    transform: translateX(5px);
}

.robot-image-container {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border: 1px solid rgba(198, 255, 1, 0.2);
}

.robot-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.robot-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.robot-title {
    font-family: var(--font-primary);
    color: var(--neon-green);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.robot-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-weight: 400;
}

.robot-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.robot-features li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.robot-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

.robot-features li strong {
    color: var(--neon-green);
    font-weight: 600;
}

.remote-lab-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(198, 255, 1, 0.3);
    text-align: center;
}

.remote-lab-title {
    font-family: var(--font-primary);
    color: var(--neon-green);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.remote-lab-intro {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

.remote-lab-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.remote-feature {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(198, 255, 1, 0.2);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.remote-feature:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(198, 255, 1, 0.3);
    transform: translateY(-5px);
}

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

.remote-feature h4 {
    font-family: var(--font-primary);
    color: var(--neon-green);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.remote-feature p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
}

.remote-lab-conclusion {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
    font-style: italic;
}

/* Schedule */
.schedule-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.schedule-card {
    background: rgba(198, 255, 1, 0.05);
    border: 1px solid rgba(198, 255, 1, 0.2);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.schedule-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(198, 255, 1, 0.3);
}

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

.schedule-card h3 {
    font-family: var(--font-primary);
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.schedule-date {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
}

/* Register Form */
.register-container {
    max-width: 600px;
    margin: 0 auto;
}

.register-form-wrapper {
    background: rgba(198, 255, 1, 0.05);
    border: 1px solid rgba(198, 255, 1, 0.2);
    padding: 3rem;
    border-radius: 10px;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--neon-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(198, 255, 1, 0.3);
    padding: 1rem;
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 8px rgba(198, 255, 1, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(198, 255, 1, 0.2);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo-small {
    height: 30px;
    width: auto;
    filter: drop-shadow(0 0 3px var(--neon-green));
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(198, 255, 1, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .register-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
