* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: linear-gradient(135deg, #1e88e5 0%, #0d47a1 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    opacity: 0.9;
}

header .site-logo {
    display: block;
    max-height: 70px;
    width: auto;
    margin: 0 auto 16px;
}

header a:has(.site-logo) {
    text-decoration: none;
}

nav {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
    margin-bottom: 30px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #1e88e5;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #0d47a1;
}

main {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

h2 {
    color: #1e88e5;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8em;
}

h3 {
    color: #0d47a1;
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.4em;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
}

.info-box {
    background-color: #e3f2fd;
    border-left: 4px solid #1e88e5;
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
}

.cta-section {
    background: linear-gradient(135deg, #1e88e5 0%, #0d47a1 100%);
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    margin-top: 40px;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #1e88e5;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

footer {
    background-color: #263238;
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin-top: 40px;
}

footer a {
    color: #64b5f6;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }
    
    main {
        padding: 20px;
    }
    
    nav ul {
        gap: 15px;
    }
}
