* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}
		
		header a {
    color: #3498db;
}


/* Section Styles */
section {
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #34495e;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 1.5rem;
    color: #3498db;
    margin-bottom: 10px;
}

.steps {
    max-width: 800px;
    margin: 30px auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.steps ol {
    padding-left: 20px;
    margin: 20px 0;
}

.steps li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Table Styles */
.features-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.features-table th, .features-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.features-table th {
    background-color: #3498db;
    color: white;
}

.features-table tr:hover {
    background-color: #f5f5f5;
}

/* FAQ Styles */
.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
    background-color: #3498db;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.show {
    padding: 20px;
    max-height: 500px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #27ae60;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 8px;
    margin: 20px 0;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #219653;
}

.cta-section {
    text-align: center;
    padding: 60px 0;
    background-color: #e8f5e9;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer a {
    color: #3498db;
    text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    header h1 {
font-size: 2rem;
    }

    section h2 {
font-size: 1.8rem;
    }

    .feature-list {
grid-template-columns: 1fr;
    }

    .features-table th, .features-table td {
padding: 10px;
font-size: 0.9rem;
    }
}