 body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #007ced;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: background-color 0.3s ease-in-out;
        }

        .container {
            background: linear-gradient(135deg, #ffffff, #f0f8ff);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            text-align: center;
            max-width: 450px;
            width: 100%;
            animation: fadeIn 1s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        h1 {
            color: #007ced;
            font-size: 2rem;
            font-weight: bold;
            font-style: italic;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
            margin-bottom: 20px;
            border-bottom: 2px solid #007ced;
            padding-bottom: 10px;
        }

        .info-box {
            background-color: #007ced;
            color: white;
            border-radius: 10px;
            margin-top: 20px;
            padding: 15px;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: transform 0.2s ease-in-out;
        }

        .info-box:hover {
            transform: translateY(-5px);
        }

        .icon {
            background-color: #fff;
            color: #007ced;
            font-size: 1.7rem;
            width: 45px;
            height: 45px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin-right: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .info-text {
            text-align: left;
            flex-grow: 1;
        }

        .info-text span {
            display: block;
            font-weight: bold;
        }

        footer {
            margin-top: 20px;
            color: #fff;
            font-size: 0.85rem;
            opacity: 0.8;
        }

        footer a {
            color: #ffeb3b;
            text-decoration: none;
            font-weight: bold;
        }

        footer a:hover {
            text-decoration: underline;
        }