body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

header {
    background-color: #007bff;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

section {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

section h2 {
    color: #007bff;
    margin-top: 0;
}

.contact p {
    margin: 5px 0;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    position: relative;
    bottom: 0;
    width: calc(100% - 40px); /* Adjust width to account for padding */
}

footer {
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: #fff;
    margin: 0 10px;
    font-size: 24px;
    transition: color 0.3s ease;
}

footer a:hover,
footer a:focus {
    color: #d1eaff;
}


/* Remove scrollbar if it's for overflow */
html {
    overflow-y: scroll; /* This will always show the vertical scrollbar */
}

/* If the scrollbar is for a specific element like a div with overflow, you can hide it like this: */
.overflow-hidden {
    overflow: hidden;
}
