body {
    background-color: #f0f0f0;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: black;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.wrapper {
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    width: 100%;
    max-width: 900px;
    padding: 40px;
    border-radius: 5px;
    /* Paper-like styles */
    border: 1px solid #ccc;
}

@media (max-width: 768px) {
    .wrapper {
        width: 100%;
        padding: 10px;
    }

    div[style*="display: flex;"] {
        flex-direction: column;
    }

    div[style*="flex: 0 0 200px"] {
        flex: 1 1 auto;
        margin-right: 0;
    }

    div[style*="flex: 1;"] {
        text-align: center;
    }

    div[style*="flex: 0 0 179px;"] {
        flex: 1 1 auto;
    }
}

hr.new1 {
    border-top: 0.5px solid;
    position: relative;
    margin-top: -15px;
    margin-bottom: 2px;
}

section {
    background-color: white;
    margin-bottom: 30px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
}

header h4 {
    font-style: italic;
    color: #777;
    margin-bottom: 5px;
}

section h2 {
    font-size: 2em;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

a {
    text-decoration: none;                        
    color: #003366;                               
    border-bottom: 1px dashed transparent;       
    padding-bottom: 1px;
    transition: border-color 0.2s ease-in-out;
}

a:hover, a:focus {
    border-bottom-color: #003366;                 
}

i {
    margin-right: 1px;
}
