body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
    background-color: #121212;
    line-height: 1.6;
}

header {
    background-color: rgba(18, 18, 18, 0.9);
    padding: 1rem 2rem;
    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;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #b0b0b0;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffffff;
}

main {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    margin-bottom: 4rem;
}

h1, h2, h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
}

h3 {
    font-size: 1.8rem;
}

.hero {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(18, 18, 18, 0.8) 100%);
    border-radius: 12px;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

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

.hero p {
    font-size: 1.3rem;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.hero-cta {
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    margin: 0 0.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn.primary {
    background-color: #007bff;
    color: #ffffff;
    border: 2px solid #007bff;
}

.btn.primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

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

.btn.secondary:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

.trust-anchors {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    z-index: 2;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.services-overview h2 {
    margin-bottom: 3rem;
}

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

.card {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
}

.card h3 {
    color: #007bff;
    margin-bottom: 1rem;
}

.card p {
    color: #b0b0b0;
}

.about-dreamlabs {
    background-color: #1e1e1e;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.about-content p {
    color: #d0d0d0;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
    border-radius: 8px;
}

.cta-banner h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

footer {
    background-color: #1e1e1e;
    padding: 3rem 2rem;
    color: #b0b0b0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-legal {
    text-align: right;
}

.footer-legal p {
    margin: 0.3rem 0;
}

.footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Contact Page Specific Styles */
.contact-section {
    text-align: center;
    padding: 4rem 0;
}

.contact-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.contact-form-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    text-align: left;
    margin-top: 3rem;
}

.contact-form-wrapper form {
    flex: 1;
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #d0d0d0;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #333;
    background-color: #2a2a2a;
    color: #e0e0e0;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.contact-form-wrapper form .btn.primary {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

.contact-info {
    flex: 1;
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info h3 {
    color: #007bff;
    text-align: left;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #d0d0d0;
    text-align: left;
    margin: 0;
    font-size: 1rem;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

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

.legal-entity {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        margin-top: 1rem;
    }
    nav ul li {
        margin: 0.5rem 0;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .trust-anchors {
        flex-direction: column;
        gap: 1rem;
        bottom: 1rem;
    }
    .service-cards {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links ul {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    .footer-legal {
        text-align: center;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem;
    }
    .logo {
        font-size: 1.5rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .btn {
        padding: 0.8rem 1.5rem;
        margin: 0.5rem;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    .contact-section h1 {
        font-size: 2.8rem;
    }
    .contact-form-wrapper form, .contact-info {
        padding: 1.5rem;
    }
}