/* Base styles - same as index */
body {
    background-color: #0B0B0F;
    color: #F8FAFC;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Navigation - same as index */
nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(11, 11, 15, 0.9);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid #1F2937;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo {
    width: 60px;
    height: auto;
    display: block;
    border-radius: 0.5rem;
}

.brand-text h1 {
    margin: 0;
    line-height: 1;
    font-size: 1.25rem;
    font-weight: 600;
}

.brand-text p {
    margin: 0;
    font-size: 0.875rem;
    color: #9CA3AF;
}

/* Hero section */
.hero {
    padding: 5rem 0;
}

/* Service cards */
.service-card {
    background-color: #111827;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #1F2937;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #EF4444;
}

.service-card .icon {
    background-color: rgba(239, 68, 68, 0.1);
    padding: 0.75rem;
    border-radius: 9999px;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* Form styles */
form {
    display: grid;
    gap: 1.5rem;
}

input,
textarea {
    width: 100;
    background-color: #1F2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: white;
    outline: none;
}

input:focus,
textarea:focus {
    border-color: #EF4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.5);
}

button[type="submit"] {
    background-color: #EF4444;
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button[type="submit"]:hover {
    background-color: rgba(239, 68, 68, 0.9);
}

/* Footer - same as index */
footer {
    background-color: #111827;
    padding: 2rem 0;
    border-top: 1px solid #1F2937;
}