
        :root {
        --bg: #000000;
        --bg-gradient: linear-gradient(135deg, #0a0f1c 0%, #1a2333 100%);
        --accent: #00d4ff;
        --words: #ffffff;
        --words-secondary: #a0aec0;
    }

    input.form-control,
    textarea.form-control,
    select.form-control {
        max-width: 100%;
        width: 100%;
    }

    body {
        background: var(--bg);
        color: var(--words);
        font-family: "Barlow", sans-serif;
        margin: 0;
        overflow-x: hidden;
    }

    .section {
        padding: 5rem 2rem;
        position: relative;
    }

    .container {
        max-width: 600px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .section-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--accent);
        margin-bottom: 2rem;
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    }

    .section-description {
        text-align: center;
        color: var(--words-secondary);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto 3rem auto;
    }

    /* Contact Info Cards */
    .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .contact-card {
        background: linear-gradient(135deg, rgba(20, 26, 39, 0.8), rgba(31, 41, 55, 0.6));
        border: 1px solid rgba(0, 212, 255, 0.2);
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
    }

    .contact-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: var(--accent);
    }

    .contact-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--words);
    }

    .contact-card p,
    .contact-card a {
        color: var(--words-secondary);
        font-size: 1rem;
        margin: 0.25rem 0;
        text-decoration: none;
    }

    .contact-card a:hover {
        color: var(--accent);
    }

    /* Contact Form */
    .contact-form {
        background: linear-gradient(135deg, rgba(20, 26, 39, 0.9), rgba(31, 41, 55, 0.7));
        border: 1px solid rgba(0, 212, 255, 0.2);
        border-radius: 20px;
        padding: 3rem;
        margin-top: 4rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .form-control {
        width: 100%;
        padding: 1rem;
        border-radius: 10px;
        border: 1px solid rgba(0, 212, 255, 0.2);
        background: rgba(20, 26, 39, 0.9);
        color: var(--words);
        font-size: 1rem;
        outline: none;
        transition: box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--words-secondary);
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        border-radius: 10px;
        border: 1px solid rgba(0, 212, 255, 0.2);
        background: rgba(20, 26, 39, 0.9);
        color: var(--words);
        font-size: 1rem;
        outline: none;
        transition: box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--accent);
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
    }

    .btn-submit {
        display: inline-block;
        background: transparent;
        border: 2px solid var(--accent);
        color: var(--accent);
        font-weight: 600;
        padding: 0.75rem 2rem;
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-submit:hover {
        background: var(--accent);
        color: var(--bg);
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
        transform: translateY(-2px);
    }