/* Basic Reset & Defaults */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fdfaf5; /* Light sandy background */
    margin: 0;
}

/* Header */
header {
    background-color: #8B4513; /* Saddle brown */
    color: #fff;
    text-align: center;
    padding: 2em 1em;
    margin-bottom: 2em;
}

header h1 {
    font-weight: 600;
    margin-bottom: 0.2em;
}

header p {
    font-weight: 300;
    font-size: 1.1em;
}

/* Main Content Area */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1em;
}

/* Sections */
section {
    margin-bottom: 2.5em;
    padding: 1.5em;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#intro p {
    font-size: 1.1em;
    margin-top: 1em;
    text-align: center;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto 1em auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

h2 {
    text-align: center;
    margin-bottom: 1.5em;
    font-weight: 600;
    color: #d95f18; /* Burnt orange */
}

/* Pro/Con Points Layout */
.content-section .point {
    display: flex;
    flex-direction: column; /* Stack image and text by default */
    align-items: center;
    margin-bottom: 2em;
    text-align: center;
}

.content-section .point img {
    width: 100%;
    max-width: 350px; /* Limit image size */
    height: auto;
    border-radius: 5px;
    margin-bottom: 1em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.content-section .point div {
   max-width: 500px; /* Limit text width */
}

.content-section .point h3 {
    margin-bottom: 0.5em;
    font-weight: 600;
    color: #5a3a2e; /* Darker brown */
}

.content-section .point p {
    font-weight: 300;
}

/* No-image points (take full width) */
.point.no-image div {
    max-width: 100%;
    text-align: center;
}
.point.no-image {
    text-align: center;
    padding: 0 1em; /* Add some padding */
}

/* Conclusion */
#conclusion {
    background-color: #f0eade; /* Lighter sandy color */
    text-align: center;
}

#conclusion h2 {
     color: #8B4513;
}

#conclusion p {
    margin-bottom: 1em;
}

#conclusion strong {
    font-weight: 600;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 3em;
    padding: 1em;
    font-size: 0.9em;
    color: #666;
}

/* Responsive Design */
@media (min-width: 768px) {
    .content-section .point {
        flex-direction: row; /* Side-by-side layout on larger screens */
        text-align: left;
        align-items: flex-start; /* Align items to the top */
        gap: 1.5em; /* Space between image and text */
    }

    /* Alternate image position for visual interest */
    #pros .point:nth-child(odd) img,
    #cons .point:nth-child(odd) img {
        order: 0; /* Image first */
    }
     #pros .point:nth-child(even),
     #cons .point:nth-child(even) {
         flex-direction: row-reverse; /* Text first, Image second */
     }
     #pros .point:nth-child(even) img,
     #cons .point:nth-child(even) img {
         order: 1;
     }


    .content-section .point img {
        max-width: 250px; /* Adjust image size for side-by-side */
        margin-bottom: 0;
    }

    .content-section .point div {
       max-width: none; /* Remove max-width limit */
       flex: 1; /* Allow text to take remaining space */
    }

    .point.no-image {
      padding: 0; /* Reset padding */
    }
    .point.no-image div {
       text-align: left;
    }
}