/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333333; /* Charcoal for text */
    background: #F5F5F5; /* Light gray background */
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background: #CD5C5C; /* Deep teal */
    color: #FFFFFF; /* White text */
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid #BDBDBD; /* Silver border */
}

header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 1.8em;
    font-weight: bold;
}

header .logo img {
    width: 50px; /* Logo size */
    height: auto;
}

header nav {
    display: flex;
    gap: 20px;
}

header nav a {
    text-decoration: none;
    font-weight: bold;
    color: #FFFFFF;
    font-size: 1em;
    transition: color 0.3s;
}

header nav a:hover {
    color: #F5F5F5; /* Light gray on hover */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #CD5C5C, #B22222); /* Teal gradient */
    color: #FFFFFF;
    text-align: center;
    padding: 60px 20px;
    border-bottom: 4px solid #BDBDBD;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero .button {
    display: inline-block;
    background: #F5F5F5;
    color: #CD5C5C;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.hero .button:hover {
    background: #FFFFFF;
    color: #B22222; /* Darker teal */
}

/* Main Content */
main {
    padding: 20px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

main h2 {
    font-size: 2em;
    color: #CD5C5C;
    margin-bottom: 10px;
}

main p {
    margin-bottom: 20px;
    color: #333333;
}

/* Footer */
footer {
    background: #B22222; /* Dark teal */
    color: #FFFFFF;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    margin-top: 20px;
}

footer a {
    color: #BDBDBD; /* Silver links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

footer a:hover {
    color: #FFFFFF; /* White on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    header nav {
        flex-direction: column;
        gap: 10px;
    }

    .hero {
        padding: 40px 20px;
    }

    main h2 {
        font-size: 1.8em;
    }

    main p {
        font-size: 1em;
    }
}



/* Pros and Cons */
.pros {
    margin-bottom: 20px;
}

.pros h3 {
    color: #CD5C5C; /* Deep teal for pros heading */
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
}

.pros ul {
    list-style: none; /* Remove default bullet points */
    padding-left: 0; /* Align text to the left */
}

.pros li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 1em;
    color: #333333; /* Charcoal for text */
}

.pros li::before {
    content: '✔'; /* Checkmark for pros */
    color: #CD5C5C; /* Teal for icon */
    font-weight: bold;
    margin-right: 10px;
}

/* Cons */
.cons {
    margin-bottom: 20px;
}

.cons h3 {
    color: #D32F2F; /* Red for cons heading */
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
}

.cons ul {
    list-style: none; /* Remove default bullet points */
    padding-left: 0; /* Align text to the left */
}

.cons li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 1em;
    color: #333333; /* Charcoal for text */
}

.cons li::before {
    content: '✘'; /* Cross for cons */
    color: #D32F2F; /* Red for icon */
    font-weight: bold;
    margin-right: 10px;
}

/* Bullet List */
ul.bullet-list {
    margin: 20px 0;
    padding-left: 20px; /* Indentation for bullets */
}

ul.bullet-list li {
    margin-bottom: 8px;
    font-size: 1em;
    color: #333333; /* Charcoal for text */
}

ul.bullet-list li::marker {
    color: #CD5C5C; /* Teal bullet points */
    font-size: 1.2em; /* Larger bullet size */
}

/* Numbered List */
ol.numbered-list {
    margin: 20px 0;
    padding-left: 20px; /* Indentation for numbers */
}

ol.numbered-list li {
    margin-bottom: 8px;
    font-size: 1em;
    color: #333333; /* Charcoal for text */
}

ol.numbered-list li::marker {
    color: #CD5C5C; /* Teal numbers */
    font-size: 1.2em; /* Larger number size */
    font-weight: bold; /* Bold numbers */
}
