:root {
    --primary-color: #4CB1E8;
    --secondary-color: #4EC3B6;
    --text-color: #232B34;
    --light-bg: #f3f4f6;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    padding-top: 6rem;
    background: linear-gradient(135deg, #e6f7fb 0%, #e2f7f4 100%);
}

.hero-section h1 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
    height: 100%;
    border: 1.5px solid #e0f3f8;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin: 1rem 0;
    color: var(--primary-color);
}

.feature-card i {
    color: var(--secondary-color) !important;
}

/* Pricing Cards */
.pricing-card {
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
    height: 100%;
    border: 1.5px solid #e0f3f8;
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pricing-card ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card ul li i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: var(--secondary-color);
}

/* Contact Section */
.contact-card {
    padding: 3rem;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
    border: 1.5px solid #e0f3f8;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding-top: 4rem;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
    
    .feature-card, .pricing-card {
        margin-bottom: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card, .pricing-card, .contact-card {
    animation: fadeIn 0.6s ease-out forwards;
}

footer.bg-dark {
    background: #232B34 !important;
}

footer h5, footer p {
    color: #fff;
} 