 
        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 styling */
        .form-container {
            background-color: #ffffff;
            padding: 30px 40px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

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

        form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        form input, form textarea {
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 15px;
            width: 100%;
            box-sizing: border-box;
            font-family: inherit;
        }

        form textarea {
            grid-column: span 2;
            resize: vertical;
        }

        button {
            grid-column: span 2;
            justify-self: center;
            width: 180px;
            padding: 12px;
            border: none;
            background-color: #c20a18;
            color: white;
            font-weight: bold;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
            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 {
                grid-template-columns: 1fr;
            }
            textarea {
                grid-column: span 1 !important;
            }
        }
  