    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    :root {
        --primary-color: #084b9e;
        --primary-light: #2a6db8;
        --primary-lighter: #4c8fd2;
        --primary-lightest: #6eb1ec;
        --secondary-color: #1e88e5;
        --accent-color: #ff6b35;
        --accent-light: #ff8a65;
        --light-bg: #f5f7fa;
        --text-dark: #263238;
        --text-light: #546e7a;
        --card-shadow: 0 4px 12px rgba(8, 75, 158, 0.1);
        --hover-shadow: 0 8px 24px rgba(8, 75, 158, 0.2);
    }

    body {
        background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
        color: var(--text-dark);
        line-height: 1.6;
    }


    /* Header */
    header {
        background: linear-gradient(135deg,
                var(--primary-color) 0%,
                var(--primary-light) 100%);
        box-shadow: 0 4px 20px rgba(8, 75, 158, 0.15);
        position: sticky;
        top: 0;
        z-index: 100;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 5%;
        max-width: 1400px;
        margin: 0 auto;
    }

    .logo {
        display: flex;
        align-items: center;
        font-weight: bold;
        font-size: 1.5rem;
        color: white;
    }

    .logo i {
        margin-right: 0.5rem;
        font-size: 1.8rem;
        background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .nav-links {
        display: flex;
        list-style: none;
    }

    .nav-links li {
        margin-left: 2rem;
    }

    .nav-links a {
        text-decoration: none;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        transition: all 0.3s;
        position: relative;
    }

    .nav-links a:after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg,
                var(--accent-color),
                var(--accent-light));
        transition: width 0.3s;
    }

    .nav-links a:hover {
        color: white;
    }

    .nav-links a:hover:after {
        width: 100%;
    }

    .account-btn {
        background: linear-gradient(135deg,
                var(--accent-color) 0%,
                var(--accent-light) 100%);
        color: white;
        border: none;
        padding: 0.7rem 1.8rem;
        border-radius: 50px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .account-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    }

    .account-btn i {
        font-size: 1rem;
    }

    /* Footer */
    footer {
        background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
        color: white;
        padding: 3rem 5%;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        max-width: 1400px;
        margin: 0 auto;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
        margin-bottom: 2rem;
    }

    .footer-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 0.6rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s;
        position: relative;
        display: inline-block;
    }

    .footer-links a:hover {
        color: white;
        transform: translateX(5px);
    }

    .social-icons {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.1) 0%,
                rgba(255, 255, 255, 0.05) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.3s;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .social-icon:hover {
        background: linear-gradient(135deg,
                var(--accent-color),
                var(--accent-light));
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    }

    .copyright {
        text-align: center;
        margin-top: 2.5rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.7);
    }


    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .hero h1 {
            font-size: 2rem;
        }

        .stats {
            flex-direction: column;
            gap: 1rem;
            max-width: 300px;
        }

        .stat-card {
            flex-direction: row;
            padding: 1rem;
            text-align: left;
            gap: 1rem;
        }

        .stat-icon {
            width: 40px;
            height: 40px;
            font-size: 1.1rem;
        }

        .stat-number {
            font-size: 1.5rem;
        }

        .stat-label {
            font-size: 0.85rem;
        }

        .about-content {
            flex-direction: column;
            gap: 2rem;
        }

        .about-features {
            grid-template-columns: 1fr;
        }

        .steps-container {
            grid-template-columns: 1fr;
        }

        .stories-grid {
            grid-template-columns: 1fr;
        }

        .categories {
            padding: 1.5rem 5%;
        }

        .section-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .category-tabs {
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .category-tab {
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
        }

        .projects-container {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .hidden-projects.show {
            grid-template-columns: 1fr;
        }

        .favorite-categories {
            padding: 1.5rem 5%;
        }

        .favorite-title {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .favorite-buttons {
            gap: 0.8rem;
        }

        .favorite-btn {
            padding: 0.6rem 1rem;
            font-size: 0.8rem;
        }

        .testimonial-section {
            padding: 2rem 5%;
        }

        .testimonial-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .testimonial-content {
            flex-direction: column;
            gap: 1.5rem;
        }

        .prayer-icon {
            width: 100px;
            height: 100px;
            font-size: 2rem;
        }

        .testimonial-text {
            font-size: 0.9rem;
        }

        .testimonial-btn {
            padding: 0.6rem 1.5rem;
            font-size: 0.85rem;
        }

        .cta-section {
            padding: 3rem 5%;
        }

        .cta-title {
            font-size: 1.8rem;
        }

        .cta-subtitle {
            font-size: 1rem;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .footer-content {
            flex-direction: column;
        }
    }

    @media (min-width: 769px) and (max-width: 1200px) {
        .projects-container {
            grid-template-columns: repeat(2, 1fr);
        }

        .hidden-projects.show {
            grid-template-columns: repeat(2, 1fr);
        }
    }