body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #1a1a3d 0%, #2e2e5e 100%);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1618005182380-4f7a7e2850c2') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 39, 97, 0.7), rgba(64, 142, 198, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

.hero-text {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 1rem 0;
}

.hero-btn {
    background: #ff4d4d;
    padding: 1rem 2rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

nav {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s, transform 0.3s;
}

nav ul li a:hover {
    color: #ff4d4d;
    transform: scale(1.1);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

section {
    margin-bottom: 5rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: #ff4d4d;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.4s, box-shadow 0.4s;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

p {
    font-size: 1.3rem;
    text-align: center;
}

.product {
    padding: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #ff4d4d;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s, transform 0.3s;
}

.btn:hover {
    background: #408EC6;
    transform: scale(1.1);
}

form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

form label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-align: left;
    color: #fff;
}

form input, form textarea {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1rem;
    transition: background 0.3s;
}

form input:focus, form textarea:focus {
    background: rgba(255, 255, 255, 0.3);
    outline: none;
}

form button {
    padding: 0.75rem;
    background: #ff4d4d;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

form button:hover {
    background: #408EC6;
    transform: scale(1.1);
}

footer {
    background: #1a1a3d;
    color: #fff;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-text {
        font-size: 1.3rem;
    }
    nav ul li {
        display: block;
        margin: 10px 0;
    }
    .glass-card {
        padding: 1.5rem;
    }
}
