
        body {
            font-family: Arial, sans-serif;
            margin: 20px;
        }

        .container {
            max-width: 800px;
            margin: 40px auto;
            padding: 20px;
            background-color: #fff9ed;
            border: 1px solid #ddd;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 30px;
        }

        h1, h2, h3 {
            margin-bottom: 10px;
            color: orange;
        }

        p {
            margin-bottom: 20px;
        }

        ul {
            list-style-type: none; /* Remove default list styling */
            padding: 0; /* Remove default padding */
            margin: 0; /* Remove default margin */
            text-align: center; /* Center-align the list container */
        }
        
        ul li {
            display: inline-flex; /* Align items in a row */
            justify-content: center; /* Center content within each list item */
            align-items: center; /* Center content vertically */
            margin-bottom: 10px;
        }
         
        

        .circle {
            width: 60px;
            height: 60px;
            border-radius: 30px;
            background-color: #ccc; /* optional */
        }

        .header {
            text-align: center;
            border:2px solid orange;
            border-radius:30px;
            margin:20px;
            padding:20px;
        }

        .header img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 10px;
        }

        .section {
            padding: 20px;
            border-bottom: 1px solid #eee;
            text-align: center;
            border:2px solid orange;
            border-radius:30px;
            margin:20px;

        }


        .section ul {
            list-style-type: none;
            padding: 0;
            text-align: center;
            align-items: center;

        }

        .section li {
            display: flex;
            align-items: center;
            margin-bottom: 5px;
            text-align: center;

        }

        .section li i {
            font-size: 20px;
            margin-right: 10px;
            color: #007bff;
            text-align: center;

        }

        .section li span {
            color: #666;
            text-align: center;

        }

        .footer {
            padding: 20px;
            text-align: center;
        }

        .footer button {
            background-color: #007bff;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
        }

        .btn {
            background-color: #007bff;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
        }

        /* Mobile screen size */
        @media only screen and (max-width: 768px) {
            .container {
                max-width: 90%;
                margin: 20px auto;
            }
            .header img {
                width: 60px;
                height: 60px;
            }
            .section {
                padding: 15px;
            }
            .footer button {
                padding: 10px 15px;
            }
        }

        /* Tablet screen size */
        @media only screen and (min-width: 769px) and (max-width: 1024px) {
            .container {
                max-width: 80%;
                margin: 20px auto;
            }
        }

        /* Laptop screen size */
        @media only screen and (min-width: 1025px) and (max-width: 1200px) {
            .container {
                max-width: 70%;
                margin: 20px auto;
            }
        }

        /* Desktop screen size */
        @media only screen and (min-width: 1201px) {
            .container {
                max-width: 60%;
                margin: 20px auto;
            }
        }