@charset "UTF-8";
/* CSS Document */

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

          /* Main Content */
        .main-content {
            background-color: white;
            padding: 40px 0;
        }

        .intro-section {
            margin-bottom: 40px;
        }

        .intro-section p {
            font-size: 18px;
            color: #666;
            margin-bottom: 15px;
        }

        /* Services Grid */
        .services-section {
            background-color: #f8f8f8;
            padding: 60px 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .service-card {
            background-color: #333;
            color: white;
            padding: 30px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s;
            cursor: pointer;
            height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            text-decoration: none;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1;
            transition: background 0.3s;
        }
        
        .service-card:hover::before {
            background: rgba(0, 0, 0, 0.7);
        }
        
        .service-card h3 {
            position: relative;
            z-index: 2;
            color: white;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-card h3 {
            font-size: 22px;
            margin-bottom: 12px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .service-card p {
            font-size: 14px;
            line-height: 1.4;
            color: white;
            text-shadow: 2px 2px 6px rgba(0,0,0,1);
            margin: 0;
            font-weight: 500;
            position: relative;
            z-index: 2;
        }

        /* Service card specific backgrounds */
        .service-card:nth-child(1) {
            background-image: url('https://images.unsplash.com/photo-1586953208448-b95a79798f07?w=400&h=300&fit=crop');
        }
        
        .service-card:nth-child(2) {
            background-image: url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=400&h=300&fit=crop');
        }
        
        .service-card:nth-child(3) {
            background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=400&h=300&fit=crop');
        }
        
        .service-card:nth-child(4) {
            background-image: url('https://images.unsplash.com/photo-1596526131083-e8c633c948d2?w=400&h=300&fit=crop');
        }
        
        .service-card:nth-child(5) {
            background-image: url('https://images.unsplash.com/photo-1533750516457-a7f992034fec?w=400&h=300&fit=crop');
        }
        
        .service-card:nth-child(6) {
            background-image: url('https://images.unsplash.com/photo-1611262588024-d12430b98920?w=400&h=300&fit=crop');
        }
        
        .service-card:nth-child(7) {
            background-image: url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?w=400&h=300&fit=crop');
        }
        
        .service-card:nth-child(8) {
            background-image: url('https://images.unsplash.com/photo-1561070791-2526d30994b5?w=400&h=300&fit=crop');
        }
        
        .service-card:nth-child(9) {
            background-image: url('https://images.unsplash.com/photo-1505373877841-8d25f7d46678?w=400&h=300&fit=crop');
        }

        /* Resources Section */
        .resources-section {
            background-color: #e0e7eb;
            padding: 60px 0;
        }

        .resources-section h2 {
            text-align: center;
            font-size: 32px;
            color: #333;
            margin-bottom: 40px;
            font-weight: normal;
        }

        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1.5fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .resource-btn {
            background-color: #1E3A5F;
            color: white;
            padding: 20px;
            text-align: center;
            text-decoration: none;
            font-size: 16px;
            border: none;
            transition: background-color 0.3s;
        }

        .resource-btn:hover {
            background-color: #2a4a70;
			color: white;
        }
.resource-btn a:visited, p a:active{
            color:antiquewhite;
        }

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

        .faq-section h2 {
            color: #0C5449;
            font-size: 32px;
            margin-bottom: 30px;
        }

        .accordion {
            margin-bottom: 20px;
        }

        .accordion-header {
            background-color: #f8f8f8;
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid #ddd;
        }

        .accordion-header:hover {
            background-color: #f0f0f0;
        }

        .accordion-content {
            padding: 20px;
            background-color: white;
            border: 1px solid #ddd;
            border-top: none;
            display: none;
        }

        .accordion-content.active {
            display: block;
        }

        .accordion-arrow {
            transition: transform 0.3s;
        }

        .accordion-arrow.active {
            transform: rotate(180deg);
        }

       
        /* Utility Classes */
        .text-primary {
            color: #0C5449;
        }

        .text-info {
            color: #0C5449;
        }

        .btn-primary {
            background-color: #AB0520;
            color: white;
            padding: 12px 24px;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background-color: #8B0420;
        }

        .contact-cta {
            text-align: center;
            margin: 40px 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
          
            .services-grid {
                grid-template-columns: 1fr;
            }
         
        }