


.main-title {
    font-size: 36px;
    color: #2e7d32;
    margin-bottom: 20px;
    margin-left: 32%;
}
.gallery {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.gallery-item {
    width: 32%;
    margin-bottom: 20px;
}
.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.sites-title {
    font-size: 28px;
    text-align: center;
    margin: 40px 0 20px;
}
.sites {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.site-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.site-row img {
    height: 373px;
    width: 373px;
}
.site {
    width: 48%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.site-title {
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
}
.site-info {
    font-size: 16px;
    margin-bottom: 10px;
}
.site-address {
    font-size: 14px;
    color: #666;
}
.read-more {
    display: inline-block;
    background-color: #2E7D32;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 3px;
    margin-top: 10px;
}
.notice {
    background-color: #f8f8f8;
    border-left: 4px solid #2E7D32;
    padding: 10px 15px;
    margin: 20px 0;
}
.signup-btn {
    display: inline-block;
    background-color: #2E7D32;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    margin: 20px 0;
    font-weight: bold;
}
.footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #666;
}
@media (max-width: 768px) {
    .gallery-item {
        width: 100%;
    }
    .site-row {
        flex-direction: column;
    }
    .site {
        width: 100%;
        margin-bottom: 20px;
    }
}
