.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section {
    margin-bottom: 10px;
}

h1, h2 {
    margin-top: 0;    /* Remove top margin to tighten up */
    margin-bottom: 10px; /* Small bottom margin for breathing room */
    color: #4a4a4a;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.5em;
}

.icon {
    font-size: 1.2em;
    margin-right: 8px;
    vertical-align: middle;
}

ul, ol {
    margin-left: 20px;
}

footer {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.pretty-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px; /* Adjust list spacing if needed */
    margin-bottom: 10px;
}

.pretty-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 10px;
}

.pretty-list li .list-icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
}

.contact-section {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

p {
    margin-top: 0;    /* Remove top margin */
    margin-bottom: 10px; /* Consistent small spacing */
}

.pretty-bar-link {
    text-decoration: none; /* No underline */
    background-color: #eef7ec; /* Green color (hex for green) */
    color: inherit;
    position: relative; /* Needed for the pseudo-element bar */
    display: inline-block; /* Ensures the bar fits the text width */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease; /* Smooth background transition */
}

.pretty-bar-link::after {
    content: ''; /* Empty content for the bar */
    position: absolute;
    left: 0;
    bottom: -2px; /* Position below the text */
    width: 100%; /* Full width of the link */
    height: 3px; /* Thickness of the bar */
    background: linear-gradient(to right, #ffa500, #ff4500); /* Pretty orange gradient */
    transform: scaleX(0); /* Start hidden */
    transition: transform 0.3s ease; /* Animate in */
}

.pretty-bar-link:hover::after {
    transform: scaleX(1.2); /* Show the bar on hover */
}

@media (max-width: 768px) {
    .section {
        margin-bottom: 10px; /* Slightly more for small screens if needed */
    }
}
