*{
    font-family: 'Open Sans', Arial, sans-serif;
}

body {
    /* background-color: #f5f5f5; */
    color: #333333;
    line-height: 1.6;
    background-image: url('Images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top:40px;
}

.background-img-content-page{
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.navigation {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
}

.nav-button {
    display: block;
    margin: 12px 0;
    padding: 10px 24px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    min-width: 180px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-button:hover {
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-text {
    position: absolute;
    top: 40%;
    left: 10%;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.explore-button {
    display: inline-block;
    padding: 12px 32px;
    background-color: #2c7d32;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 800;
    transition: background-color 0.3s ease;
}

.explore-button:hover {
    background-color: #205b24;
}

.section-header {
    background-color: #2c7d32;
    color: white;
    padding: 25px 0;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
}

.overview-section {
    background-color: #ffffff;
    padding: 40px 0 60px;
}

.overview-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f9f9f9;
    border-radius: 6px;
    padding: 35px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-size:1.2rem ;
}

.overview-title {
    font-size: 3.6rem;
    margin-bottom: 20px;
    color: #2c7d32;
    font-weight: 600;
}

.types-section {
    padding: 40px 0 70px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.type-card {
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.type-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.type-content {
    padding: 25px;
    background-color: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.type-title {
    color: #2c7d32;
    font-size: 2.0rem;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
}

.type-description {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.10rem;
    color: #555;
    line-height: 1.5;
    font-weight: 600;
}

.type-list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 25px;
}

.type-list li {
    margin-bottom: 8px;
    font-size: 1.00rem;
    color: #555;
}

.read-more {
    display: block;
    text-align: center;
    padding: 10px 0;
    background-color: #2c7d32;
    color: white;
    text-decoration: none;
    margin-top: auto;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #205b24;
}

@media (max-width: 900px) {
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

.news-section {
    padding: 40px 0 70px;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.news-item {
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-date {
    background-color: #2c7d32;
    color: white;
    padding: 6px 16px;
    font-size: 0.85rem;
    display: inline-block;
    font-weight: 500;
}

.news-title {
    padding: 18px 22px 12px;
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
}

.news-preview {
    padding: 0 22px 18px;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.5;
}

.news-link {
    display: block;
    text-align: right;
    padding: 12px 22px;
    color: #2c7d32;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
    transition: color 0.2s ease;
}

.news-link:hover {
    color: #205b24;
}

@media (max-width: 768px) {
    .news-container {
        grid-template-columns: 1fr;
    }
}

#goTopBtn {
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    z-index: 1000;
}
#goTopBtn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#goTopBtn:hover {
    transform: scale(1.1);
}