
        :root {
            --primary-blue: #0056A3;
            --secondary-white: #FFFFFF;
            --accent-green: #28A745;
        }
        
        .section-padding {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        
        .hero-bg {
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8)), url('https://images.pexels.com/photos/4021775/pexels-photo-4021775.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
        }
        
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
        }
        
        .btn-success {
            background-color: var(--accent-green);
            border-color: var(--accent-green);
        }
        
        .text-primary {
            color: var(--primary-blue) !important;
        }
        
        .bg-primary {
            background-color: var(--primary-blue) !important;
        }
        
        .service-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(40, 167, 69, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        
        .counter-item {
            padding: 2rem 1rem;
        }
        
        .counter-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary-blue);
        }
        
        .review-card {
            border-left: 4px solid var(--accent-green);
        }
        
        .accordion-button:not(.collapsed) {
            background-color: rgba(0, 86, 163, 0.1);
            color: var(--primary-blue);
        }
        
        footer a {
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer a:hover {
            color: var(--accent-green) !important;
        }


        .blog-content img{
            width: 100%;
        }

        .blog-content h4 a{
            color: #000000;
            
        }

        .form-box {
    width: 100%;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-box h2 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
}

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 12px;
}

label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.checkbox-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-row input {
    width: auto;
    margin-right: 8px;
}

button {
    width: 100%;
    padding: 10px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #45a049;
}

#message {
    display: none;
    margin-top: 15px;
    padding: 10px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 5px;
    text-align: center;
}

.navbar-brand img{
    width: 200px;
}