.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-grow {
    flex-grow: 1;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.space-x-4 > * + * {
    margin-right: 1rem;
}

.min-h-screen {
    min-height: 100vh;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.text-center {
    text-align: center;
}

@media (max-width: 768px) {
    .hidden {
        display: none;
    }
}

@media (min-width: 769px) {
    .md\:flex {
        display: flex;
    }
}

.layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(26, 32, 44, 0.8);
    backdrop-filter: blur(10px);
    height: 60px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #9f7aea;
}

.nav-links a {
    margin-left: 1rem;
    color: #e2e8f0;
    text-decoration: none;
}

.main {
    flex: 1;
    position: relative;
    z-index: 1;
}

.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero {
    text-align: center;
    min-height: calc(100vh - 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 0.75rem 1.5rem;
    background-color: #9f7aea;
    color: white;
    border-radius: 9px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #805ad5;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}
