﻿* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #f5f8f5;
            font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
            color: #1a2e2a;
            padding: 2rem 1.5rem;
            line-height: 1.6;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .links-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .links-header h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #054226;
            letter-spacing: -0.02em;
        }

        .links-header p {
            color: #4a7560;
            font-size: 1.05rem;
            margin-top: 0.3rem;
        }

        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 1.5rem;
        }

        .link-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            text-align: center;
            border: 1px solid #dce8e2;
            transition: all 0.25s ease;
            text-decoration: none;
            color: #1a2e2a;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
            border-top: 4px solid #cde0d6;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 120px;
        }

        .link-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 28px rgba(5, 66, 38, 0.08);
            border-color: #b0caba;
            border-top-color: #054226;
            background: #fafdfb;
        }

        .link-card .title {
            font-weight: 600;
            font-size: 1.2rem;
            color: #054226;
            margin-bottom: 0.3rem;
        }

        .link-card .desc {
            font-size: 0.88rem;
            color: #4a7560;
        }

        .link-card .arrow {
            display: inline-block;
            margin-top: 0.6rem;
            color: #054226;
            font-weight: 500;
            font-size: 0.9rem;
            border-bottom: 1px dotted #054226;
            transition: 0.2s;
        }

        .link-card:hover .arrow {
            border-bottom-style: solid;
        }

        @media (max-width: 768px) {
            body {
                padding: 1.5rem 0.8rem;
            }

            .links-header h2 {
                font-size: 1.6rem;
            }

            .links-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }

            .link-card {
                min-height: 100px;
                padding: 1.2rem 1rem;
            }
        }

        @media (max-width: 480px) {
            .links-grid {
                grid-template-columns: 1fr;
            }

            .link-card {
                min-height: 80px;
                padding: 1rem;
            }

            .links-header h2 {
                font-size: 1.3rem;
            }
        }