/* General Body and Typography */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Custom Containers & Spacing */
.container {
    max-width: 1200px;
}
.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* Buttons */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: background-color 0.3s, transform 0.3s;
}
.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
    transform: translateY(-2px);
}
.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

/* Navigation Bar */
.navbar-brand img {
    height: 40px;
}
.nav-link {
    font-weight: 500;
    color: #333 !important;
    transition: color 0.3s;
}
.nav-link:hover {
    color: #007bff !important;
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('images/hero-bg.jpg') no-repeat center center/cover;
}
#hero h1 {
    color: #212529;
}

/* Features Section */
.feature-box {
    border: 1px solid #e9ecef;
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.icon-circle {
    display: inline-block;
    width: 60px;
    height: 60px;
    font-size: 2rem;
    line-height: 60px;
    background-color: #e9ecef;
    border-radius: 50%;
}

/* AI Feature Section */
#ai-feature h2 {
    color: #212529;
}

/* Pricing Section */
.pricing-card {
    max-width: 400px;
}
.check-icon {
    color: #28a745;
    font-weight: bold;
    margin-right: 8px;
}

/* Contact Section */
.contact-card {
    border: 1px solid #dee2e6;
}
.contact-card a {
    color: #007bff;
}
.contact-card a:hover {
    text-decoration: underline !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }
}