 body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: white;
            color: black;
        }
        .header {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 220px;
            background-color: #000060;
        }
        .logo {
            max-width: 200px;
        }
        .welcome-message {
            text-align: center;
            margin-top: 20px;
            font-size: 24px;
            color: white;
        }
        .container {
            max-width: 800px; /* Limit the maximum width of main content */
            margin: 0 auto; /* Center the container horizontally */
            padding: 20px;
        }
        .company-info, .contact-info {
            text-align: justify;
            line-height: 1.6;
        }
        .company-info {
            padding: 50px;
        }
        .contact-info {
            background-color: #000060;
            color: white;
            padding: 30px;
            text-align: center;
        }
        .flags {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
        }
        .flag-icon {
            cursor: pointer;
            width: 32px;
            height: auto;
        }
