/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background: #fff;
    padding: 1rem 2rem;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

nav a {
    margin: 0 15px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a.active,
nav a:hover {
    color: #0072ff;
}

/* Main Content */
main {
    padding: 2rem;
}

.pricing-plan {
    text-align: center;
}

.pricing-plan h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Plan Container */
.plan-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap; /* Allows cards to wrap on smaller screens */
}

/* Plan Card Styles */
.plan-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.plan-card h2 {
    font-size: 1.8rem;
    color: #0072ff;
    margin-bottom: 0.5rem;
}

.plan-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-card .price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.plan-card ul li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.tick, .cross {
    margin-right: 10px;
    font-size: 1.2rem;
}

.tick {
    color: #28a745;
}

.cross {
    color: #dc3545;
}

/* Premium Plan Highlight */
.plan-card.premium {
    border: 2px solid #0072ff;
}

.plan-card.premium h2 {
    color: #fff;
}

.plan-card.premium .price {
    color: #fff;
}

.plan-card.premium {
    background: linear-gradient(45deg, #0072ff, #00c6ff);
    color: #fff;
}

.plan-card.premium ul li {
    color: #f1f1f1;
}

/* Button Styles */
.plan-card button {
    background-color: #0072ff;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: auto; /* Pushes button to the bottom */
}

.plan-card button:hover {
    background-color: #005bb5;
}

.plan-card.premium button {
    background-color: #fff;
    color: #0072ff;
}

.plan-card.premium button:hover {
    background-color: #eee;
}

/* Footer */
footer {
    background-color: #fff;
    padding: 1.5rem 2rem;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

footer a {
    color: #555;
    text-decoration: none;
    margin-right: 1rem;
}

footer .social-icons img {
    height: 24px;
    margin-left: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

footer .social-icons img:hover {
    opacity: 1;
}
