/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    color: #2c3e50;
    font-size: 2em;
    margin: 0;
}

.subtitle {
    color: #7f8c8d;
    font-size: 1.2em;
    margin: 5px 0 0 0;
}

/* Main Content Styles */
.intro, .contact, .volta-link, .rota-link {
    margin-bottom: 20px;
    padding: 15px;
    background: #fefefe;
    border-radius: 5px;
    border: 1px solid #ddd;
}

h2 {
    color: #2c3e50;
    font-size: 1.4em;
    margin-top: 0;
}

/* Link Styles */
a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Footer Styles */
footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    color: #7f8c8d;
    font-size: 0.9em;
}

/* Accessibility: Larger text and high contrast */
body {
    font-size: 1.2em;
}

a {
    font-size: 1.1em;
}

