:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --text-color: #333;
    --error-color: #e74c3c;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 90%;
    margin: 40px auto;
}
h1 {
    color: #4a5568;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}
p {
    color: #718096;
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}
.feature-list {
    margin-bottom: 30px;
}
.feature-list h2 {
    color: #4a5568;
    font-size: 1.5em;
    margin-bottom: 15px;
}
.feature-list ul {
    list-style-type: none;
    padding: 0;
}
.feature-list li {
    color: #718096;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}
.feature-list li:before {
    content: '✦';
    color: #667eea;
    position: absolute;
    left: 0;
}
.cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: linear-gradient(to right, #eeeff1, #debdfd);
    color: rgb(130, 46, 240);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.tools-section {
    margin-top: 40px;
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
}
.tools-section h2 {
    text-align: center;
    color: #4a5568;
    font-size: 1.8em;
    margin-bottom: 20px;
}
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.tool-link {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    text-decoration: none;
    color: #4a5568;
    transition: all 0.3s ease;
    text-align: center;
}
.tool-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}