@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');
        
:root {
    --primary-light: #f0f8ff;
    --primary-dark: #121212;
    --accent-purple: #9d4edd;
    --accent-blue: #3a86ff;
    --accent-pink: #ff0080;
    --neon-cyan: #00fff5;
    --neon-blue: #00b4d8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', 'Segoe UI', sans-serif;
}

body {
    background: linear-gradient(to bottom, var(--primary-light) 0%, #e6e9fd 20%, #c8c7f9 40%, #8685bc 60%, #322f5c 80%, var(--primary-dark) 100%);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo i {
    margin-right: 0.5rem;
    color: var(--neon-cyan);
}

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, var(--accent-blue), var(--accent-pink));
    transition: width 0.3s ease;
}

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

/* Header Section */
.header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 4rem;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.cosmic-symbol {
    font-size: 4rem;
    margin-bottom: 2rem;
    position: relative;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(158, 87, 255, 0.3);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(158, 87, 255, 0.5), 0 0 40px rgba(0, 191, 255, 0.3);
        transform: scale(1.05);
    }
}

.dna-helix {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.15;
}

.title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #110f30 0%, #352e9d 50%, #110f30 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(80, 60, 220, 0.4);
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin-bottom: 3rem;
    line-height: 1.6;
    color: #212121;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.english-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(140, 100, 255, 0.8);
    position: relative;
    display: inline-block;
}

.english-title::before,
.english-title::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 50px;
    background: var(--neon-cyan);
    top: 50%;
}

.english-title::before {
    left: -70px;
}

.english-title::after {
    right: -70px;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(45deg, #7928CA, #FF0080);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(121, 40, 202, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(121, 40, 202, 0.7);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: #fff;
}

.scroll-down span {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.scroll-down i {
    font-size: 1.2rem;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Main Section */
.main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
}

/* Космическая анимация частиц */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-1000px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Секция Концепция */
.concept-section {
    padding: 8rem 0;
    position: relative;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(to right, var(--neon-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--neon-cyan), var(--accent-purple));
}

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

.concept-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--accent-blue), var(--accent-pink));
}

.concept-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.concept-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
    text-align: center;
}

.concept-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.concept-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Сакральная геометрия и анимированная графика */
.sacred-geometry {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 80%;
    max-width: 1200px;
    height: 100%;
    opacity: 0.07;
    pointer-events: none;
    z-index: -1;
    animation: rotateSlowly 120s infinite linear;
}

@keyframes rotateSlowly {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}



    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
      padding: 4rem 2rem;
    }

    .card {
      background-color: #111;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 0 10px #0ff3;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: scale(1.03);
    }

    .card h3 {
      margin-top: 0;
      color: #00ffff;
    }

    .card p {
      color: #ccc;
      font-size: 0.95rem;
    }

    .card-button {
      display: inline-block;
      margin-top: 1rem;
      padding: 0.6rem 1.2rem;
      background: linear-gradient(to right, #00ffff, #ff00ff);
      color: #000;
      text-decoration: none;
      font-weight: bold;
      border-radius: 5px;
    }




/* Секция "Путь" */
.journey-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.journey-timeline {
    position: relative;
    max-width: 1200px;
    margin: 6rem auto 0;
    padding: 0 2rem;
}

.timeline-line {
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, var(--accent-blue), var(--accent-purple), var(--accent-pink));
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 100%;
    display: flex;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-end;
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.timeline-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-pink));
    border-radius: 50%;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 20px var(--accent-purple);
}

.timeline-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1rem;
}

.timeline-date {
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Секция "Технологии" */
.technology-section {
    padding: 8rem 0;
    position: relative;
    width: 100%;
}

.tech-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.tech-item {
    flex: 0 0 300px;
    text-align: center;
    position: relative;
}

.tech-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tech-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.tech-icon {
    font-size: 3rem;
    color: var(--neon-cyan);
}

.tech-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tech-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Секция "Галактика разума" */
.mind-galaxy-section {
    padding: 8rem 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.galaxy-container {
    position: relative;
    height: 600px;
    width: 100%;
    margin-top: 4rem;
}

.galaxy-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(30, 15, 60, 0.6) 0%, rgba(10, 5, 20, 0.9) 100%);
    border-radius: 20px;
    overflow: hidden;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    animation: twinkle 5s infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
}

.galaxy-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 2rem;
}

.galaxy-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(158, 87, 255, 0.7);
}

.galaxy-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-bottom: 3rem;
}

.galaxy-button {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-blue));
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(61, 51, 132, 0.5);
}

.galaxy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(61, 51, 132, 0.7);
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
}

/* Секция "Присоединяйся" */
.join-section {
    padding: 10rem 0;
    position: relative;
    width: 100%;
    text-align: center;
}

.join-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.join-card::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at center, rgba(158, 87, 255, 0.1) 0%, transparent 70%);
    animation: pulseLight 8s infinite alternate;
}

@keyframes pulseLight {
    0% {
        opacity: 0.3;
        transform: translate(0, 0);
    }
    100% {
        opacity: 0.6;
        transform: translate(5%, 5%);
    }
}

.join-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(to right, var(--neon-cyan), #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.join-subtitle {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.join-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.form-input {
    padding: 1.2rem;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 245, 0.3);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-submit {
    padding: 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(45deg, var(--accent-purple), var(--accent-pink));
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(158, 87, 255, 0.5);
}

/* Анимированный звездопад */
@keyframes shooting-star {
    0% {
        transform: translateX(0) translateY(0) rotate(315deg);
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: translateX(-1000px) translateY(1000px) rotate(315deg);
        opacity: 0;
    }
}

.shooting-star {
    position: absolute;
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1));
    top: 0;
    right: 0;
    animation: shooting-star 8s linear infinite;
    transform: rotate(315deg);
    z-index: -1;
}

.shooting-star::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    right: 0;
    top: -4px;
    box-shadow: 0 0 10px white;
}

/* Секция цитат и принципов */
.principles-section {
    padding: 8rem 0;
    position: relative;
    width: 100%;
}

.principles-container {
    max-width: 900px;
    margin: 4rem auto 0;
}

.principle-card {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.principle-symbol {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    font-size: 8rem;
    opacity: 0.05;
    color: white;
}

.principle-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.principle-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.principle-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

/* Футер */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-logo i {
    margin-right: 0.5rem;
    color: var(--neon-cyan);
}

.footer-description {
    max-width: 300px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--neon-cyan);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--neon-cyan);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-purple);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 4rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .title {
        font-size: 3rem;
    }
    
    .english-title {
        font-size: 2rem;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        justify-content: flex-start;
        padding-left: 80px;
    }
    
    .timeline-item:nth-child(odd) {
        justify-content: flex-start;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-dot {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .english-title {
        font-size: 1.8rem;
    }
    
    .english-title::before,
    .english-title::after {
        width: 30px;
    }
    
    .english-title::before {
        left: -40px;
    }
    
    .english-title::after {
        right: -40px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .concept-grid,
    .tech-container {
        gap: 2rem;
    }
    
    .join-card {
        padding: 2rem;
    }
    
    .join-title {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
}