body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    overflow-y: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/logo-white.png');
    background-size: 60%;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: -1;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s;
}

nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    left: 10px;
    top: 10px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0 auto;
    padding: 0;
    justify-content: center;
    flex-grow: 1;
}

nav li {
    list-style: none;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    padding: 10px 15px;
    border: 1px solid #008080;
    border-radius: 5px;
    background-color: transparent;
    font-size: 16px;
}

nav a:hover {
    background-color: rgba(0, 128, 128, 0.2);
    color: #ffffff;
}

.active {
    font-weight: bold;
    background-color: #008080;
    color: #ffffff;
}

.veast-letters {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.letter-item {
    cursor: pointer;
    position: relative;
    padding: 5px;
    background-color: #111111;
    border: 1px solid #008080;
    border-radius: 5px;
    z-index: 1;
}

.letter-item button {
    background: none;
    border: none;
    color: #008080;
    font-family: 'Playfair Display', serif;
    font-size: 29px;
    padding: 0;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.letter-item button:hover {
    text-decoration: underline;
}

.letter-explanation {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #111111;
    color: #ffffff;
    padding: 10px;
    border: 1px solid #008080;
    border-radius: 5px;
    white-space: nowrap;
    z-index: 1001;
    margin-top: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px 200px;
    background-color: rgba(0, 0, 0, 0.5);
    margin-top: 80px;
}

.hero-content .welcome-text {
    font-size: 18px;
    color: #008080;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 10px;
}

.hero-content p {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #cccccc;
}

.boxed-section {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #111111;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 128, 128, 0.2);
    text-align: center;
}

.about-section {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #111111;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 128, 128, 0.2);
    text-align: center;
}

.about-path {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.path-item {
    position: relative;
    background-color: #111111;
    border: 1px solid #008080;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
    max-width: 100%;
}

.path-item h3 {
    font-family: 'Playfair Display', serif;
    color: #008080;
    font-size: 22px;
    margin-bottom: 5px;
}

.path-item p {
    color: #cccccc;
    margin: 0;
}

.path-item::before {
    content: attr(data-phase);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #008080;
    color: #000000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.path-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px
}

.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #111111;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 128, 128, 0.2);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-family: 'Playfair Display', serif;
    color: #008080;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #222222;
    border: 1px solid #008080;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
}

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

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #008080;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 18px;
}

.cta-button:hover {
    background-color: rgba(0, 128, 128, 0.8);
}

.journey-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #111111;
    margin: 20px 0;
}

.journey-section h2 {
    font-family: 'Playfair Display', serif;
    color: #008080;
    margin-bottom: 20px;
}

.journey-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #cccccc;
}

.journey-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 10px;
}

.journey-box {
    background-color: #111111;
    border: 1px solid #008080;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 128, 128, 0.2);
}

.journey-box h3 {
    font-family: 'Playfair Display', serif;
    color: #008080;
    margin-bottom: 10px;
    font-size: 22px;
}

.journey-box p {
    margin: 0;
    color: #cccccc;
}

.journey-box:hover {
    transform: translateY(-5px);
}

.store-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #111111;
    margin: 20px 0;
}

.training-section {
    max-width: 600px;
    margin: 0 auto;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    justify-items: center;
}

.package-item {
    background-color: #111111;
    border: 1px solid #008080;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.package-item h3 {
    font-family: 'Playfair Display', serif;
    color: #008080;
    margin-bottom: 5px;
    font-size: 22px;
}

.package-item p {
    color: #cccccc;
    margin: 0;
}

