body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(180deg, #1976D2 0%, #BBDEFB 100%);
    color: #212121;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: linear-gradient(90deg, #0288D1, #4FC3F7);
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

header h1 {
    margin: 0;
    color: white;
    font-size: 2.5em;
    font-weight: bold;
}

header img {
    height: 40px;
    vertical-align: middle;
    margin-right: 10px;
}

nav {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav a {
    color: #1976D2;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
    font-size: 1.1em;
}

nav a:hover {
    color: #0288D1;
    text-decoration: underline;
}

main {
    flex: 1;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 30px;
}

h2 {
    color: #1976D2;
    font-size: 2em;
    margin-bottom: 15px;
}

p {
    line-height: 1.6;
    font-size: 1.1em;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

footer {
    background: #0288D1;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
    width: 100%;
}

footer a {
    color: #BBDEFB;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.contact-info {
    background: #E3F2FD;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    nav a {
        margin: 0 10px;
        font-size: 1em;
    }

    main {
        margin: 10px;
        padding: 15px;
    }

    h2 {
        font-size: 1.5em;
    }

    p, ul li {
        font-size: 1em;
    }
}