* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #0F1419;
    color: #FFFFFF;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #1C2526;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    color: #A7D707;
    font-weight: bold;
}

nav a {
    color: #FFFFFF;
    text-decoration: none;
    margin-left: 20px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #A7D707;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    background-color: #1C2526;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #A7D707;
}

.hero p {
    font-size: 1.1rem;
    color: #B0B0B0;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 40px 0;
    text-align: center;
}

.contact h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #A7D707;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.call-btn {
    background-color: #A7D707;
    color: #1C2526;
}

.call-btn:hover {
    background-color: #8BB606;
}

.whatsapp-btn {
    background-color: #25D366;
    color: #FFFFFF;
}

.whatsapp-btn:hover {
    background-color: #20B858;
}

.email-btn {
    background-color: #FFFFFF;
    color: #1C2526;
}

.email-btn:hover {
    background-color: #E0E0E0;
}

/* Pricing Section */
.pricing {
    padding: 60px 0;
}

.pricing h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #A7D707;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.plan-card {
    background-color: #1C2526;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #2A3439;
    position: relative;
    transition: border-color 0.3s ease;
}

.plan-card:hover {
    border-color: #A7D707;
}

/* Starter Plan - Less Vibrant */
.plan-card.starter {
    background-color: #171D21;
    color: #D0D0D0;
}

.plan-card.starter .price {
    color: #8BB606; /* Slightly muted green */
}

.plan-card.starter ul li {
    color: #D0D0D0;
}

/* Recommended and Best Deal Plans - Subtle Highlight */
.plan-card.recommended,
.plan-card.best-deal {
    background-color: #222B2F; /* Slightly lighter to stand out */
}

/* Badge Styling */
.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #A7D707;
    color: #1C2526;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 12px;
}

.plan-card h4 {
    font-size: 1.6rem;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.plan-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: #A7D707;
    margin-bottom: 10px;
}

.plan-card .price span {
    font-size: 1rem;
    color: #B0B0B0;
}

.plan-card .description {
    font-size: 0.9rem;
    color: #B0B0B0;
    margin-bottom: 20px;
}

.plan-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.plan-card ul li {
    font-size: 1rem;
    color: #FFFFFF;
    margin: 8px 0;
}

.plan-card .plan-btn {
    background-color: #A7D707;
    color: #1C2526;
    display: inline-block;
}

.plan-card .plan-btn:hover {
    background-color: #8BB606;
}

/* Footer */
footer {
    background-color: #1C2526;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #B0B0B0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 15px;
    }

    nav a {
        margin: 0 10px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .pricing h3 {
        font-size: 1.6rem;
    }
}

footer {
    background: #1a1a1a;
	font-family: 'Segoe UI', Arial, sans-serif;
    color: #e0e0e0;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    font-size: 0.85em;
    position: fixed;
    bottom: 0;
    left: 0;
}

/* Adjusted footer elements */
footer h1.footer {
    font-size: 0.9em;
    margin: 0;
    opacity: 0.9;
}

footer h2.footer2 {
    font-size: .8em;
    margin: 5px 0 0;
    opacity: 0.8;
}

.footertext {
    color: #ffcf00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footertext:hover {
    color: #a7d707;
    
}

/* Mobile Responsiveness for Footer */
@media (max-width: 768px) {
    footer {
        padding: 8px 0;
    }
    footer h1.footer {
        font-size: 0.85em;
    }
    footer h2.footer2 {
        font-size: 0.75em;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 5px 0;
    }
    footer h1.footer {
        font-size: .8em;
    }
    footer h2.footer2 {
        font-size: 0.7em;
    }
}