    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }

    body {
        line-height: 1.6;
        color: #333;
    }

    header {
        background: #ffffff;
        color: #0c3048;
        padding: 1rem;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .logo img {
        width: 300px;
        background: #ffffff;
    }

    .logo span {
        color: #087780;
        font-weight: bold;
    }

    nav ul {
        display: flex;
        list-style: none;
        gap: 2rem;
        background: #ffffff;
    }

    nav a {
        color: #0c3048;
        text-decoration: none;
        font-size: 1.1rem;
    }

    nav a:hover {
        color: #087780;
    }

    .home {
        display: flex;
        max-width: 1200px;
        margin: 2rem auto;
        gap: 2rem;
        padding: 0 1rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .home-text {
        flex: 1;
        min-width: 300px;
    }

    .home-text h1 {
        color: #0c3048;
        margin-bottom: 1rem;
    }

    .home img {
        max-width: 300px;
        width: 100%;
        border-radius: 8px;
    }

    .home ul {
        padding-left: 40px; /* Adds indentation for bullets */
        list-style-position: outside; /* Ensures bullets appear outside the content box */
        list-style-type: disc; /* Ensures default bullet style (optional) */
    }

    .services {
        max-width: 1200px;
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .services h2 {
        text-align: center;
        color: #0c3048;
        margin-bottom: 2rem;
    }

    .service-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .service-card-tal {
        background: #f8f8f8;
        padding: 1.5rem;
        border-radius: 8px;
        text-align: center;
        border-left: 4px solid #087780;
    }

    .service-card-qs {
        background: #f8f8f8;
        padding: 1.5rem;
        border-radius: 8px;
        text-align: center;
        border-left: 4px solid #50c878;
    }

    .service-card-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }
    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }

    .contact-item img {
        width: 24px;
        margin-right: 10px;
        border-radius: 0px;
    }

    footer {
        background: #0c3048;
        color: white;
        text-align: center;
        padding: 1rem;
        margin-top: 2rem;
    }

    @media (max-width: 768px) {
        nav {
            flex-direction: column;
            gap: 1rem;
        }

        .home {
            flex-direction: column-reverse;
            align-items: center;
        }

        .home img {
            max-width: 100%;
        }
    }

.contact {
    max-width: 600px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.contact h2 {
    color: #0c3048;
    margin-bottom: 1rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #087780;
}

input, textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

button {
    background: #087780;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover:not(:disabled) {
    background: #0c3048;
}

button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1rem;
    text-align: center;
    color: #0c3048;
}

.form-message.error {
    color: #d32f2f;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.hidden {
    display: none;
}