/* Color Variables */
:root {
    --primary-blue: #1e88e5;
    --secondary-blue: #0d47a1;
    --light-blue: #64b5f6;
    --highlight-blue: #29b6f6;
    --background-color: #f8f9fa;
    --text-color: #212529;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Navbar Styling */
.navbar {
    padding: 15px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-icon {
    color: var(--primary-blue);
    font-size: 2rem;
    line-height: 1;
}

.logo-text {
    line-height: 1.1;
    font-size: 0.9rem;
}

.btn-outline-blue {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    border-radius: 20px;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s;
}

.btn-outline-blue:hover {
    background-color: var(--primary-blue);
    color: white;
}

.btn-blue {
    background-color: var(--primary-blue);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 24px;
    transition: all 0.3s;
    border: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.3);
}

/* Nav button should be slightly smaller */
.navbar .btn-blue {
    font-size: 0.8rem;
    padding: 8px 16px;
}

.btn-blue:hover {
    background-color: var(--secondary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(14, 71, 161, 0.35);
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-color: white;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.background-words {
    position: absolute;
    z-index: 0;
    opacity: 0.05;
    width: 100%;
    height: 100%;
    background-image: url('https://placehold.co/1200x800/a64dff/white?text=Word+Cloud+Background');
    background-size: cover;
    background-position: center;
}

.hero-section h1 {
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: none;
}

.text-blue {
    color: var(--primary-blue);
}

/* Process Section */
.process-section {
    background-color: #f0f7ff;
    padding: 80px 0;
}

.process-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 136, 229, 0.15);
}

.process-icon {
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    color: white;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 1.8rem;
    position: relative;
}

.process-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid #c5e1fb;
    z-index: -1;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: white;
}

.feature-badge {
    display: inline-block;
    background-color: var(--primary-blue);
    color: white;
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 15px;
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-image img {
    transition: transform 0.3s;
}

.feature-image:hover img {
    transform: scale(1.02);
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.accordion-button {
    font-weight: 600;
    padding: 20px 25px;
    background-color: white;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    color: var(--primary-blue);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--light-blue);
}

.accordion-button::after {
    background-color: var(--light-blue);
    border-radius: 50%;
    background-position: center;
    background-size: 12px;
    width: 25px;
    height: 25px;
}

.accordion-body {
    padding: 20px 25px;
    color: #555;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.cta-section .btn-blue {
    background-color: white;
    color: var(--primary-blue);
}

.cta-section .btn-blue:hover {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: white;
    color: #666;
    border-top: 1px solid #eee;
}

.footer a {
    color: #666;
}

.footer a:hover {
    color: var(--primary-blue);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 1.8rem;
    }
    
    .process-card {
        margin-bottom: 20px;
    }
    
    .feature-image {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}