body {
    margin: 0;
    padding: 0;
    background: #121212;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
}

.hero-section {
    background: linear-gradient(135deg, #003A6B, #005EA6);
    padding: 60px 20px;
    color: #fff;
}

.hero-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 18px;
}

.pricing-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.pricing-card {
    background: #fff;
    color: #333;
    width: 260px;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.pricing-title {
    background: #003A6B;
    color: #fff;
    padding: 12px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
    margin: -20px -20px 20px;
}

.pricing-price {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin: 15px 0 20px;
    font-family: 'Times New Roman', Times, serif;
}

.pricing-features p {
    font-size: 12px;
    margin: 8px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}

.pricing-button {
    background: linear-gradient(135deg, #003A6B, #005EA6);
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.pricing-button:hover {
    background: linear-gradient(135deg, #005EA6, #003A6B);
    transform: scale(1.05);
}
