/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(to bottom, #6cb224, #478f00); /* Soft gradient with green palette */
    color: #002d00; /* Dark green for text */
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Header */
header {
    background: #1d6c00; /* Rich green for header background */
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: auto;
    flex-wrap: wrap; /* Ensure elements wrap on smaller screens */
}

header .logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #ffffff; /* Brighter white for better visibility */
    word-break: break-word; /* Break long words */
    max-width: 100%; /* Ensure it doesn't overflow the container */
    overflow-wrap: anywhere; /* Allow breaking at any point for long words */
}


header nav ul {
    display: flex;
    list-style: none;
    justify-content: center; /* Center links horizontally */
    flex-wrap: wrap;
    width: 100%; /* Ensure links span full width */
    margin: 0;
}

header nav ul li {
    margin: 0 10px;
}

header nav ul li a {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px; /* Make links look like buttons */
    background: #004b00; /* Deep green button background */
    color: #ffffff; /* White text for better visibility */
    border: 2px solid #478f00; /* Border with a lighter green */
    border-radius: 5px;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

/* Hover Effects */
header nav ul li a:hover {
    background: #478f00; /* Lighter green on hover */
    color: #ffffff; /* Keep white text */
    border-color: #6cb224; /* Vibrant green border */
}

/* Kiwi Image Sidebar */
.kiwi-sidebar {
    position: fixed;
    top: 20%;
    right: 20px;
    z-index: 1000;
}

.kiwi-image {
    width: 300px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .kiwi-sidebar {
        display: none; /* Hide Kiwi image on smaller screens */
    }
}

/* Main Content */
main {
    padding: 20px;
    max-width: 900px;
    margin: auto;
    background: #f2f2f2; /* Light neutral background for content */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    main {
        margin: 0;
        padding: 10px; /* Adjust padding for smaller screens */
    }
}

/* Table */
.modern-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modern-table th, .modern-table td {
    padding: 15px;
    text-align: left;
    word-wrap: break-word;
    font-size: 0.9em;
}

.modern-table th {
    background: #478f00; /* Palette green */
    color: white;
    font-weight: bold;
}

.modern-table tbody tr:nth-child(odd) {
    background: #6cb224; /* Row highlight */
}

.modern-table tbody tr:hover {
    background: #004b00; /* Dark green hover effect */
    color: white;
    transition: background 0.3s;
}

.modern-table td {
    border-bottom: 1px solid #ddd;
}

@media (max-width: 768px) {
    .modern-table th, .modern-table td {
        font-size: 0.8em; /* Smaller text for better fit */
        padding: 10px;
    }
}

/* Footer */
/* Footer */
footer {
    background: #1d6c00; /* Rich green */
    color: white;
    text-align: center;
    padding: 20px;
    width: 100%; /* Ensure footer spans the full width */
    box-sizing: border-box; /* Include padding in width calculation */
    margin: 0 auto;
    position: relative;
}

.footer-container {
    display: flex;
    flex-direction: row; /* Horizontal layout by default */
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap; /* Prevent wrapping on desktop */
    max-width: 1200px; /* Limit width for desktop */
    margin: 0 auto; /* Center the footer container */
}

.footer-logo-desc {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between image and text */
    flex: 1;
    text-align: left; /* Align content to the left */
}

.footer-logo-desc img {
    max-width: 80px; /* Ensure image is responsive */
    height: auto;
    border-radius: 50%;
}

.footer-description {
    color: #f2f2f2; /* Soft light color for text */
    font-size: 0.9em; /* Smaller font size */
    flex: 2; /* Allow this section to take more space */
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Wrap links if needed */
    flex: 1;
}

.footer-links a {
    color: #6cb224; /* Vibrant green for links */
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border: 1px solid #478f00;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.footer-links a:hover {
    background: #478f00; /* Lighter green on hover */
    color: white; /* White text on hover */
    border-color: #6cb224;
}

@media (max-width: 768px) {
    footer {
        padding: 15px; /* Adjust padding for smaller screens */
    }

    .footer-container {
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center-align content */
        text-align: center; /* Center text */
    }

    .footer-logo-desc {
        flex-direction: column; /* Stack image and description vertically */
        align-items: center;
        margin-bottom: 15px; /* Add spacing below description */
        text-align: center; /* Center-align text */
    }

    .footer-description {
        margin: 10px 0; /* Add margin for spacing */
        text-align: center; /* Center-align text */
    }

    .footer-links {
        gap: 10px; /* Reduce gap between links */
    }
}




/* Pros and Cons Block */
.pros-cons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.pros, .cons {
    flex: 1;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pros {
    background: #6cb224; /* Vibrant green for pros */
    color: white;
}

.cons {
    background: #d9534f; /* Red for cons */
    color: white;
}

.pros h3, .cons h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros li, .cons li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.pros li::before {
    content: '✔'; /* Checkmark for pros */
    color: #004b00; /* Dark green */
    font-weight: bold;
    margin-right: 8px;
}

.cons li::before {
    content: '✘'; /* Cross for cons */
    color: #8a0000; /* Dark red */
    font-weight: bold;
    margin-right: 8px;
}




/* Bullet List */
ul.bullet-list {
    padding: 10px 20px;
    background: #f2f2f2; /* Light background */
    border: 2px solid #6cb224; /* Green border */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style-type: none;
    margin: 20px 0;
}

ul.bullet-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #004b00; /* Dark green text */
}

ul.bullet-list li::before {
    content: '●'; /* Custom bullet */
    position: absolute;
    left: 0;
    color: #6cb224; /* Vibrant green bullet */
    font-size: 1.2em;
}

/* Numbered List */
/* Numbered List */
ol.numbered-list {
    list-style-type: none; /* Remove default numbering */
    padding: 10px 20px;
    background: #f2f2f2; /* Light background */
    border: 2px solid #6cb224; /* Green border */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    counter-reset: custom-counter; /* Reset custom counter */
}

ol.numbered-list li {
    counter-increment: custom-counter; /* Increment custom counter */
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
    color: #004b00; /* Dark green text */
}

ol.numbered-list li::before {
    content: counter(custom-counter) '.'; /* Custom counter */
    position: absolute;
    left: 0;
    color: #478f00; /* Medium green for numbers */
    font-weight: bold;
    font-size: 1.2em;
}
