        * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        }

        body {
        font-family: 'Inter Tight';
        line-height: 1.6;
        color: #000;
        background:#fff;
        min-height: 100vh;
        }

 
        /* Header Styles */
        .header {
            background: white;
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            text-decoration: none;
            transition: color 0.3s ease;
        }

.logo img{
    max-width:200px;
}

        /* Desktop Navigation */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: #000;
            text-decoration: none;
            font-weight: 500;
            padding: 10px 0;
            position: relative;
        }

        .nav-link:hover {
            text-decoration:underline;
            color:#000;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 3px;
            left: 0;
            width: 0;
            height: 2px;
            background: #000;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            width: 30px;
            height: 30px;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #000;
            transition: all 0.3s ease;
            position: absolute;
        }

        .hamburger span:nth-child(1) {
            top: 8px;
        }

        .hamburger span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }

        .hamburger span:nth-child(3) {
            bottom: 8px;
        }

        .hamburger.active span:nth-child(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            bottom: auto;
            top: 50%;
            transform: translateY(-50%) rotate(-45deg);
        }

        /* Mobile Navigation */
        .nav-menu.mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: white;
            flex-direction: column;
            gap: 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .nav-menu.mobile.active {
            transform: translateX(0);
        }

        .nav-menu.mobile .nav-item {
            width: 100%;
            border-bottom: 1px solid #eee;
        }

        .nav-menu.mobile .nav-link {
            display: block;
            padding: 20px;
            text-align: left;
            width: 100%;
        }

        .nav-menu.mobile .nav-link:hover {
            color:#000;
        }

        .nav-menu.mobile .nav-link::after {
            display: none;
        }

        /* Content spacing */
        .content {
            margin-top: 70px;
            padding: 40px 20px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .nav-menu.mobile {
                display: flex;
            }

            .hamburger {
                display: flex;
            }

            .nav-container {
                padding: 0 15px;
            }
        }

        /* Tablet Styles */
        @media (max-width: 1024px) and (min-width: 769px) {
            .nav-container {
                padding: 0 30px;
            }
            
            .nav-menu {
                gap: 20px;
            }
        }
    
    
.rgf-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 3rem;
    padding: 20px;
}

.rgf-grid-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.rgf-grid-card-2025 {
    grid-column: 1;
    grid-row: 1;
}

.rgf-grid-card-2024 {
    grid-column: 2;
    grid-row: 1;
}

a[href*="team-rgf"]:link,
a[href*="team-rgf"]:visited {
    text-decoration: none;
}

a[href*="team"]:link,
a[href*="team"]:visited {
    text-decoration: none;
}

.rgf-grid-card-empty {
    grid-column: 3;
    grid-row: 1;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.rgf-grid-welcome {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 1200px;
    margin: 20px auto 80px;
    padding: 0 20px;
    margin-top: 2rem;
    margin-bottom: 4rem;    
    
}

.rgf-grid-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.rgf-grid-year {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0;
    color: #000;
}

.rgf-grid-date {
    font-size: 18px;
    color: #000;
}

.rgf-grid-welcome-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    color: #000;
    border-bottom: 1px solid #ddd;
}

.rgf-grid-welcome-text {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #000;
}

.rgf-grid-tree {
    margin-right: 8px;
}

/* Tablet Styles */
@media (max-width: 768px) {
    .rgf-grid-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 15px;
        padding: 15px;
        margin-top: 2rem;
    }
    
    .rgf-grid-card-2025 {
        grid-column: 1;
        grid-row: 1;
    }
    
    .rgf-grid-card-2024 {
        grid-column: 2;
        grid-row: 1;
    }
    
    .rgf-grid-card-empty {
        grid-column: 1 / -1;
        grid-row: 2;
    }
    
    .rgf-grid-welcome {
        grid-column: 1 / -1;
        grid-row: 3;
        margin-top: 2rem;
    }
    
    .rgf-grid-welcome-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .rgf-grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 15px;
        padding: 10px;
        margin-top: 1.5rem;
    }
    
    .rgf-grid-card-2025 {
        grid-column: 1;
        grid-row: 1;
    }
    
    .rgf-grid-card-2024 {
        grid-column: 1;
        grid-row: 2;
    }
    
    .rgf-grid-card-empty {
        grid-column: 1;
        grid-row: 3;
    }
    
    .rgf-grid-welcome {
        grid-column: 1;
        grid-row: 4;
        margin-top: 1.5rem;
    }
    
    .rgf-grid-card {
        padding: 15px;
    }
    
    .rgf-grid-title {
        font-size: 20px;
    }
    
    .rgf-grid-year {
        font-size: 28px;
    }
    
    .rgf-grid-date {
        font-size: 16px;
    }
    
    .rgf-grid-welcome-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
    
    .rgf-grid-welcome-text {
        font-size: 14px;
        line-height: 1.5;
    }
}
    
    
.rgf-page-wrapper{
    max-width:1200px;
    margin:0 auto;
    margin-top:6rem;
    padding:25px;
}

