* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f8f9fa;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background:#007bff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    height: 70px;
    padding: 10px 20px;
}

.logo h1 {
    color: white;
    font-size: 1.8rem;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pricing-section {
    padding: 100px 20px 50px;
    text-align: center;
}

.pricing-section h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-desc {
    color: #666;
    margin-bottom: 3rem;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.premium {
    border: 2px solid #007bff;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #007bff;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.card-header {
    margin-bottom: 30px;
}

.card-header h2 {
    color: #333;
    margin-bottom: 15px;
}

.price {
    color: #007bff;
}

.amount {
    font-size: 2.5rem;
    font-weight: bold;
}

.period {
    font-size: 1rem;
    color: #666;
}

.features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.features li {
    margin: 15px 0;
    color: #444;
}

.features i {
    margin-right: 10px;
}

.fa-check {
    color: #28a745;
}

.fa-times {
    color: #dc3545;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background:#007bff;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #007bff;
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 350px;
        margin-bottom: 30px;
    }

    .logo {
        height: 60px;
    }
    
    .logo img {
        max-width: 180px;
    }
}