body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    color: #333;
    background-color: #f0f2f5;
}

header {
    background: #1a2a6c;
    color: #fff;
    padding: 1.5rem 0;
    text-align: center;
}

.logo { 
    font-size: 1.8rem; 
    font-weight: bold; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
}

nav {
    background: #b21f1f;
    display: flex;
    justify-content: center;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Base link styling */
nav a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: none;
    font-size: 16px;
}

nav a:hover, .dropdown:focus-within .dropbtn { 
    background-color: #fdbb2d; 
    color: #1a2a6c; 
}

/* The Container for the dropdown */
.dropdown { 
    display: inline-block; 
    position: relative; 
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* CLICK TRIGGER: Show menu when the dropdown div or any child is focused */
.dropdown:focus-within .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.dropdown-content a:hover { 
    background-color: #f1f1f1; 
}

/* Visual indicator that it's a menu */
.dropbtn::after {
    content: ' ▼';
    font-size: 0.7rem;
    vertical-align: middle;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-radius: 12px;
}

h1 { 
    color: #1a2a6c; 
    border-left: 8px solid #b21f1f; 
    padding-left: 15px; 
}

.pros-cons { 
    background: #f8f9fa; 
    padding: 20px; 
    margin-top: 20px; 
    border-radius: 8px; 
    border: 1px solid #ddd; 
}

p { text-align: justify; margin-bottom: 20px; }
