body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0a0a0f;
    color: #fff;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

header {
    padding: 2rem 0;
}

.hero {
    padding: 4rem 0;
}

.btn-primary {
    display: inline-block;
    background: #00ffe5;
    color: #000;
    padding: 0.75em 1.5em;
    border-radius: 30px;
    text-decoration: none;
}
.btn-primary:hover {
    background: #09d1c0;
}

/* Landing Page Styles */
.hero {
    background: linear-gradient(135deg, #0a0a0f 0%, #141421 100%);
    padding: 6rem 0;
    text-align: center;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #b3b3b3;
    margin-bottom: 2rem;
}

.highlight {
    color: #00ffe5;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(90deg, #00ffe5, #9a00ff);
    color: #fff;
    padding: 0.85em 1.6em;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.services {
    padding: 4rem 0;
    background: #0f0f15;
}

.services-grid {
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
    padding: 2rem;
    background: #141421;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
}

.contact {
    padding: 4rem 0;
    text-align: center;
}
.btn-outline {
    display: inline-block;
    border: 2px solid #00ffe5;
    padding: 0.75em 1.5em;
    border-radius: 30px;
    color: #00ffe5;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}
.btn-outline:hover {
    background: #00ffe5;
    color: #000;
}