 body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #f4f4f4;
        }

        header, footer {
            background-color: #0056b3;
            color: white;
            text-align: center;
            padding: 20px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        h1 {
            margin: 10px 0;
            font-size: 2.5em;
        }

        p {
            margin: 10px 0;
            font-size: 1.2em;
        }

        button {
            background-color: #ff9800;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 1.2em;
            cursor: pointer;
            border-radius: 5px;
        }

        button:hover {
            background-color: #e68a00;
        }

        #contact {
            margin: 20px;
            text-align: center;
        }

        a {
            color: #ff9800;
            text-decoration: none;
            font-size: 1.2em;
        }

        a:hover {
            text-decoration: underline;
        }

        .accordion {
            width: 80%;
            max-width: 600px;
            margin: 20px;
        }

        .accordion-item {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-bottom: 10px;
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            font-size: 1.2em;
            cursor: pointer;
            background-color: #0056b3; /* Matching the header background color */
            color: white;
            border-bottom: 1px solid #ddd;
        }

        .accordion-header .icon {
            transition: transform 0.3s;
        }

        .accordion-header.active .icon {
            transform: rotate(180deg);
        }

        .accordion-content {
            padding: 10px;
            display: none;
        }

        .accordion-content.show {
            display: block;
        }

        .contact-info {
            background-color: #f4f4f4; /* Same as body background color */
            padding: 20px;
            color: #333; /* Dark text color for contrast */
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            border-radius: 8px;
            text-align: left;
            margin-top: 20px;
        }

        .contact-info h2 {
            margin-bottom: 10px;
            font-size: 22px;
        }

        .info-item {
            margin-bottom: 10px;
            font-size: 16px;
            display: flex;
            align-items: center;
        }

        .info-item i {
            margin-right: 10px;
            color: #007BFF;
        }