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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

header {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 32px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

nav a:hover {
    background-color: rgba(255,255,255,0.2);
    color: #e8f5e9;
}

main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(135deg, #4a7c2c 0%, #2d5016 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    background-color: white;
    color: #2d5016;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid white;
    cursor: pointer;
    border: none;
}

.btn:hover {
    background-color: #e8f5e9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #2d5016;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #4a7c2c;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #2d5016;
    margin-bottom: 10px;
    font-size: 22px;
}

.feature-card p {
    color: #666;
    font-size: 14px;
}

.page-title {
    font-size: 36px;
    color: #2d5016;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #4a7c2c;
}

.section-title {
    font-size: 28px;
    color: #2d5016;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 4px solid #4a7c2c;
}

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

.info-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #4a7c2c;
}

.info-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.info-card h3 {
    color: #2d5016;
    margin-bottom: 15px;
    font-size: 20px;
}

.info-card p {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.8;
}

.info-card ul {
    list-style-position: inside;
    color: #555;
    margin-left: 15px;
}

.info-card li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.detail-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.detail-section h2 {
    color: #2d5016;
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: 2px solid #e8f5e9;
    padding-bottom: 10px;
}

.detail-section h3 {
    color: #4a7c2c;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
}

.detail-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.detail-section ul {
    list-style-position: inside;
    color: #555;
    margin-left: 15px;
    margin-bottom: 15px;
}

.detail-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.highlight-box {
    background-color: #e8f5e9;
    border-left: 4px solid #4a7c2c;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.highlight-box strong {
    color: #2d5016;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
}

table th {
    background-color: #4a7c2c;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

table tr:hover {
    background-color: #f5f5f5;
}

table tr:nth-child(even) {
    background-color: #fafafa;
}

footer {
    background-color: #2d5016;
    color: white;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: #e8f5e9;
    font-size: 16px;
}

.footer-section p, .footer-section a {
    color: #c8e6c9;
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #4a7c2c;
    padding-top: 20px;
    text-align: center;
    color: #a5d6a7;
    font-size: 14px;
}

@media (max-width: 768px) {
    nav ul {
        gap: 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .page-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 20px;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
}

.breadcrumb a {
    color: #4a7c2c;
    text-decoration: none;
    margin: 0 5px;
}

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

.breadcrumb span {
    color: #999;
}

.back-link {
    display: inline-block;
    color: #4a7c2c;
    text-decoration: none;
    margin-bottom: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #2d5016;
}

.page-background {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.page-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.85);
    pointer-events: none;
}

body.with-bg main {
    position: relative;
    z-index: 1;
}

.crop-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    margin: 20px 0;
}

.crop-image-container {
    text-align: center;
    margin: 30px 0;
}

.crop-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.crop-image-container img:hover {
    transform: scale(1.02);
}

.crop-image-caption {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.info-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.feature-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.section-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45, 80, 22, 0.9), transparent);
    color: white;
    padding: 15px;
    font-weight: bold;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.contact-form-wrapper {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2d5016;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a7c2c;
    box-shadow: 0 0 5px rgba(74, 124, 44, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background-color: #4a7c2c;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #2d5016;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.form-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #e8f5e9;
    color: #2d5016;
    border: 1px solid #4a7c2c;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-info h2 {
    color: #2d5016;
    margin-bottom: 25px;
    font-size: 24px;
    border-bottom: 2px solid #e8f5e9;
    padding-bottom: 10px;
}

.info-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8f5e9;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item h3 {
    color: #4a7c2c;
    margin-bottom: 10px;
    font-size: 16px;
}

.info-item p {
    color: #555;
    line-height: 1.8;
    font-size: 14px;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8f5e9;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: #4a7c2c;
    margin-bottom: 10px;
    font-size: 16px;
}

.faq-item p {
    color: #555;
    line-height: 1.8;
}

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

    .contact-info {
        height: auto;
    }
}
