/* Center the content horizontally */
        .content {
            max-width: 960px; /* Set a specific max-width for the container */
            margin: auto; /* Automatically center the container horizontally */
        }
        /* Style for the button */
        .orange-button {
            background-color: #ffa500; /* Orange color */
            color: white;
            padding: 10px 20px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            border: none;
            cursor: pointer;
            font-size: 16px;
            border-radius: 4px; /* Rounded corners */
        }