        .ppt-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .ppt-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1; 
        }
        ::-webkit-scrollbar-thumb {
            background: #cbd5e1; 
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #94a3b8; 
        }
        .contact-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        .map-container {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
        }
        .map-container iframe {
            width: 100%;
            height: 400px;
            border: 0;
            filter: grayscale(20%);
        }