
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 16px;
    color: #1F2937; /* Dark Charcoal */
    background: #FDFDFD; /* Soft White */
    margin: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #3B82F6; /* Vivid Blue */
    color: #FFFFFF; /* White text */
}

header .logo {
    font-size: 1.8em;
    font-weight: bold;
    text-transform: uppercase;
}

header nav {
    display: flex;
    gap: 20px;
}

header nav a {
    color: #FFFFFF; /* White links */
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    transition: color 0.3s;
}

header nav a:hover {
    color: #22C55E; /* Vivid Green */
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #3B82F6, #22C55E); /* Gradient Blue to Green */
    color: #FFFFFF; /* White text */
}

.hero h1 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero .button {
    display: inline-block;
    background: #FFFFFF; /* White button */
    color: #3B82F6; /* Blue text */
    padding: 15px 30px;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.hero .button:hover {
    background: #FDFDFD; /* Soft White on hover */
    color: #22C55E; /* Green text on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Main Content */
main {
    padding: 50px 20px;
    text-align: left;
}

main h2 {
    font-size: 2.2em;
    color: #3B82F6; /* Blue heading */
    margin-bottom: 20px;
}

main p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #1F2937; /* Dark Charcoal */
}

/* Footer */
footer {
    background: #1F2937; /* Dark Charcoal */
    color: #FFFFFF; /* White text */
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9em;
}

footer a {
    color: #3B82F6; /* Blue links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

footer a:hover {
    color: #22C55E; /* Green on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    header nav {
        flex-direction: column;
        gap: 10px;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1em;
    }

    main h2 {
        font-size: 1.8em;
    }

    main p {
        font-size: 1em;
    }
}

/* Pros and Cons Container */
.pros-cons-container {
    display: flex;
    flex-wrap: wrap; /* Responsive stacking */
    gap: 30px;
    margin: 50px 0;
}

/* Shared Styles for Pros and Cons */
.pros, .cons {
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    color: #FFFFFF; /* White text */
    font-family: 'Poppins', Arial, sans-serif;
}

.pros h3, .cons h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Pros Block */
.pros {
    background: linear-gradient(135deg, #22C55E, #3B82F6); /* Gradient green to blue */
}

.pros h3::before {
    content: '✓'; /* Checkmark for Pros */
    font-size: 1.8em;
    color: #FFFFFF; /* White icon */
}

/* Cons Block */
.cons {
    background: linear-gradient(135deg, #D32F2F, #F44336); /* Gradient red to light red */
}

.cons h3::before {
    content: '✕'; /* Crossmark for Cons */
    font-size: 1.8em;
    color: #FFFFFF; /* White icon */
}

/* List Styles */
.pros ul, .cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros li, .cons li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1em;
    gap: 10px;
}

.pros li::before, .cons li::before {
    content: ''; /* Decorative circle */
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.pros li::before {
    background: #3B82F6; /* Blue circle */
}

.cons li::before {
    background: #F44336; /* Red circle */
}


/* Bullet List */
/* Bullet List */
ul.bullet-list {
    margin: 20px 0;
    padding-left: 20px; /* Indentation */
    max-width: 600px; /* Constrain width */
}

ul.bullet-list li {
    display: flex;
    align-items: center;
    font-size: 1em;
    color: #1F2937; /* Dark Charcoal */
    margin-bottom: 10px;
    gap: 10px;
}

ul.bullet-list li::before {
    content: '•'; /* Custom bullet */
    color: #3B82F6; /* Blue bullet */
    font-size: 1.5em;
    line-height: 1;
}

/* Numbered List */
ol.numbered-list {
    margin: 20px 0;
    padding-left: 20px; /* Indentation */
    max-width: 600px; /* Constrain width */
    counter-reset: custom-counter; /* Reset counter */
}

ol.numbered-list li {
    display: flex;
    align-items: center;
    font-size: 1em;
    color: #1F2937; /* Dark Charcoal */
    margin-bottom: 10px;
    counter-increment: custom-counter; /* Increment counter */
    gap: 10px;
}

ol.numbered-list li::before {
    content: counter(custom-counter) '. '; /* Custom numbering */
    color: #22C55E; /* Green number */
    font-size: 1.5em;
    font-weight: bold;
}


/* FAQ Container */
.faq-container {
    margin: 50px 0;
    padding: 20px 0;
    color: #1F2937; /* Dark Charcoal */
    font-family: 'Poppins', Arial, sans-serif;
}

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid #F4F4F4; /* Subtle divider */
    padding: 15px 0;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.faq-item:hover {
    background: rgba(59, 130, 246, 0.1); /* Light blue highlight on hover */
    color: #3B82F6; /* Blue text on hover */
}

.faq-item:last-child {
    border-bottom: none; /* Remove divider for the last item */
}

/* FAQ Question */
.faq-question {
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
    color: #1F2937; /* Dark Charcoal for text */
}

.faq-question .icon {
    font-size: 1.4em;
    color: #3B82F6; /* Blue icon */
    transition: transform 0.3s, color 0.3s;
}

.faq-question.open .icon {
    transform: rotate(180deg); /* Rotate icon when open */
    color: #22C55E; /* Green when open */
}

/* FAQ Answer */
.faq-answer {
    margin-top: 10px;
    font-size: 1em;
    color: #4B5563; /* Lighter Charcoal */
    line-height: 1.6;
    display: none; /* Hidden by default */
}

.faq-answer.visible {
    display: block; /* Show the answer when visible */
}
