
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
header {
    text-align: center;
    margin-bottom: 30px;
}
h1 {
    color: #2c3e50;
    margin-bottom: 10px;
}
.subtitle {
    color: #7f8c8d;
    font-size: 16px;
}
.pricing-tiers {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.pricing-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin: 0 15px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s;
}
.pricing-card:hover {
    transform: translateY(-5px);
}
.pricing-card.basic {
    border-top: 4px solid #3498db;
}
.pricing-card.advanced {
    border-top: 4px solid #9b59b6;
}
.pricing-card.pro {
    border-top: 4px solid #e74c3c;
}
.pricing-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}
.price {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}
.price.basic {
    color: #3498db;
}
.price.advanced {
    color: #9b59b6;
}
.price.pro {
    color: #e74c3c;
}
.price span {
    font-size: 16px;
    font-weight: normal;
}
.pricing-features {
    margin-bottom: 25px;
    text-align: left;
}
.pricing-features p {
    margin-bottom: 10px;
    color: #555;
}
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}
.btn.basic {
    background-color: #3498db;
    color: white;
}
.btn.advanced {
    background-color: #9b59b6;
    color: white;
}
.btn.pro {
    background-color: #e74c3c;
    color: white;
}
.btn:hover {
    opacity: 0.9;
}
.feature-matrix {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 40px;
    overflow-x: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
th {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #2c3e50;
}
.feature-category {
    background-color: #f8f9fa;
    font-weight: bold;
}
.feature-name {
    padding-left: 30px !important;
}
.checkmark {
    color: #27ae60;
    font-weight: bold;
}
.cross {
    color: #e74c3c;
}
.note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 30px;
    text-align: center;
}
.faq {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}
.faq h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}
.faq-item {
    margin-bottom: 15px;
}
.faq-question {
    font-weight: bold;
    color: #3498db;
    margin-bottom: 5px;
}
.faq-answer {
    color: #555;
}