<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Styles */
:root {
    /* Neon Card Theme */
    --bg-color: #0d0d15;
    --accent-color-1: #9d00ff;
    --accent-color-2: #00f5ff;
    --text-color: #ffffff;
    --secondary-text: #cccccc;
    --card-bg: #14141e;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --glow: 0 0 10px;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--glow) rgba(157, 0, 255, 0.5);
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2 .highlight {
    color: var(--accent-color-2);
    position: relative;
}

h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2));
    box-shadow: var(--glow) var(--accent-color-1);
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: var(--secondary-text);
}

a {
    text-decoration: none;
    color: var(--accent-color-2);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color-1);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

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

section {
    padding: 5rem 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color-1), var(--accent-color-2), transparent);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-color-1), var(--accent-color-2));
    color: var(--bg-color);
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.5);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(157, 0, 255, 0.8);
    transform: translateY(-3px);
    color: var(--bg-color);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--accent-color-2);
    color: var(--accent-color-2);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(0, 245, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
    color: var(--accent-color-2);
}

/* Header Styles */
header {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(13, 13, 21, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(157, 0, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 180px;
}

.logo img {
    width: 100%;
    height: auto;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2));
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--accent-color-2);
}

nav ul li a:hover::after {
    width: 100%;
}

.contact-info {
    text-align: right;
    font-size: 0.9rem;
}

.contact-info p {
    margin-bottom: 0.2rem;
    color: var(--accent-color-2);
}

/* Hero Section */
#hero {
    padding: 10rem 0 5rem;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at center, rgba(157, 0, 255, 0.1), transparent 70%);
}

#hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-color), transparent);
    z-index: 1;
}

#hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.5);
    border: 1px solid var(--accent-color-1);
    transform: perspective(800px) rotateY(-10deg);
    transition: var(--transition);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color-2);
    border-radius: 15px;
    z-index: -1;
    animation: pulse 3s infinite alternate;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 40px rgba(0, 245, 255, 0.7);
    }
}

/* About Section */
#about {
    position: relative;
    overflow: hidden;
}

#about::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(157, 0, 255, 0.2), transparent);
    border-radius: 50%;
    z-index: -1;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 3;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-stats {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--accent-color-1);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.2);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.4);
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

/* Features Section */
#features {
    background: linear-gradient(to bottom, var(--bg-color), #0a0a1a);
}

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

.feature {
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--accent-color-1);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.2);
    transition: var(--transition);
    text-align: center;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.4);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid var(--accent-color-2);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--transition);
}

.feature:hover .feature-icon img {
    transform: scale(1.1);
}

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

/* Card Types Section */
#cards {
    position: relative;
    overflow: hidden;
}

#cards::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.1), transparent);
    border-radius: 50%;
    z-index: -1;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 0 25px rgba(157, 0, 255, 0.2);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(157, 0, 255, 0.3);
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 0 35px rgba(157, 0, 255, 0.4);
}

.card.featured {
    transform: scale(1.05);
    border: 1px solid var(--accent-color-2);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
    z-index: 1;
}

.card.featured:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.5);
}

.card-tag {
    position: absolute;
    top: 20px;
    right: 0;
    background: linear-gradient(45deg, var(--accent-color-1), var(--accent-color-2));
    color: var(--bg-color);
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.5);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color-2);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.card-content ul {
    margin-bottom: 2rem;
}

.card-content ul li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(157, 0, 255, 0.3);
    color: var(--secondary-text);
}

.card-content ul li:last-child {
    border-bottom: none;
}

.btn-card {
    width: 100%;
    background: transparent;
    border: 1px solid var(--accent-color-1);
    color: var(--accent-color-2);
    text-align: center;
    padding: 12px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-card:hover {
    background: linear-gradient(45deg, var(--accent-color-1), var(--accent-color-2));
    color: var(--bg-color);
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.5);
}

.featured .btn-card {
    background: linear-gradient(45deg, var(--accent-color-1), var(--accent-color-2));
    color: var(--bg-color);
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.5);
}

.featured .btn-card:hover {
    box-shadow: 0 0 25px rgba(157, 0, 255, 0.8);
}

/* Benefits Map Section */
#benefits {
    background-color: rgba(13, 13, 25, 0.7);
    position: relative;
}

.benefits-map {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.map-container {
    flex: 1;
    min-width: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.3);
    border: 1px solid var(--accent-color-1);
}

.map-container img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.map-container:hover img {
    transform: scale(1.05);
}

.benefits-list {
    flex: 1;
    min-width: 300px;
}

.benefit-category {
    margin-bottom: 2rem;
}

.benefit-category h3 {
    color: var(--accent-color-2);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
    position: relative;
}

.benefit-category h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2));
}

.benefit-category ul li {
    padding: 8px 0;
    color: var(--secondary-text);
    position: relative;
    padding-left: 25px;
}

.benefit-category ul li::before {
    content: 'â€¢';
    position: absolute;
    left: 0;
    color: var(--accent-color-1);
    font-size: 1.5rem;
}

