/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #e0e0e0;
    background-color: #0a0a0a;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    color: #ffffff;
    font-weight: 400;
}

p {
    color: #bfbfbf;
    margin-bottom: 1em;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background-color: #0a0a0a;
    padding: 20px 40px;
    z-index: 10;
    font-size: 1.2em;
}

.navbar .logo {
    font-size: 1.6em;
    font-weight: 600;
    color: #e0e0e0;
}

.schedule-button {
    background-color: #007aff;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.schedule-button:hover {
    background-color: #005bb5;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-color: #121212;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-text p {
    font-size: 1.4em;
    margin-top: 10px;
}

/* About Section */
.about {
    padding: 60px 40px;
    text-align: center;
    background-color: #0f0f0f;
}

.core-values p {
    font-size: 1.1em;
    margin-top: 10px;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 60px 40px;
}

.services h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.service-item {
    max-width: 700px;
    margin: 20px auto;
    padding: 30px;
    background-color: #1a1a1a;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Approach Section */
.approach {
    padding: 60px 40px;
    background-color: #0a0a0a;
    text-align: center;
}

.approach-details {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    margin-top: 30px;
}

.approach-details h3 {
    font-size: 1.8em;
    margin-top: 20px;
}

.approach-details p {
    font-size: 1.1em;
}

/* Schedule Meeting Section */
.schedule-meeting {
    padding: 60px 20px;
    text-align: center;
    background-color: #121212;
}

.schedule-meeting h2 {
    font-size: 2.5em;
    color: #f5f5f5;
}

.schedule-meeting p {
    font-size: 1.4em;
    color: #cccccc;
    margin-bottom: 20px;
}

/* Footer and Contact Form */
footer {
    padding: 40px 20px;
    background-color: #0f0f0f;
    color: #bfbfbf;
    text-align: center;
}

.contact-form {
    max-width: 400px;
    margin: 20px auto;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 6px;
    border: none;
    background-color: #1a1a1a;
    color: #e0e0e0;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background-color: #007aff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #005bb5;
}
