.gradient-bg {
            background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
        }
        .timeline-item:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 7px;
            top: 24px;
            height: calc(100% - 24px);
            width: 2px;
            background-color: #3b82f6;
        }
        .emoji-title {
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }
        .section-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .section-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .quote {
            position: relative;
            padding-left: 1.5rem;
            font-style: italic;
            color: #4b5563;
        }
        .quote::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background-color: #3b82f6;
            border-radius: 4px;
        }