 .blue-bg {
            color: #ffffff;
            background: linear-gradient(135deg, #1b4e9b, #2563eb);
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .bg h1 {
            font-size: 48px;
            font-weight: 400;
            width: 50%;
        }

        .btn {
            display: inline-block;
            outline: none;
            text-align: center;
            text-decoration: none;
            vertical-align: middle;
            border-radius: 4px;
            transition: all 0.2s ease;
        }

        .btn-main {
            color: #ffffff;
            font-size: 18px;
            padding: 10px 20px;
            border: 1px solid rgba(255,255,255,0.5);
        }

        .btn-main:hover {
            background: #e31e24;	
            border: 1px solid #e31e24;
        }

        .gallery-section {
            margin: 75px 0;
        }

        .year-section {
            margin-bottom: 60px;
        }

        .year-title {
            font-size: 36px;
            font-weight: 400;
            color: #1b4e9b;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #dedede;
        }

        .photo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .photo-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #dedede;
            transition: all 0.2s ease;
            background: #fff;
			object-fit:cover;
            -webkit-box-shadow: 0px 0px 0px 0px rgba(222,222,222,1);
               -moz-box-shadow: 0px 0px 0px 0px rgba(222,222,222,1);
                    box-shadow: 0px 0px 0px 0px rgba(222,222,222,1);
        }

        .photo-item:hover {
            transform: translateY(-5px);
            box-shadow: 0px 10px 30px 0px rgba(222,222,222,0.8);
        }

        .photo-item img {
            width: 100%;
            height: 210px;
            object-fit: cover;
            transition: all 0.2s ease;
        }

        .photo-item:hover img {
            transform: scale(1.05);
        }

        .photo-caption {
            padding: 15px;
            font-size: 14px;
            color: #666;
            line-height: 1.4;
        }

        .archive-links {
            background-color: #f2f2f2;
            border: 1px solid #dedede;
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 40px;
        }

        .archive-links h3 {
            color: #1b4e9b;
            margin-bottom: 20px;
            font-size: 24px;
        }

        .archive-list {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .archive-list li {
            background: #fff;
            border: 1px solid #dedede;
            border-radius: 4px;
            padding: 10px 20px;
            transition: all 0.2s ease;
        }

        .archive-list li:hover {
            background: #1b4e9b;
        }

        .archive-list li:hover a {
            color: #fff;
            border-bottom: 1px solid #fff;
        }

        .footer {
            padding-top: 50px;
            padding-bottom: 50px;
            background-color: #f2f2f2;
            border-top: 5px solid #cccccc;
        }

        .small {
            font-size: 80%;
        }

        @media screen and (max-width: 767px) {
            .logo {
                margin-left: 0px;
                margin-bottom: 20px;
                max-height: 30px;
            }
            .menu {
                height: auto;
                text-align: left;
            }
            .menu .item {
                display: block;
            }
            .menu .item a {
                margin-left: 5px;
                line-height: 35px;
            }
            .main-bg {
                padding-bottom: 50px;
                padding-top: 50px;
                padding-left: 20px;
            }
            .bg h1 {
                font-size: 24px;
                width: 100%;
                line-height: 1.3;
            }
            .btn-main {
                font-size: 14px;
                padding: 10px 15px;
                margin-bottom: 15px;
            }
            .lead {
                font-size: 18px;
            }
            .year-title {
                font-size: 28px;
            }
            .photo-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 15px;
            }
            .archive-list {
                flex-direction: column;
            }
        }