/* Global Styles */
:root {
    --primary-color: #0071bc;
    --secondary-color: #4caf50;
    --accent-color: #ff9800;
    --dark-color: #333;
    --light-color: #f4f4f4;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --max-width: 1300px;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: #005fa3;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #005fa3;
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    border: none;
}

.btn-secondary:hover {
    background-color: #3e8e41;
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.section-title {
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: #f5f9ff;
}

.testimonial-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}

.testimonial-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    opacity: 0.2;
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author h5 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #777;
}

/* Demo Request Section */
.demo-request-section {
    padding: 5rem 0;
    background-color: #e9f2ff;
}

.demo-benefits {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.demo-benefit {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.demo-benefit i {
    color: var(--success-color);
    font-size: 1.25rem;
    margin-right: 1rem;
}

.demo-benefit span {
    font-size: 1.1rem;
}

.demo-form-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: white;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
    background-color: #f8f9fa;
    color: var(--dark-color);
}

.accordion-button:not(.collapsed) {
    background-color: #e7f0ff;
    color: var(--primary-color);
}

.accordion-body {
    padding: 1.25rem;
    background-color: white;
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: #1c2331;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 60px;
}

.footer-text {
    color: #bbb;
    margin-bottom: 1.5rem;
}

.footer-links h5 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #bbb;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: none;
}

.footer-contact p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 1rem;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2a3546;
    color: white;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #343f56;
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: #bbb;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-links {
        margin-bottom: 2rem;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
    }
    
    .testimonial-card, .demo-form-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .demo-benefit span {
        font-size: 1rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
}