 
        body {
            font-family: "Segoe UI", Arial, sans-serif;
            background-color: #f2f5f9;
            margin: 0;
            padding: 0;
            color: #333;
        }

        .container {
            width: 90%;
            max-width: 1100px;
            margin: 50px auto;
        }

        h2 {
            text-align: center;
            color: #ca0a0a;
            font-size: 2rem;
            margin-bottom: 20px;
            border-bottom: 3px solid #c50f2f;
            display: inline-block;
            padding-bottom: 5px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .contacts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .office {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            transition: all 0.3s ease-in-out;
            border-top: 4px solid #e31d3e;
        }

        .office:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
        }

        .office h3 {
            color: #ae0e0e;
            margin-top: 0;
        }

        .office p {
            margin: 6px 0;
            line-height: 1.5;
        }

        .social-icons {
            margin-top: 10px;
        }

        .social-icons a {
            color: #c20a18;
            margin-right: 15px;
            font-size: 1.3rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-icons a:hover {
            color: #c20a18;
            transform: scale(1.2);
        }

         /* Contact Form */
    .form-container {
        background-color: #ffffff;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        max-width: 800px;
        margin: auto;
    }

    .form-container h3 {
        color: #003366;
        text-align: center;
        margin-bottom: 25px;
        font-size: 1.6rem;
    }

    form {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    form input,
    form textarea {
        flex: 1 1 48%;
        padding: 12px 15px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 15px;
        width: 100%;
        box-sizing: border-box;
        font-family: inherit;
        transition: all 0.2s ease-in-out;
    }

    form input:focus,
    form textarea:focus {
        border-color: #0056b3;
        outline: none;
        box-shadow: 0 0 4px rgba(0,86,179,0.3);
    }

    textarea {
        flex: 1 1 100%;
        resize: vertical;
        min-height: 130px;
    }

    button {
        flex: 1 1 100%;
        align-self: center;
        width: 100%;
        max-width: 200px;
        padding: 12px;
        border: none;
        background-color: #0056b3;
        color: white;
        font-weight: bold;
        border-radius: 6px;
        cursor: pointer;
        font-size: 16px;
        margin: 0 auto;
        display: block;
        transition: background 0.3s ease;
    }

    button:hover {
        background-color: #003d80;
    }

    .alert {
        text-align: center;
        font-weight: bold;
        padding: 12px;
        border-radius: 6px;
        margin-bottom: 20px;
    }

    .alert.success {
        background: #e7f7ec;
        color: #2f8f46;
        border: 1px solid #b9e2c3;
    }

    .alert.error {
        background: #fdecea;
        color: #c0392b;
        border: 1px solid #f5b7b1;
    }

    @media (max-width: 768px) {
        form input, form textarea {
            flex: 1 1 100%;
        }
        .form-container {
            padding: 25px 20px;
        }
    }
  