/* 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, #e0f7fa, #80deea);
    color: #333;
}

header {
    background: linear-gradient(to right, #00796b, #004d40);
    color: #fff;
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header .logo h1 {
    font-size: 1.5rem;
}

header nav ul {
    display: flex;
    gap: 1rem;
    list-style: none;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

main {
    max-width: 1200px;
    margin: 2em auto;
    padding: 1em;
}

.sidebar {
    float: left;
    max-width: 200px;
    margin-right: 1em;
}

.sidebar .kiwi-img {
    max-width: 100%;
    opacity: 0.8;
}

.content h2 {
    margin-bottom: 0.5em;
}

.content p {
    margin-bottom: 1em;
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

table th, table td {
    padding: 1em;
    text-align: left;
}

table th {
    background: linear-gradient(to right, #00796b, #004d40);
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9em;
}

table td {
    border-bottom: 1px solid #eee;
}

table tr:hover td {
    background: #f1f8e9;
    color: #00796b;
}

/* Pros and Cons Blocks */
/* Redesigned Pros and Cons Blocks */
.pros-cons {
    display: flex;
    gap: 1.5em;
    margin-top: 2em;
}

.pros, .cons {
    flex: 1;
    padding: 1.5em;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.pros {
    background: linear-gradient(to bottom right, #4caf50, #66bb6a);
    color: #fff;
}

.cons {
    background: linear-gradient(to bottom right, #880808, #a52626);
    color: #fff;
}

/* Decorative Elements */
.pros::before, .cons::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.pros::after, .cons::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

/* Content inside blocks */
.pros h3, .cons h3 {
    margin-bottom: 1em;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.pros ul li, .cons ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8em;
    font-size: 1rem;
}

.pros ul li::before {
    content: "✔";
    color: #fff;
    margin-right: 0.5em;
    font-size: 1.2rem;
}

.cons ul li::before {
    content: "✖";
    color: #fff;
    margin-right: 0.5em;
    font-size: 1.2rem;
}


/* Bullet and Numbered Lists */
/* Custom Unordered List */
.custom-ul {
    margin-left: 2em;
    margin-bottom: 1em;
      list-style: none; /* Removes default bullets */
}

.custom-ul li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
}

.custom-ul li::before {
    content: "●";
    position: absolute;
    left: 0;
    font-size: 1.2em;
    color: #00796b; /* Custom color for bullets */
}

/* Custom Ordered List */
.custom-ol {
    margin-left: 2em;
    margin-bottom: 1em;
    counter-reset: item;
       list-style: none; /* Removes default numbers */
}

.custom-ol li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
    counter-increment: item;
}

.custom-ol li::before {
    content: counters(item, ".") ". ";
    position: absolute;
    left: 0;
    font-size: 1.2em;
    color: #00796b; /* Custom color for numbers */
}


footer {
    background: #004d40;
    color: #fff;
    text-align: center;
    padding: 1em 0;
    margin-top: 2em;
}

footer .footer-links a {
    color: #80deea;
    margin: 0 1em;
    text-decoration: none;
}

@media (max-width: 768px) {
    header, main, footer {
        padding: 1em;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    .sidebar {
        display: none;
    }

    .content {
        margin: 0 auto;
    }

    table {
        font-size: 0.9em;
    }

    .pros-cons {
        flex-direction: column;
    }
}