.benefits-note {
    margin-top: 2rem;
    font-style: italic;
    color: var(--accent-color-2);
}

/* Partners Section */
#partners {
    position: relative;
    overflow: hidden;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.partner {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.2);
    transition: var(--transition);
    border: 1px solid rgba(157, 0, 255, 0.3);
}

.partner:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.4);
}

.partner img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.partner:hover img {
    transform: scale(1.05);
}

.partner h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--accent-color-2);
}

.partner p {
    padding: 0 1.5rem 1.5rem;
    color: var(--secondary-text);
}

/* Experience Section */
#experience {
    background: linear-gradient(to bottom, var(--bg-color), #0a0a1a);
    position: relative;
    overflow: hidden;
}

.experience-timeline {
    position: relative;
    padding: 2rem 0;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-color-1), var(--accent-color-2));
    box-shadow: 0 0 10px rgba(157, 0, 255, 0.5);
}

.timeline-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--accent-color-1), var(--accent-color-2));
    color: var(--bg-color);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.5);
    margin-right: 2rem;
}

.step-content {
    flex: 1;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--accent-color-1);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.2);
    transition: var(--transition);
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.4);
}

.step-content h3 {
    color: var(--accent-color-2);
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
#testimonials {
    background-color: rgba(13, 13, 25, 0.7);
    position: relative;
    overflow: hidden;
}

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

.testimonial {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.2);
    transition: var(--transition);
    border: 1px solid rgba(157, 0, 255, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.4);
}

.testimonial-content {
    padding: 2rem;
    flex: 1;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 5rem;
    font-family: serif;
    color: rgba(157, 0, 255, 0.2);
    line-height: 1;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: rgba(13, 13, 21, 0.5);
    border-top: 1px solid rgba(157, 0, 255, 0.3);
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid var(--accent-color-2);
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    color: var(--text-color);
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--accent-color-2);
}

/* Application Form Section */
#application {
    position: relative;
    overflow: hidden;
}

#application::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(157, 0, 255, 0.1), transparent);
    border-radius: 50%;
    z-index: -1;
}

.application-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: stretch;
}

.application-info {
    flex: 1;
    min-width: 300px;
}

.application-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.application-benefits {
    margin-bottom: 2rem;
}

.application-benefits li {
    padding: 8px 0;
    color: var(--secondary-text);
    position: relative;
    padding-left: 25px;
}

.application-benefits li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--accent-color-2);
}

.contact-details {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(157, 0, 255, 0.3);
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details p:first-child {
    margin-bottom: 1rem;
}

.application-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--accent-color-1);
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(157, 0, 255, 0.3);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
    transition: var(--transition);
}

.form-group select option {
    color: #000000;
    background-color: #ffffff;
}

.form-group select option {
    color: #000000;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color-2);
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(45deg, var(--accent-color-1), var(--accent-color-2));
    color: var(--bg-color);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.5);
}

.btn-submit:hover {
    box-shadow: 0 0 25px rgba(157, 0, 255, 0.8);
    transform: translateY(-3px);
}

/* FAQ Section */
#faq {
    background: linear-gradient(to bottom, var(--bg-color), #0a0a1a);
    position: relative;
    overflow: hidden;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(157, 0, 255, 0.3);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.2);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.4);
    border-color: var(--accent-color-2);
}

.faq-item h3 {
    color: var(--accent-color-2);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Footer */
footer {
    background-color: #080811;
    padding-top: 5rem;
    border-top: 1px solid rgba(157, 0, 255, 0.3);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color-1), var(--accent-color-2), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about {
    grid-column: 1 / 3;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1.5rem;
}

.footer-about p {
    max-width: 400px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--accent-color-2);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2));
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--secondary-text);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent-color-2);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(157, 0, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--accent-color-1);
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.3);
    z-index: 1000;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    flex: 3;
    min-width: 200px;
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex: 1;
    justify-content: flex-end;
    min-width: 200px;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content {
        padding-right: 2rem;
    }
    
    #hero {
        padding: 12rem 0 5rem;
    }
}

@media screen and (max-width: 992px) {
    #hero {
        padding: 15rem 0 5rem;
    }
    
    #hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
        padding-right: 0;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 80%;
    }
    
    .about-grid {
        flex-direction: column;
    }
    
    .experience-timeline::before {
        left: 35px;
    }
    
    .timeline-step {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
    
    .step-content {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    #hero {
        padding: 17rem 0 5rem;
    }
    
    header {
        padding: 1rem 0;
    }
    
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .benefit-category h3 {
        font-size: 1.3rem;
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
    
    .footer-logo {
        margin: 0 auto 1.5rem;
        display: block;
    }
    
    .footer-about p {
        max-width: none;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    #hero {
        padding: 20rem 0 5rem;
    }
    
    header {
        padding: 0.8rem 0;
    }
    
    nav ul {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .application-form {
        padding: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
} </pre></body></html>