
        .contact-container1 {
            max-width: 600px;
            margin: 0px auto;
            padding: 30px;
            background: #f9f9f9;
            border-radius: 15px;
            box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
            font-family: Arial, sans-serif;
            text-align: center;
            transition: all 0.3s ease-in-out;
        }
        /* Hover effect on the whole box */
        .contact-container1:hover {
            background: #ffffff;
            box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
            transform: translateY(-5px);
        }
        .contact-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #333;
        }
        .contact-item1 {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            background: white;
            border-radius: 12px;
            box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
        }
        .contact-item1 img {
            width: 35px;
            height: 35px;
            margin-right: 20px;
        }
        .contact-text {
            font-size: 20px;
            color: #333;
        }
        /* Align the address text to the left */
        .address .contact-text {
            text-align: left;
        }
