:root {
            --primary-color: #2a6ebb;
            --secondary-color: #ffcc00;
            --dark-color: #1a365d;
            --light-color: #f8f9fa;
            --accent-color: #e63946;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #fff;
        }
        h1, h2, h3, h4, h5 {
            color: var(--dark-color);
            font-weight: 700;
        }
        .navbar-brand {
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
        }
        .navbar-nav .nav-link {
            font-weight: 600;
            padding: 0.5rem 1rem;
            transition: all 0.3s;
        }
        .navbar-nav .nav-link:hover {
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(42, 110, 187, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white;
            padding: 8rem 0;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
        }
        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: var(--secondary-color);
            color: var(--dark-color);
            transform: scale(1.05);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary-color);
        }
        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        .icon-box {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            transition: all 0.3s;
        }
        .icon-box:hover {
            background: var(--secondary-color);
            color: var(--dark-color);
            transform: rotate(15deg);
        }
        .testimonial-item {
            background: var(--light-color);
            padding: 2rem;
            border-radius: 15px;
            border-left: 5px solid var(--primary-color);
        }
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--secondary-color);
        }
        .friendlink {
            background-color: #f1f8ff;
            padding: 4rem 0;
        }
        .flink {
            display: inline-block;
            margin: 0.5rem 1rem;
            padding: 0.5rem 1.5rem;
            background: white;
            border-radius: 30px;
            color: var(--primary-color);
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            text-decoration: none;
        }
        .flink:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        .contact-form input, .contact-form textarea {
            border-radius: 10px;
            border: 1px solid #ddd;
            padding: 0.75rem;
            margin-bottom: 1.5rem;
        }
        .contact-form input:focus, .contact-form textarea:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(42, 110, 187, 0.25);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .section-title::after {
                width: 60px;
            }
        }
