/* General Styles */
:root {
    --background-color: #0f111a;
    --primary-color: #1e90ff;
    --secondary-color: #2f3640;
    --accent-color: #ff7f50;
    --text-color: #f5f6fa;
    --font-family: 'Roboto', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-family);
    background: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('banner.jpg') no-repeat center center/cover;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}

/* About Section */
.about {
    padding: 4rem 2rem;
    text-align: center;
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    background: var(--secondary-color);
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    padding: 1.5rem;
    background: var(--background-color);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
}

/* Highlights Section */
.highlights {
    padding: 4rem 2rem;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.highlight-item {
    padding: 1.5rem;
    background: var(--secondary-color);
    border-radius: 8px;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    text-align: center;
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form input, form textarea, form button {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
}

form button {
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: var(--secondary-color);
    color: var(--text-color);
}
