body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    margin: 0;
    padding: 0;
    color: #e0e0e0;
    background-color: #121212;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

header {
    background-color: rgba(18, 18, 18, 0.8);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #90caf9;
}

main {
    padding-top: 60px; /* Adjust based on header height */
}

section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

section h2 {
    font-size: 2.8em;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

section p {
    font-size: 1.2em;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(144,202,249,0.1) 100%);
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4.5em;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.5em;
    color: #c0c0c0;
    max-width: 800px;
    margin-bottom: 50px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #90caf9;
    color: #121212;
    box-shadow: 0 5px 15px rgba(144, 202, 249, 0.3);
}

.btn-primary:hover {
    background-color: #64b5f6;
    box-shadow: 0 8px 20px rgba(144, 202, 249, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #90caf9;
    border: 2px solid #90caf9;
}

.btn-secondary:hover {
    background-color: rgba(144, 202, 249, 0.1);
    transform: translateY(-2px);
}

.trust-anchors {
    margin-top: 50px;
    font-size: 0.9em;
    color: #a0a0a0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-anchors span {
    position: relative;
    padding-left: 20px;
}

.trust-anchors span::before {
    content: '\2022'; /* Bullet point */
    position: absolute;
    left: 0;
    top: 0;
    color: #90caf9;
    font-size: 1.2em;
}

.services-overview {
    background-color: #1a1a1a;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
}

.service-card {
    background-color: #1f1f1f;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
    font-size: 1.8em;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1em;
    color: #b0b0b0;
    margin-bottom: 0;
}

.cta-banner {
    background: linear-gradient(90deg, rgba(144, 202, 249, 0.1) 0%, rgba(144, 202, 249, 0.05) 100%);
    padding: 50px 30px;
    border-radius: 8px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #ffffff;
}

.about-dreamlabs {
    background-color: #121212;
}

.about-dreamlabs p {
    font-size: 1.1em;
    color: #c0c0c0;
    max-width: 750px;
}

.contact-section {
    background-color: #1a1a1a;
    padding-bottom: 100px;
}

#contact-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background-color: #1f1f1f;
    border-radius: 8px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 1em;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #2c2c2c;
    color: #e0e0e0;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

#contact-form button[type="submit"] {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.2em;
    font-weight: 700;
}

.contact-info {
    margin-top: 40px;
    font-size: 1.1em;
    color: #b0b0b0;
}

.contact-info p {
    margin-bottom: 15px;
    color: #e0e0e0;
}

.contact-info a {
    color: #90caf9;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

footer {
    background-color: #1f1f1f;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
    color: #a0a0a0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
    margin-bottom: 10px;
}

footer nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

footer nav ul li a {
    color: #a0a0a0;
    text-decoration: none;
}

footer nav ul li a:hover {
    color: #90caf9;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5em;
    }
    .hero p {
        font-size: 1.3em;
    }
    nav ul li {
        margin-left: 20px;
    }
    nav ul li a {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    nav .logo {
        margin-bottom: 15px;
    }
    nav ul {
        flex-direction: column;
        width: 100%;
    }
    nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
        width: 100%;
        text-align: left;
    }
    .hero {
        min-height: 60vh;
    }
    .hero h1 {
        font-size: 2.8em;
    }
    .hero p {
        font-size: 1.1em;
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    .trust-anchors {
        flex-direction: column;
        gap: 15px;
    }
    .service-card {
        padding: 30px;
    }
    section h2 {
        font-size: 2.2em;
    }
    #contact-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5em;
    }
    nav ul li a {
        font-size: 0.9em;
    }
    .hero h1 {
        font-size: 2.2em;
    }
    .hero p {
        font-size: 1em;
    }
    .btn {
        font-size: 1em;
        padding: 12px 20px;
    }
    section h2 {
        font-size: 1.8em;
    }
    section p {
        font-size: 1em;
    }
    .service-card h3 {
        font-size: 1.4em;
    }
    .cta-banner p {
        font-size: 1.1em;
    }
    #contact-form button[type="submit"] {
        font-size: 1.1em;
    }
}