/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #fff;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    font-size: 18px;
    font-weight: 300;
}

/* Container for max width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background: linear-gradient(135deg, #2E3440, #4C566A);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #FFA500;
    font-weight: 700;
}

header p {
    font-size: 1.3rem;
    color: #ccc;
    font-weight: 400;
}

/* Section styles */
section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #FFA500;
    text-align: center;
    font-weight: 600;
}

section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ccc;
    font-weight: 400;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-item {
    background: linear-gradient(135deg, #333, #444);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #FFD700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    color: #fff;
    font-size: 1.1rem;
}

.service-item:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    transform: translateY(-5px);
    color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

/* Contact form styles */
#contact {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
}

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

#contact-form label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #FFA500;
}

#contact-form input,
#contact-form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #FFD700;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #333;
    color: #fff;
    font-weight: 400;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: #ccc;
}

#contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

#contact-form button {
    padding: 12px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

#contact-form button:hover {
    background: linear-gradient(135deg, #FFA500, #FF6B35);
}

#success-message {
    margin-top: 20px;
    padding: 10px;
    background-color: #4CAF50;
    color: #fff;
    border: 1px solid #45a049;
    border-radius: 4px;
    text-align: center;
}

/* Footer styles */
footer {
    background: linear-gradient(135deg, #333, #1a1a1a);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
    font-size: 1rem;
}

footer p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header {
        padding: 40px 0;
    }

    header h1 {
        font-size: 2.2rem;
    }

    section {
        padding: 40px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}