* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #e8e8e8;
    overflow-x: hidden;
}

/* Cookie Consent */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 10, 40, 0.95);
    border-top: 2px solid #00d9ff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    gap: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 14px;
    max-width: 600px;
    line-height: 1.5;
}

.cookie-banner button {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-banner .accept-btn {
    background: linear-gradient(135deg, #00d9ff, #7c3aed);
    color: #fff;
}

.cookie-banner .decline-btn {
    background: transparent;
    color: #00d9ff;
    border: 1px solid #00d9ff;
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(10px);
}

nav .logo {
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d9ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-decoration: none;
    cursor: pointer;
}

nav .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

nav .nav-links a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

nav .nav-links a:hover {
    border-bottom: 2px solid #00d9ff;
    color: #00d9ff;
}

/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 40px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #00d9ff, #7c3aed, #00d9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 20px;
    color: #b8b8b8;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #00d9ff, #7c3aed);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 217, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #00d9ff;
    border: 2px solid #00d9ff;
}

.btn-secondary:hover {
    background: rgba(0, 217, 255, 0.1);
    transform: translateY(-2px);
}

/* Services Section */
.services-section {
    padding: 80px 40px;
    background: #0f0f0f;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 60px;
    text-align: center;
    background: linear-gradient(135deg, #00d9ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 1px solid rgba(0, 217, 255, 0.2);
    padding: 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #00d9ff;
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.15);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: #b8b8b8;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 50%, #0a0a0a 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.features-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 24px;
    color: #e8e8e8;
}

.features-content p {
    font-size: 16px;
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 12px 0;
    font-size: 16px;
    color: #e8e8e8;
    padding-left: 32px;
    position: relative;
}

.feature-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00d9ff;
    font-weight: bold;
}

.features-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.features-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 40px;
    background: #0f0f0f;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/2;
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: #00d9ff;
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.15);
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    padding: 40px;
    text-align: center;
    color: #666;
    font-size: 13px;
}

footer a {
    color: #00d9ff;
    text-decoration: none;
    margin: 0 16px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
    }

    nav .nav-links {
        gap: 16px;
        font-size: 12px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 32px;
    }
}




/* Price Styles */
.price-container {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #00d9ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 14px;
    color: #b8b8b8;
    font-weight: 500;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
}

.price-features span {
    font-size: 12px;
    color: #00d9ff;
    padding: 4px 8px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}

/* Update service card for better spacing */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .price {
        font-size: 28px;
    }

    .price-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .price-features span {
        font-size: 11px;
        padding: 3px 6px;
    }
}
