
        :root {
            --primary-color: #DC2626;
            --dark-color: #1F2937;
            --gray-color: #6B7280;
            --light-gray: #F3F4F6;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Cairo', sans-serif;
            color: var(--dark-color);
            overflow-x: hidden;
            background: #FAFAFA;
        }
        
        /* Navbar */
        .navbar {
            background: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color) !important;
        }
        
        .navbar-brand i {
            margin-left: 8px;
        }
        
        .nav-link {
            color: var(--dark-color) !important;
            font-weight: 600;
            margin: 0 15px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-color) !important;
        }
        
        .btn-cta {
            background: var(--primary-color);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 700;
            border: none;
            transition: all 0.3s ease;
        }
        
        .btn-cta:hover {
            background: #B91C1C;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(31, 41, 55, 0.85), rgba(31, 41, 55, 0.85)),
                        url('https://images.unsplash.com/photo-1486496146582-9ffcd0b2b2b7?w=1920&h=500&fit=crop') center/cover no-repeat;
            padding: 120px 0 100px;
            color: white;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .page-header p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        .breadcrumb {
            background: transparent;
            justify-content: center;
            margin: 0;
            padding: 0;
        }
        
        .breadcrumb-item {
            color: rgba(255,255,255,0.8);
            font-size: 1.1rem;
        }
        
        .breadcrumb-item.active {
            color: white;
        }
        
        .breadcrumb-item a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .breadcrumb-item a:hover {
            color: var(--primary-color);
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255,255,255,0.6);
        }
        
        /* Our Story Section */
        .our-story-section {
            padding: 80px 0;
            background: white;
        }
        
        .story-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            height: 100%;
        }
        
        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 400px;
            transition: transform 0.5s ease;
        }
        
        .story-image:hover img {
            transform: scale(1.05);
        }
        
        .story-content h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--dark-color);
            margin-bottom: 1.5rem;
        }
        
        .story-content h2 i {
            color: var(--primary-color);
            margin-left: 15px;
        }
        
        .story-content p {
            font-size: 1.15rem;
            line-height: 2;
            color: var(--gray-color);
            text-align: justify;
            margin-bottom: 1.5rem;
        }
        
        .story-highlight {
            background: var(--light-gray);
            padding: 25px;
            border-radius: 15px;
            border-right: 5px solid var(--primary-color);
            margin-top: 2rem;
        }
        
        .story-highlight p {
            margin: 0;
            font-weight: 600;
            color: var(--dark-color);
            font-style: italic;
        }
        
        /* Why Choose Us Section */
        .why-choose-section {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3.5rem;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }
        
        .section-title p {
            font-size: 1.15rem;
            color: var(--gray-color);
        }
        
        .feature-card {
            background: white;
            padding: 50px 35px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-color), #F59E0B);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 30px;
            transition: all 0.4s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: rotateY(360deg);
            background: linear-gradient(135deg, #F59E0B, var(--primary-color));
        }
        
        .feature-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-color);
        }
        
        .feature-card p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--gray-color);
        }
        
        /* Statistics Section */
        .statistics-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--dark-color), #374151);
            color: white;
        }
        
        .stat-item {
            text-align: center;
            padding: 30px;
        }
        
        .stat-icon {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            display: block;
        }
        
        .stat-label {
            font-size: 1.3rem;
            opacity: 0.9;
            font-weight: 600;
        }
        
        /* Contact Info Section */
        .contact-info-section {
            padding: 80px 0;
            background: white;
        }
        
        .contact-card {
            background: var(--light-gray);
            padding: 50px 35px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            height: 100%;
        }
        
        .contact-card:hover {
            background: white;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transform: translateY(-10px);
        }
        
        .contact-icon {
            width: 90px;
            height: 90px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }
        
        .contact-card:hover .contact-icon {
            background: var(--dark-color);
            transform: scale(1.1);
        }
        
        .contact-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .contact-card p {
            font-size: 1.15rem;
            color: var(--gray-color);
            margin: 0;
        }
        
        .contact-card a {
            color: var(--gray-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-card a:hover {
            color: var(--primary-color);
        }
        
        /* Contact Form Section */
        .contact-form-section {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .form-container {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }
        
        .form-container h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark-color);
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .form-container p {
            font-size: 1.1rem;
            color: var(--gray-color);
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 10px;
            display: block;
        }
        
        .form-control {
            border: 2px solid #E5E7EB;
            border-radius: 10px;
            padding: 15px 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: 'Cairo', sans-serif;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
            outline: none;
        }
        
        .form-control.error {
            border-color: #EF4444;
        }
        
        .error-message {
            color: #EF4444;
            font-size: 0.9rem;
            margin-top: 8px;
            display: none;
        }
        
        .error-message.show {
            display: block;
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }
        
        .btn-submit {
            background: var(--primary-color);
            color: white;
            padding: 18px 60px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            border: none;
            transition: all 0.3s ease;
            cursor: pointer;
            width: 100%;
        }
        
        .btn-submit:hover {
            background: #B91C1C;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
        }
        
        .btn-submit:disabled {
            background: var(--gray-color);
            cursor: not-allowed;
            transform: none;
        }
        
        .success-message {
            background: #10B981;
            color: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 20px;
            display: none;
        }
        
        .success-message.show {
            display: block;
            animation: slideDown 0.5s ease;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Map Section */
        .map-section {
            padding: 0 0 80px 0;
            background: var(--light-gray);
        }
        
        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            height: 450px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Footer */
        footer {
            background: var(--dark-color);
            color: white;
            padding: 40px 0 20px;
            margin-top: 0;
        }
        
        .footer-brand {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .social-icons {
            margin: 20px 0;
        }
        
        .social-icons a {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 8px;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--primary-color);
            transform: translateY(-5px);
        }
        
        .footer-divider {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin: 30px 0 20px;
        }
        
        .copyright {
            text-align: center;
            opacity: 0.8;
            font-size: 0.95rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .page-header p {
                font-size: 1.1rem;
            }
            
            .story-content h2 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .form-container {
                padding: 30px 20px;
            }
            
            .story-image img {
                min-height: 300px;
            }
        }
    