/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
}

header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Features section */
.features {
    padding: 50px 0;
    background-color: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.feature {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Pricing section */
.pricing {
    padding: 50px 0;
    background-color: #f0f4f8;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.plans {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.plan {
    background: white;
    border-radius: 12px;
    padding: 30px;
    width: 280px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.plan h3 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.8rem;
}

.price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #6a11cb;
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    opacity: 0.7;
}

.plan ul {
    list-style: none;
    text-align: left;
    margin: 25px 0;
}

.plan ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
}

.plan ul li:before {
    content: "✓";
    color: #28a745;
    margin-right: 10px;
    font-weight: bold;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-list {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        width: 80%;
    }
    
    .plans {
        flex-direction: column;
        align-items: center;
    }
    
    .plan {
        width: 80%;
    }
    
    header h1 {
        font-size: 2.2rem;
    }
}