body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

.navbar-brand .logo-svg {
    transition: transform 0.3s ease-in-out;
}

.navbar-brand:hover .logo-svg {
    transform: rotate(15deg);
}

.hero-section {
    background: linear-gradient(135deg, #0d6efd, #0d6efdcc), url('https://www.transparenttextures.com/patterns/cubes.png');
    color: white;
    padding: 6rem 0;
}

.hero-section h1 {
    font-weight: 800;
}

.hero-section h1 .highlight {
    color: #ffc107;
    /* A bright highlight color */
}

.hero-section .lead {
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #212529 !important;
    /* Ensure text is dark for readability */
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: #fd7e14;
    border-color: #fd7e14;
}

.section-heading {
    font-weight: 700;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
    border-radius: 50%;
}

.testimonial-card {
    border: 0;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .08);
    border-radius: 0.75rem;
}

.testimonial-card .card-body {
    font-style: italic;
}

.testimonial-card .card-footer {
    background: none;
    border-top: 0;
    font-style: normal;
}

/* Pricing/Plan Cards from pricing.html */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    color: white;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.feature-icon-success {
    background-color: #198754;
}

.feature-icon-danger {
    background-color: #dc3545;
}
