      /* This style block contains general styles for section links. You can move these to a dedicated CSS file if you prefer. */
        .section-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 2rem;
        }
        .section-links-item {
            background-color: var(--white);
            border: 1px solid var(--border-light);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
            text-align: center;
        }
        .section-links-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .section-links-item a {
            display: block;
            padding: 1.5rem;
            text-decoration: none;
            color: inherit;
        }
        .section-links-item .link-text {
            font-size: 1.3em;
            font-weight: bold;
            color: var(--ocean-dark);
        }