/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif; /* Modern, clean font */
    font-size: 16px;
    color: #2C3E50; /* Deep Blue-Gray */
    line-height: 1.8;
    margin: 0;
    background: #F4F4F4; /* Light Gray background */
}

/* Container for Centering */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
/* General Header Styles */
header {
    background: #ffffff;
    color: #2C3E50;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between; /* Align items to left, center, and right */
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Logo */
header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #2C3E50;
    font-size: 1.5em;
    font-weight: bold;
}

header .logo img {
    width: 40px;
    height: auto;
}

/* Navigation Menu */
header nav {
    display: flex;
    justify-content: center; /* Center align navigation links */
    flex: 1; /* Take up available space */
    gap: 30px;
}

header nav a {
    text-decoration: none;
    font-weight: bold;
    color: #2C3E50;
    font-size: 1em;
    transition: color 0.3s;
}

header nav a:hover {
    color: #E74C3C;
}

/* Right Section (Search and Flag) */
header .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

header .icon {
    width: 40px;
    height: 40px;
    background: #F4F4F4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .icon:hover {
    background: #E74C3C;
    color: #ffffff;
}

header .icon img {
    width: 24px;
    height: auto;
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Stack the header vertically */
    header {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    /* Logo centered on mobile */
    header .logo {
        justify-content: center;
        margin-bottom: 10px;
    }

    /* Navigation menu as a vertical list */
    header nav {
        flex-direction: column;
        align-items: center;
        gap: 15px; /* Increase spacing between links */
    }

    header nav a {
        font-size: 1.2em; /* Slightly larger text for mobile */
    }

    /* Right section icons aligned below menu */
    header .header-right {
        justify-content: center;
        gap: 20px;
        margin-top: 10px;
    }

    header .icon {
        width: 50px; /* Larger touch area for mobile */
        height: 50px;
    }

    header .icon img {
        width: 28px; /* Larger icons */
    }
}



/* Footer */
/* Footer */
footer {
    background: #ffffff; /* Match header background */
    color: #2C3E50; /* Deep Blue-Gray for text */
    padding: 20px;
    display: flex;
    justify-content: space-between; /* Align elements: logo, navigation, and icons */
    align-items: center;
    border-top: 1px solid #e0e0e0; /* Subtle border for separation */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05); /* Subtle shadow for elevation */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

/* Footer Logo */
footer .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #2C3E50;
    font-size: 1.5em;
    font-weight: bold;
}

footer .logo img {
    width: 40px; /* Logo size */
    height: auto;
}

/* Footer Navigation Menu */
footer nav {
    display: flex;
    justify-content: center; /* Center-align navigation links */
    gap: 30px;
    flex: 1; /* Allow menu to expand */
}

footer nav a {
    text-decoration: none;
    font-weight: bold;
    color: #2C3E50; /* Deep Blue-Gray */
    font-size: 1em;
    transition: color 0.3s;
}

footer nav a:hover {
    color: #E74C3C; /* Vibrant Red on hover */
}

/* Footer Right Section (Icons) */
footer .footer-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

footer .icon {
    width: 40px;
    height: 40px;
    background: #F4F4F4; /* Light Gray background */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

footer .icon:hover {
    background: #E74C3C; /* Red background on hover */
    color: #ffffff; /* White icon on hover */
}

footer .icon img {
    width: 24px; /* Icon size */
    height: auto;
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    footer .logo {
        margin-bottom: 15px;
    }

    footer nav {
        flex-direction: column;
        gap: 15px;
    }

    footer .footer-right {
        margin-top: 15px;
        justify-content: center;
    }

    footer .icon {
        width: 50px;
        height: 50px;
    }

    footer .icon img {
        width: 28px;
    }
}


/* Buttons */
.button {
    display: inline-block;
    background: #E74C3C; /* Vibrant Red */
    color: #ffffff; /* White text */
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.button:hover {
    background: #c0392b; /* Darker Red */
}

/* Table */
.table-container {
    overflow-x: auto; /* Horizontal scrolling for small screens */
    margin: 20px 0;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff; /* White background */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.table th {
    background: #2C3E50; /* Deep Blue-Gray */
    color: #ffffff; /* White text */
    font-weight: bold;
    text-align: left;
    padding: 15px;
    font-size: 1em;
}

.table td {
    padding: 15px;
    text-align: left;
    color: #2C3E50; /* Deep Blue-Gray text */
    font-size: 0.9em;
    border-bottom: 1px solid #f2f2f2;
}

.table tr:nth-child(even) {
    background: #f9f9f9; /* Light row */
}

.table tr:hover {
    background: #E74C3C; /* Red hover effect */
    color: #ffffff; /* White text on hover */
    transition: background 0.3s;
}



/* Pros and Cons Container */
.pros-cons-container {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap; /* Stack vertically on smaller screens */
}

/* Pros Block */
.pros {
    flex: 1;
    background: #E8F5E9; /* Light green background */
    border: 2px solid #4CAF50; /* Green border */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #2C3E50; /* Text color */
}

.pros h3 {
    color: #4CAF50; /* Green heading */
    margin-bottom: 15px;
    font-size: 1.4em;
    text-align: center;
}

.pros ul {
    list-style: none;
    padding: 0;
}

.pros li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1em;
}

.pros li::before {
    content: '✔'; /* Checkmark */
    color: #4CAF50;
    font-weight: bold;
    margin-right: 10px;
}

/* Cons Block */
.cons {
    flex: 1;
    background: #FFEBEE; /* Light red background */
    border: 2px solid #F44336; /* Red border */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #2C3E50; /* Text color */
}

.cons h3 {
    color: #F44336; /* Red heading */
    margin-bottom: 15px;
    font-size: 1.4em;
    text-align: center;
}

.cons ul {
    list-style: none;
    padding: 0;
}

.cons li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1em;
}

.cons li::before {
    content: '✘'; /* Cross mark */
    color: #F44336;
    font-weight: bold;
    margin-right: 10px;
}

/* Bullet Lists */
ul.bullet-list {
    margin: 20px 0;
    padding: 20px;
    background: #F4F4F4; /* Light gray background */
    border: 1px solid #e0e0e0; /* Subtle border */
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    list-style: none;
}

ul.bullet-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #2C3E50; /* Text color */
    font-size: 1em;
}

ul.bullet-list li::before {
    content: '•'; /* Custom bullet */
    position: absolute;
    left: 10px;
    color: #4CAF50; /* Green bullet */
    font-size: 1.4em;
    line-height: 1;
}

/* Numbered Lists */
ol.numbered-list {
    margin: 20px 0;
    padding: 20px;
    background: #F4F4F4; /* Light gray background */
    border: 1px solid #e0e0e0; /* Subtle border */
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    list-style: none;
    counter-reset: custom-counter; /* Reset custom counter */
}

ol.numbered-list li {
    counter-increment: custom-counter; /* Increment custom counter */
    position: relative;
    padding-left: 35px;
    margin-bottom: 10px;
    color: #2C3E50; /* Text color */
    font-size: 1em;
}

ol.numbered-list li::before {
    content: counter(custom-counter) '.'; /* Custom numbering */
    position: absolute;
    left: 10px;
    color: #4CAF50; /* Green number */
    font-weight: bold;
    font-size: 1.2em;
}
