:root {
    --primary: #6366f1;
    --secondary: #8b5cf6;
    --accent: #3b82f6;
    --text: #1e293b;
    --light: #f8fafc;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: linear-gradient(45deg, #f1f5f9, #e2e8f0);
}

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

.glass-nav {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.content-box {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.content-box.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.image-box {
    flex: 1;
    height: 400px;
}



footer {
    background: var(--text);
    color: var(--light);
    padding: 4rem 0;
    text-align: center;
}

.contact-info {
    margin-top: 2rem;
}

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

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .content-box {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .content-box.reverse {
        flex-direction: column;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .image-box {
        width: 100%;
        height: 300px;
    }

    nav ul {
        display: none;
    }
}