.rgf-page-content h1{
    margin-bottom:2rem;
}

.rgf-page-content h2{
    margin-top:2rem;
    margin-bottom:2rem;
}

.rgf-page-content h3{
    margin-top:2rem;
    margin-bottom:2rem;
}

.rgf-page-content hr {
    margin-top: 2rem;
    color: #ddd;
    background-color: rgba(221, 221, 221, 0.9); 
    border: none;
    height: 1px;
}

.rgf-page-content p{
    margin-bottom:1rem;
}


.rgf-page-content a:link,
.rgf-page-content a:visited{
    color:#000;
    text-decoration:underline;
}

.rgf-page-content ul{
    margin:0;
    padding:0;
    margin-left:1rem;
    margin-top:2rem;
    margin-bottom:2rem;
}

.rgf-page-content ul li{
    margin-bottom:5px;
}

.rgf-page-content a:hover{
    text-decoration:none;
}

.rgf-page-body img{
    max-width:100%;
    height:auto;
}


@media (max-width: 769px) {
    
.rgf-page-wrapper{
    margin-top:7rem;
}

}



        .rgf-mbr-container {
            max-width: 1200px;
            margin: 0 auto;
            padding:0px;
        }

        .rgf-mbr-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
            width: 100%;
        }

        .rgf-mbr-card {
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 10px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        }

        .rgf-mbr-photo-container {
            width: 100%;
            height: 260px;
            overflow: hidden;
            position: relative;
        }

        .rgf-mbr-photo {
            background:#fff;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .rgf-mbr-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .rgf-mbr-name {
            font-size: 1.25rem;
            font-weight: 600;
            color: #000;
            margin: 0 0 10px 0;
            line-height: 1.3;
        }

        .rgf-mbr-bio {
            font-size: 0.95rem;
            color: #000;
            line-height: 1.6;
            margin: 0;
            flex-grow: 1;
        }

        /* Responsive adjustments */
        @media (max-width: 640px) {
            
            .rgf-mbr-grid {
                gap: 15px;
            }
            
            .rgf-mbr-content {
                padding: 15px;
            }
            
            .rgf-mbr-name {
                font-size: 1.1rem;
            }
            
            .rgf-mbr-bio {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .rgf-mbr-photo-container {
                height: 380px;
            }
        }

        /* Fallback for very small screens */
        @media (max-width: 240px) {
            .rgf-mbr-grid {
                grid-template-columns: 1fr;
            }
        }


.rgf-blog-posts {
    margin-top: 3rem;
}

.rgf-blog-post {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.rgf-blog-post:last-child {
    border-bottom: none;
}

.rgf-blog-post-image {
    flex-shrink: 0;
    width: 250px;
}

.rgf-blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.rgf-blog-post-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rgf-blog-post-header {
    margin-bottom: 0.5rem;
}

.rgf-blog-post-title {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.3;
}

.rgf-blog-post-title a:link,
.rgf-blog-post-title a:visited {
    color: #000;
    text-decoration: none;
}

.rgf-blog-post-title a:hover {
    text-decoration: underline;
}

.rgf-blog-post-date {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.rgf-blog-post-content {
    margin-bottom: 1rem;
}

.rgf-blog-post-footer {
    margin-top: auto;
}

.rgf-read-more {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.rgf-read-more:hover {
    text-decoration: underline !important;
}

/* Mobile Layout */
@media (max-width: 768px) {
    .rgf-blog-post {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rgf-blog-post-image {
        width: 100%;
    }
}
.rgf-error-404 .rgf-page-content{
    margin:0 auto;
    max-width:1200px;
    padding:1rem;
    padding-top:8rem;
    text-align:center;
}

.rgf-button a:link,
.rgf-button a:visited{
    color:#000!important;
}


.rgf-footer-content{
    max-width:1200px;
    border-top:1px solid #ddd;
    margin:0 auto;
    margin-top:3rem;
    padding-top:20px;
    padding-bottom:3rem;
    color:#000;
    text-align:center;
}