 body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(90deg, #053231 0%, #ffe5f3 100%);
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem;
    background: linear-gradient(90deg, #11178e 0%, #cafffc 100%);
    position: relative;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.logo {
    position: absolute; /* Add this */
    left: 2rem; /* Add this */
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    justify-content: center;
    width: 100%;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    text-decoration: none;
    color: #ff690b;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.3rem;
}

.nav-links a:hover {
    color: #ff8cb8;
}

/* Navbar Mobile Style */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .logo {
        position: static; /* Remove absolute positioning */
        margin-bottom: 1rem;
    }

    .logo img {
        height: 70px; /* Slightly smaller logo for mobile */
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        color: #ff88c7;
    }
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.pricing-header {
    text-align: center;
    color: #fff;
    margin-bottom: 80px;
}

.pricing-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #ff8cb8 0%, #ff690b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    padding: 2rem;
    margin-top: 60px;
}

.pricing-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
}

.pricing-card.featured {
    border: 2px solid #ff690b;
    border-image: linear-gradient(90deg, #ff8cb8, #ff690b) 1;
    background: rgba(255, 255, 255, .08);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #ff8cb8, #ff690b);
    border-radius: 24px;
    pointer-events: none;
}

.plan-name {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-description {
    color: #ccc;
    margin-bottom: 32px;
    line-height: 1.5;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 32px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    color: #49ff8f;
    margin-right: 4px;
    font-weight: 600;
}

.price-period {
    font-size: 1rem;
    color: #ddd;
    margin-left: 8px;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    padding: 12px 0;
    display: flex;
    color: #ddd;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    align-items: center;
}

.features-list li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(90deg, #ff8cb8 0%, #ff690b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 16px;
}

.check-icon::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.cta-button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-secondary {
    background: rgba(255, 181, 244, 0.328);
    color: rgb(255, 165, 244);
    border: 1px solid rgba(255, 255, 255, .2);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, .2);
    border-color: rgba(255, 255, 255, .3);
    transform: translateY(-2px);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 19px;
    background: #0c0b0b;
    color: #fff;
    text-align: center;
    padding: 1em;
}

.footer-left {
    color: linear-gradient(90deg, #d8d8d8 0%, #ffffff 100%);
    font-size: .4em;
    max-width: 140px;
}

.footer-center {
    align-items: right;
}

#footer-date-time {
    color: #ff3c3c;
    font-size: .4em;
}

.left-footer {
    margin-bottom: 15px;
    margin-top: 10px;
}

.left-footer a {
    font-size: .4em;
    font-style: none;
    color: #bdbdbd;
    text-decoration: none;
    margin-left: 10px;
}