body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
}

header {
    background: linear-gradient(to right, #4b6cb7, #182848);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

main {
    padding: 30px;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
    text-align: center;
}

.content-text {
    margin: 20px 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.link-text {
    margin-top: 25px;
    text-align: center;
}

p {
    margin-bottom: 15px;
}

.image-container {
    text-align: center;
    margin: 25px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.featured-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

a {
    color: #4b6cb7;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #182848;
    text-decoration: underline;
}

footer {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: center;
    color: #666;
}