body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #e8f7fa, #fce2f0);
    color: #333;
}

header {
    background: linear-gradient(135deg, #4c8bf5, #9c4cf5);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

header .hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

header h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
}

header p {
    font-size: 1.3em;
    margin-bottom: 30px;
}

header .cta-button {
    background: #fff;
    color: #4c8bf5;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background 0.3s ease;
}

header .cta-button:hover {
    background: #f0f0f0;
}

main {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 15px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

main section {
    padding: 30px 20px;
}

main h2 {
    margin-top: 0;
    font-weight: 700;
    color: #4c8bf5;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
    background: #f9f9f9;
    border-left: 5px solid #4c8bf5;
    padding: 10px;
    border-radius: 3px;
}

pre {
    background: #2e2e2e;
    color: #dcdcdc;
    padding: 20px;
    overflow-x: auto;
    border-radius: 5px;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9em;
}

code {
    color: #dcdcdc;
}

a {
    color: #9c4cf5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #555;
    background: #fff;
    margin-top: 40px;
    border-top: 1px solid #eee;
}