    /* Base Styles */
        :root {
            --primary-color: #1a1a2e;
            --secondary-color: #16213e;
            --accent-color: #0f3460;
            --highlight-color: #e94560;
            --text-color: #333;
            --light-text: #f1f1f1;
            --medium-gray: #777;
            --light-gray: #f5f5f5;
            --border-radius: 8px;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #fff;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        p {
            margin-bottom: 1.5rem;
        }
        
        a {
            text-decoration: none;
            color: var(--accent-color);
            transition: var(--transition);
        }
        
        a:hover {
            color: var(--highlight-color);
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        ul {
            list-style: none;
        }
        
        /* Layout */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        section:nth-child(even) {
            background-color: var(--light-gray);
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--accent-color);
            color: white;
            border-radius: var(--border-radius);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 14px;
            text-align: center;
        }
        
        .btn:hover {
            background-color: var(--highlight-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--box-shadow);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--accent-color);
            color: var(--accent-color);
        }
        
        .btn-outline:hover {
            background-color: var(--accent-color);
            color: white;
        }
        
        /* Header */
        header {
            background-color: var(--primary-color);
            color: white;
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
        }
        
        .logo h1 {
            font-size: 1.5rem;
            margin: 0;
        }
        
        .logo h1 a {
            color: white;
        }
        
        /* Navigation */
        nav ul {
            display: flex;
            gap: 25px;
        }
        
        nav ul li a {
            color: white;
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--highlight-color);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        /* Mobile Navigation */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://mostafamedhat.com/images/Mostafa_EL_Masry.jpg') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 180px 0 100px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .social-links a {
            color: white;
            background-color: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background-color: var(--highlight-color);
            transform: translateY(-3px);
        }
        
        /* Books Section */
        .books .book-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .book {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }
        
        .book:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .book img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        
        .book figcaption {
            padding: 20px;
            font-size: 0.9rem;
            color: var(--medium-gray);
        }
        
        /* Services Section */
        .service-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .card {
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            text-align: center;
            transition: var(--transition);
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .card img {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
        }
        
        .card h3 {
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        
        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-image img {
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            width: 100%;
            height: auto;
        }
        
        .about-text h2 {
            color: var(--accent-color);
            position: relative;
            padding-bottom: 15px;
        }
        
        .about-text h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--highlight-color);
            bottom: 0;
            left: 0;
        }
        
        .contact-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        /* Expertise Section */
        .expertise ul {
            column-count: 2;
            column-gap: 40px;
        }
        
        .expertise li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
            break-inside: avoid;
        }
        
        .expertise li:before {
            content: '•';
            color: var(--highlight-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        /* Testimonials Section */
        .testimonial {
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            margin-bottom: 30px;
        }
        
        .testimonial h3 {
            color: var(--accent-color);
        }
        
        .testimonial p {
            margin-bottom: 10px;
        }
        
        .testimonial em {
            display: block;
            margin-bottom: 10px;
            font-style: normal;
            color: var(--medium-gray);
        }
        
        .testimonial strong {
            color: var(--accent-color);
        }
        
        /* Success Section */
        .success-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .success-item {
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        
        .success-item h3 {
            color: var(--accent-color);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .success-item h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background: var(--highlight-color);
            bottom: 0;
            left: 0;
        }
        
        .success-item li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        
        .success-item li:before {
            content: '•';
            color: var(--highlight-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 0;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background: var(--highlight-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-col p, .footer-col li {
            margin-bottom: 15px;
            opacity: 0.8;
        }
        
        .footer-col a {
            color: white;
            opacity: 0.8;
        }
        
        .footer-col a:hover {
            opacity: 1;
            color: var(--highlight-color);
        }
        
        .footer-buttons {
            margin-top: 20px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .footer-bottom p {
            margin-bottom: 20px;
            opacity: 0.7;
        }
        
        .footer-social-links {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .footer-social-links a {
            color: white;
            background-color: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .footer-social-links a:hover {
            background-color: var(--highlight-color);
            transform: translateY(-3px);
        }
        
        /* Contact Info */
        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--highlight-color);
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
            }
            
            .expertise ul {
                column-count: 1;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            nav ul {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .contact-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .logo h1 {
                font-size: 1.2rem;
            }
            
            .logo img {
                width: 50px;
                height: 50px;
            }
        }