        .container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .section {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .section h2 {
            color: #2196F3;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e0e0e0;
        }

        .links-list {
            list-style: none;
        }

        .links-list li {
            margin-bottom: 0.8rem;
        }

        .links-list a {
            color: #555;
            text-decoration: none;
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .links-list a:before {
            content: "►";
            color: #2196F3;
            margin-right: 0.4rem;
            font-size: 0.8rem;
        }

        .links-list a:hover {
            color: #2196F3;
        }

        .year {
            color: #888;
            font-size: 0.85rem;
        }

          .header-image {
            width: 100%;
            height: auto;
            display: block;
          }