/* Reset some stuff */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #ffffff;
    color: #333;
}

/* Hero */
.hero {
    background: #00979D;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    margin: 5px;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    transition: background 0.3s;
}

.download {
    background: #F59401;
}

.download:hover {
    background: #e58300;
}

.docs {
    background: #007B7F;
}

.docs:hover {
    background: #00686c;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    gap: 20px;
    flex-wrap: wrap;
    background: #F2F2F2;
}

.feature-box {
    flex: 1;
    min-width: 200px;
    background: white;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
}

/* Comparison Table */
.comparison {
    padding: 40px 20px;
}

.comparison table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.comparison th, .comparison td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

/* How it Works */
.how-it-works {
    background: #F2F2F2;
    padding: 40px 20px;
    text-align: center;
}

.how-it-works pre {
    background: #333;
    color: #0f0;
    text-align: left;
    padding: 20px;
    overflow-x: auto;
    border-radius: 8px;
    margin-top: 20px;
}

/* Support Section */
.support {
    padding: 40px 20px;
    text-align: center;
}

.support .support-btn {
    background: #F59401;
    padding: 12px 24px;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.support .support-btn:hover {
    background: #e58300;
}

/* Footer */
footer {
    background: #00979D;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}
