/* Reset some default browser styles */
body,
h1,
h2,
h3,
p,
blockquote,
ul,
li,
button {
    margin: 0;
    padding: 0;
}

/* Set a background color for the body */
body {
    background-color: #f4f4f4;
    font-family: 'Arial', sans-serif;
}

/* Header styling */
.w3-image.small-logo {
    max-width: 30px;
    /* Adjust the max-width to your desired small size */
    height: auto;
    display: block;
    margin: 10px 20px 10px 10px;
    /* Adjust the margins for positioning */
    /* Center the logo */
}


.welcome-message {
    font-size: 24px;
    text-align: center;
    margin: 20px 0;
}

/* Button styling */
.w3-button {
    background-color: blue;
    color: white;
    padding: 10px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px;
    cursor: pointer;
}

/* Navigation bar styling */
.w3-bar {
    background-color: #333;
    overflow: hidden;
}

.w3-bar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.w3-bar a:hover {
    background-color: #ddd;
    color: black;
}

.w3-dropdown-hover:hover .w3-dropdown-content {
    display: block;
}

.w3-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.w3-dropdown-content a {
    color: black;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
    text-align: left;
}

.w3-dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Business-related Images styling */
.w3-row-padding {
    margin: 20px 0;
}

.w3-third img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    padding: 8px;
}

/* Main Content styling */
.main-content {
    text-align: center;
    margin: 20px;
}

.main-content h1 {
    font-size: 36px;
    color: #333;
}

.main-content p {
    font-size: 18px;
    color: #555;
    margin: 10px 0;
}

/* Footer styling (you can include this in your common/footer.php file) */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}