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

        body {
            font-family: 'Rubik', sans-serif;
            background: linear-gradient(180deg, #58a0ff 0%, #e8f2ff 100%);
            min-height: 100vh;
            color: #111;
        }

        .handwriting {
            font-family: 'Patrick Hand', cursive;
        }

        /* Landing Page Sections */
        .section {
            padding: 80px 15px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-section {
            padding-top: 150px;
            padding-bottom: 100px;
            min-height: 70vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            max-width: 600px;
            /* background: rgba(255, 255, 255, 0.7); */
            padding: 40px;
            border-radius: 20px;
            /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
            backdrop-filter: blur(10px);
            align-items: center;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #1d2a78;
        }

        .hero-content h1 svg {
            width: 30px;
            height: 30px;
            fill: #fdbe32;
            filter: drop-shadow(0 0 1px #fdbe32);
        }

        .hero-content p {
            font-size: 1rem;
            line-height: 1.5;
            margin-top: 10px;
            color: #222a40dd;
        }

        .hero-content .btn-dashboard {
            display: inline-block;
            margin-top: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            background: white;
            border-radius: 14px;
            padding: 10px 20px;
            color: #333;
            text-decoration: none;
            border: 2px solid #aaa;
            box-shadow: 1px 2px 5px rgb(0 0 0 / 0.1);
            transition: all 0.3s ease;
        }

        .hero-content .btn-dashboard:hover {
            border-color: #58a0ff;
            box-shadow: 0 0 10px #58a0ffaa;
            color: #1d2a78;
        }

        /* Features Section */
        .features-section {
            background: #f0f7ff;
            padding-top: 50px;
            padding-bottom: 80px;
        }

        .features-section h2 {
            font-family: 'Patrick Hand', cursive;
            font-size: 2.5rem;
            color: #1d2a78;
            margin-bottom: 50px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
        }

        .feature-card .icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #e4edff;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .feature-card .icon svg {
            width: 28px;
            height: 28px;
            stroke: #1d2a78;
            stroke-width: 1.5;
            fill: none;
        }

        .feature-card h3 {
            font-size: 1.2rem;
            color: #1d2a78;
            margin-bottom: 10px;
        }

        .feature-card p {
            font-size: 0.9rem;
            color: #555;
            line-height: 1.4;
        }

        /* Footer section */
        footer {
            padding: 40px 15px;
            text-align: center;
            color: #4a659cdd;
            font-family: 'Patrick Hand', cursive;
            font-size: 1.5rem;
        }
        
        /* Add to your CSS */
        .feature-card svg {
        width: 48px;
        height: 48px;
        display: block;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        }

        .feature-card {
        min-height: 250px; /* Adjust as needed */
        }

        /* Responsive design adjustments */
        /* @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 0.9rem;
            }

            .features-section h2 {
                font-size: 2rem;
            }
        } */

        @media (max-width: 992px) {
    .hero-content {
        padding: 30px 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .btn-dashboard {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .features-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 100px 15px 60px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        text-align: center;
    }

    .hero-content p {
        font-size: 0.85rem;
        text-align: center;
    }

    .btn-dashboard {
        width: 100%;
        text-align: center;
        padding: 10px;
        font-size: 0.9rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    footer {
        font-size: 1.2rem;
    }
}