* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    line-height: 1.6;
    color: #fff;
    background-color: #121212;
}

.container {
    max-width: 60rem;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #121212;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,215,0,0.1);
}

nav {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    margin-right: 20px;
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #121212, #1a1a1a);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,215,0,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    flex: 1;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.services {
    padding: 4rem 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.service-card {
    flex: 1 1 300px;
    padding: 2rem;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid rgba(255,215,0,0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,215,0,0.3);
}

.contact-section {
    background: #1a1a1a;
    padding: 4rem 0;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

input[type="email"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 4px;
    font-size: 1rem;
    background: rgba(255,255,255,0.05);
    color: #fff;
}

input[type="email"]:focus {
    outline: none;
    border-color: #FFD700;
}

button {
    background: linear-gradient(to right, #FFD700, #FFA500);
    color: #000;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.2s;
    font-weight: 500;
}

button:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .service-card {
        flex: 1 1 100%;
    }
}

@media (min-width: 60rem) {
  .services {
    padding: 4rem 0;
  }
}
