/* Custom Styles */
body {
    background-color: #d1d1d1;
    font-family: 'Arial', sans-serif;
}

.container {
    background: #d1d1d1;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    margin-bottom: 50px;
}

h1 {
    color: #2c3e50;
    margin-bottom: 20px;
}

h2 {
    color: #34495e;
    margin-top: 30px;
}

.list-group-item {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
    border: none;
    background-color: #e8f4f8;
    border-radius: 5px;
}

.list-group-numbered .list-group-item {
    background-color: #fff;
    border-left: 3px solid #3498db;
}

.cta-button {
    background-color: #3498db;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}
.cta-button2 {
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

/* Navigation Bar Styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar-brand img {
    height: auto;
    max-height: 40px; /* Adjust logo height */
}

.navbar-nav .nav-link {
    font-size: 1rem;
    color: #333 !important;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #3498db !important;
}

.navbar-nav .btn {
    font-size: 1rem;
    padding: 8px 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .cta-button {
        width: 100%;
        padding: 12px 20px;
    }

    .navbar-brand img {
        max-height: 30px; /* Smaller logo for mobile */
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar-nav .btn {
        margin-top: 10px;
    }
}

/* Testimonial Section Styling */
.testimonial {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-text {
    flex: 1;
    font-size: 1.1rem;
    color: #555;
    margin-right: 15px;
}

.testimonial-image {
    max-width: 200px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* CTA Button Styling */
.cta-button {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: white;
    padding: 12px 24px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    transition: background 0.3s ease, transform 0.2s, color 0.3s;
}

.cta-button:hover {
    background: linear-gradient(45deg, #5b0ab5, #1f63e8);
    transform: translateY(-2px);
    color: #e0e0e0;
}

.cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(42, 128, 255, 0.5);
}

.cta-button i {
    margin-right: 10px;
}
