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

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #45640F;
    font-weight: normal;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3, h4, h5, h6 {
    color: #006C00;
    margin-bottom: 15px;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 20px;
    font-weight: bold;
}

.style2 {
    color: #006C00;
    font-weight: bold;
    font-size: 14px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
    margin-bottom: 10px;
    width: 100%;
    min-height: 60px; 
}

.logo-small {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: fit-content;
    line-height: 1.2; 
}

.logo-small img {
    max-width: 60px;
    width: auto;
    height: auto;
    display: block;
}

.back-link {
    color: #006C00;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    margin-top: 2px; 
    line-height: 1.2;
}

.back-link:hover {
    text-decoration: underline;
}

.logo-main {
    flex: 1;
    text-align: center;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-main img {
    max-width: 270px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.logo-empty {
    flex: 0 0 auto;
    width: 60px;
    visibility: hidden;
}

.menu {
    text-align: center;
    padding: 15px 0;
    margin-bottom: 20px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.menu a {
    color: #006C00;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

.menu a:hover {
    text-decoration: underline;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

.hero {
    text-align: center;
    margin-bottom: 30px;
}

.hero p {
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.grid-item {
    text-align: center;
    padding: 10px;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

.grid-item:hover {
    border-color: #006C00;
}

.grid-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.grid-item p {
    color: #45640F;
    font-size: 14px;
    margin-top: 5px;
}

article {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

article h2 {
    margin-bottom: 15px;
}

article p {
    color: #333;
    line-height: 1.6;
}

footer {
    margin-top: 40px;
    text-align: center;
}

.copyright {
    color: #666;
    font-size: 12px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.footer-links {
    font-size: 12px;
    line-height: 1.8;
}

.footer-links a {
    color: #006C00;
    text-decoration: none;
    margin: 0 3px;
    white-space: nowrap;
}

.footer-links a:hover {
    text-decoration: underline;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
}

a:link {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
}

.style1 {
    color: #006C00;
    font-weight: bold;
    font-size: 12px;
}

.style3 {
    color: #FFFFFF;
}

.style4 {
    text-decoration: underline;
}

.style5 {
    font-size: 14px;
    font-weight: bold;
    color: #2C5CCC;
}

.style6 {
    font-size: 16px;
}

.style7 {
    font-size: 18px;
}

.style13 {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: normal;
}

.style14 {
    font-size: 12px;
}

.style15 {
    color: #009652;
}

.style16 {
    color: #333333;
}

.style17 {
    font-size: 10px;
}

.style20 {
    font-size: 16px;
    color: #006C00;
    font-weight: bold;
}

.style21 {
    font-size: 14px;
}

.style23 {
    color: #FF6600;
}

.style24 {
    color: #FF9900;
}

.style28 {
    font-size: 14px;
    text-align: justify;
    color: #FFFFFF;
    font-weight: bold;
}

.style29 {
    color: #FFFF00;
    font-weight: bold;
}

.italic {
    font-style: italic;
    font-size: 14px;
}

.italic div {
    font-style: italic;
}

@media screen and (max-width: 768px) {
    .header {
        gap: 10px;
        min-height: 60px;
    }
    
    .logo-small img {
        max-width: 50px;
    }
    
    .back-link {
        font-size: 13px;
        margin-top: 2px;
    }
    
    .logo-main img {
        max-width: 200px;
    }
    
    .logo-empty {
        width: 50px;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .menu a {
        display: inline-block;
        margin: 5px 10px;
    }
}

@media screen and (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .header {
        gap: 5px;
        min-height: 50px;
        margin-bottom: 5px;
    }
    
    .logo-small img {
        max-width: 40px;
    }
    
    .back-link {
        font-size: 11px;
        margin-top: 2px;
    }
    
    .logo-main img {
        max-width: 150px;
    }
    
    .logo-empty {
        width: 40px;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grid-item {
        max-width: 100%;
    }

    .menu a {
        display: block;
        margin: 8px 0;
    }

    .footer-links a {
        display: inline-block;
        margin: 3px 5px;
        white-space: normal;
    }
}

@media screen and (max-width: 360px) {
    .logo-main img {
        max-width: 120px;
    }
    
    .back-link {
        font-size: 10px;
    }
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from { background-color: rgba(0, 0, 0, 0); }
    to { background-color: rgba(0, 0, 0, 0.8); }
}

.lightbox-content {
    display: block;
    max-width: 90%;
    max-height: 90%;
    background: transparent;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: contentFadeIn 0.4s ease;
}

@keyframes contentFadeIn {
    from { 
        opacity: 0;
        transform: scale(0.95);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

#lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    margin: 0 auto;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    transition: color 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
    color: #ccc;
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 16px;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    z-index: 10000;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.lightbox-prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.05);
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-thumb {
    text-decoration: none;
    display: block;
}

.gallery-thumb img {
    transition: border-color 0.3s, transform 0.2s ease;
}

.gallery-thumb:hover img {
    transform: scale(1.05);
    border-color: #006C00 !important;
}

@media screen and (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        padding: 8px;
    }
    
    #lightbox-image {
        max-height: 75vh;
    }
}

@media screen and (max-width: 600px) {
    .lightbox-nav {
        padding: 10px;
        font-size: 16px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
    
    .lightbox-content {
        padding: 5px;
    }
    
    @keyframes contentFadeIn {
        from { 
            opacity: 0;
            transform: scale(0.9);
        }
        to { 
            opacity: 1;
            transform: scale(1);
        }
    }
}

@media screen and (max-width: 480px) {
    .lightbox-nav {
        padding: 8px;
        font-size: 14px;
    }
    
    #thumbs img {
        width: 70px !important; 
    }
}

body.lightbox-open {
    overflow: hidden;
}