/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Navbar Styling */
.navbar-light .navbar-brand img {
    max-width: 150px;
}

.nav-link {
    font-size: 1.1rem;
    margin-right: 1rem;
    color: #333;
}

.nav-link:hover {
    color: #ff3d00;
}

.btn-outline-danger {
    border-color: #ff3d00;
    color: #ff3d00;
}

.btn-outline-danger:hover {
    background-color: #ff3d00;
    color: white;
}

.btn-outline-success {
    border-color: #28a745;
    color: #28a745;
}

.btn-outline-success:hover {
    background-color: #28a745;
    color: white;
}

/* Hero Section */
.hero {
    background-color: #f0f7fb;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero .btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.25rem;
}

.hero p {
    font-size: 1.1rem;
}

/* Testimonial Card */
.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card img {
    max-width: 50px;
}

.testimonial-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.trustpilot-card img {
    width: 100%;
    max-width: 180px;
}

.trustpilot-card p {
    font-size: 0.9rem;
    color: #777;
}

/* Comparison Section */
.comparison-section {
    background-color: #f8f9fa;
}

.comparison-section .blockquote {
    font-size: 1.5rem;
    font-weight: 500;
}

.comparison-section h4 {
    font-weight: 700;
    font-size: 1.25rem;
}

.icon-box img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-section p.lead {
    font-size: 1.1rem;
    color: #333;
}

/* Quick Reaction Section */
.quick-reaction-section {
    background-color: #fff;
}

.quick-reaction-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Container for controlling margins */
.quick-reaction-section .container {
    max-width: 1140px; /* Adjust as needed */
    padding-left: 15px;
    padding-right: 15px;
}

/* Ensure text doesn’t stretch too wide on large screens */
.icon-text {
    max-width: 900px; /* Keeps content centered and prevents stretching */
    margin: 0 auto;
}

.icon-text img {
    margin-bottom: 1rem;
}

.icon-text p.lead {
    color: #333;
    font-size: 1.1rem;
    text-align: left;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.testimonial {
    max-width: 700px;
    margin: 0 auto;
    border-top: 1px solid #eaeaea;
    padding-top: 20px;
}

.blockquote-footer img {
    margin-left: 5px;
}

/* Responsive Design - Add extra spacing for larger screens */
@media (min-width: 992px) {
    .quick-reaction-section .container {
        padding-left: 50px;
        padding-right: 50px;
    }

    .icon-text p.lead {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 1200px) {
    .quick-reaction-section .container {
        padding-left: 100px;
        padding-right: 100px;
    }
}

.footer {
    background-color: #fff;
}

.text-link {
    text-decoration: none;
    color: #42a5ff;
}

.text-link:hover {
    color: #f04860;
}

.text-fa {
    color: grey;
}

.text-fa:hover {
    color: #f04860;
}