/* Custom styles for BetterAtTech */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Brand colors */
.bg-brand-blue {
    background-color: #007BFF;
}

.text-brand-blue {
    color: #007BFF;
}

.text-brand-gray {
    color: #6C757D;
}

/* Logo */
img.logo {
    max-width: 200px;
    height: auto;
}

/* Pricing cards */
.pricing-card {
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 2px solid #007BFF;
    position: relative;
}

.pricing-card.popular::before {
    content: "Most Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007BFF;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Contact form */
.contact-form input,
.contact-form textarea {
    border-radius: 4px;
}

.contact-form textarea {
    resize: vertical;
}

/* CTA button */
.cta-btn {
    background-color: #007BFF;
    border-color: #007BFF;
}

.cta-btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Testimonials */
.testimonial-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #f8f9fa;
    padding: 2rem 0;
}