.products-section {
    max-width: 600px;
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-item {
    background-color: #111111;
    border: 1px solid #008080;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
}

.category-item h3 {
    font-family: 'Playfair Display', serif;
    color: #008080;
    margin-bottom: 10px;
    font-size: 22px;
}

.category-item p {
    margin: 0;
    color: #cccccc;
}

.product-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.product-list li {
    margin-bottom: 10px;
}

.policy-section {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #111111;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 128, 128, 0.2);
    text-align: left;
}

.policy-section h2 {
    font-family: 'Playfair Display', serif;
    color: #008080;
    margin-bottom: 20px;
}

.policy-section p {
    color: #cccccc;
    margin-bottom: 20px;
}

.policy-section ul {
    margin-left: 20px;
    color: #cccccc;
}

.policy-section ul li {
    margin-bottom: 10px;
}

.thank-you-section {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #111111;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 128, 128, 0.2);
    text-align: center;
}

.thank-you-section p {
    color: #cccccc;
    margin-bottom: 20px;
}

.rates-section {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #111111;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 128, 128, 0.2);
    text-align: center;
}

.rates-section h2 {
    font-family: 'Playfair Display', serif;
    color: #008080;
    margin-bottom: 20px;
}

.rates-section p {
    color: #cccccc;
    margin-bottom: 20px;
}

.app-section {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px 20px 60px;
    background-color: #111111;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 128, 128, 0.2);
    text-align: center;
}

.app-section h2 {
    font-family: 'Playfair Display', serif;
    color: #008080;
    margin-bottom: 20px;
}

.app-section p {
    color: #cccccc;
    margin-bottom: 20px;
}

.roadmap-section {
    max-width: 600px;
    margin: 0 auto;
}

.roadmap-path {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.roadmap-item {
    position: relative;
    background-color: #111111;
    border: 1px solid #008080;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
    margin: 0 auto;
    max-width: 400px;
}

.roadmap-item h3 {
    font-family: 'Playfair Display', serif;
    color: #008080;
    margin-bottom: 5px;
    font-size: 22px;
}

.roadmap-item p {
    color: #cccccc;
    margin: 0;
}

.roadmap-item p.phase-details {
    font-size: 14px;
}

.roadmap-item::before {
    content: attr(data-phase);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #008080;
    color: #000000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.roadmap-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background-color: #008080;
}

.ready-section {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.ready-section h2 {
    font-family: 'Playfair Display', serif;
    color: #008080;
    margin-bottom: 10px;
}

.ready-section p {
    color: #cccccc;
    margin-bottom: 20px;
}

.ready-section .cta-button {
    display: inline-block;
    margin: 0 auto;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-size: 12px;
    color: #cccccc;
    z-index: 10;
}

footer p {
    margin: 0 10px;
}

footer .social-links {
    display: flex;
    gap: 10px;
    margin-left: 10px;
}

footer .social-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

footer .social-links a:hover {
    color: #008080;
}

footer .social-links i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 20px 0;
    }
    .nav-menu.active {
        display: flex;
    }
    nav ul {
        gap: 10px;
    }
    nav a {
        padding: 10px;
        font-size: 18px;
        display: block;
    }
    .hero {
        padding: 60px 10px 150px;
        margin-top: 60px;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .journey-section {
        padding: 40px 10px;
    }
    .journey-boxes {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, auto);
        gap: 10px;
    }
    .journey-box {
        width: 90%;
        margin: 0 auto;
    }
    .contact-section {
        max-width: 90%;
        padding: 20px;
    }
    .form-group input,
    .form-group textarea {
        padding: 10px;
    }
    .about-section {
        max-width: 90%;
        padding: 15px;
    }
    .policy-section, .thank-you-section, .rates-section {
        max-width: 90%;
        padding: 15px;
    }
    .app-section {
        max-width: 90%;
        padding: 15px 15px 45px;
    }
    .roadmap-item {
        max-width: 90%;
        margin: 0 auto;
    }
    .roadmap-item::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .roadmap-item:not(:last-child)::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .roadmap-section, .ready-section {
        max-width: 90%;
    }
    .roadmap-item {
        margin-bottom: 15px;
    }
    .roadmap-item::after {
        height: 20px;
        bottom: -20px;
    }
    .veast-letters {
        flex-direction: row;
        gap: 5px;
    }
    .letter-item button {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 10px 100px;
    }
    .hero-content h1 {
        font-size: 28px;
    }
    .journey-section {
        padding: 30px 10px;
    }
    .journey-box {
        padding: 10px;
    }
    nav {
        padding: 5px;
    }
    .contact-section {
        padding: 15px;
    }
    .form-group textarea {
        height: 120px;
    }
    .about-section {
        padding: 10px;
    }
    .policy-section, .thank-you-section, .rates-section, .app-section {
        padding: 10px 10px 30px;
    }
    .veast-letters {
        gap: 3px;
    }
    .letter-item {
        width: 35px;
    }
    footer {
        font-size: 10px;
        height: 30px;
    }
    nav a {
        font-size: 16px;
    }
    .roadmap-item {
        padding: 10px;
    }
    .cta-button {
        padding: 10px 20px;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
    .nav-menu {
        display: flex;
    }
}