/* Reset básico */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img, ol, ul, li, form, label, article, aside, footer, header, nav, section {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Estructura básica */
#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.site-content {
    flex-grow: 1;
    padding: 30px 0;
}

.site-main {
    padding: 20px 0;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.8em;
}

h3 {
    font-size: 1.5em;
}

p {
    margin-bottom: 15px;
}

a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #00a0d2;
}

/* Botones */
.button, button, input[type="button"], input[type="reset"], input[type="submit"] {
    display: inline-block;
    padding: 8px 16px;
    border: none;
    background-color: #0073aa;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.button:hover, button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
    background-color: #00a0d2;
}

/* Footer */
.site-footer {
    background-color: #222;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-widgets-inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.footer-widget {
    flex: 1;
    min-width: 250px;
    padding: 0 15px;
    margin-bottom: 30px;
}

.footer-widget .widget-title {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.site-info {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    margin-bottom: 10px;
}

.footer-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-left: 15px;
}

.footer-menu a {
    color: #aaa;
}

.footer-menu a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .site-info {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-menu {
        margin-top: 15px;
        justify-content: center;
    }
    
    .footer-menu li:first-child {
        margin-left: 0;
    }
}