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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f0f2f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

header {
    background: #7b2cbf;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

main {
    flex: 1;
    padding: 60px 0;
    text-align: center;
}

h2 {
    color: #3c096c;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto 30px;
}

.feature {
    background-color: #f3e8ff;
    border-left: 4px solid #7b2cbf;
    padding: 15px;
    margin-bottom: 30px;
    text-align: left;
    border-radius: 0 5px 5px 0;
}

.button {
    display: inline-block;
    background-color: #9d4edd;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #7b2cbf;
}

.creator-link {
    margin-top: 30px;
    font-style: italic;
}

.creator-link a {
    color: #7b2cbf;
    text-decoration: none;
    font-weight: 600;
}

.creator-link a:hover {
    text-decoration: underline;
}

.doc-link {
    display: inline-block;
    margin-top: 20px;
    color: #3c096c;
    text-decoration: none;
    font-weight: 600;
}

.doc-link:hover {
    text-decoration: underline;
}

footer {
    background: #240046;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}

footer nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

footer nav a {
    color: white;
    text-decoration: none;
    padding: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

footer nav a:hover {
    color: #e0aaff;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    p {
        font-size: 1rem;
    }

    .button {
        font-size: 1rem;
        padding: 10px 25px;
    }
}

.documentation {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.documentation h1, .documentation h2 {
    color: #3c096c;
    margin-top: 30px;
    margin-bottom: 15px;
}

.documentation ul, .documentation ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.documentation li {
    margin-bottom: 10px;
}