/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f1419;
    --secondary-color: #1a2332;
    --accent-color: #c9a86a;
    --accent-hover: #b89555;
    --text-primary: #2c3e50;
    --text-secondary: #5a6c7d;
    --text-light: #ffffff;
    --background-light: #fafbfc;
    --border-color: #e8eaed;
    --hero-gradient-start: #1a2332;
    --hero-gradient-end: #2d3e50;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: linear-gradient(to bottom, #fafbfc 0%, #f5f7fa 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Header Styles */
.header {
    background-color: var(--primary-color);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.logo-image {
    width: 42px;
    height: 42px;
    transition: var(--transition);
}

.logo:hover .logo-image {
    transform: rotate(5deg) scale(1.05);
}

.logo h2 {
    color: var(--accent-color);
    font-size: 1.75rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-desktop a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: var(--transition);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), rgba(201, 168, 106, 0.5));
    transition: var(--transition);
}

.nav-desktop a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(201, 168, 106, 0.3);
}

.nav-desktop a:hover::after {
    width: 100%;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background-color: var(--text-light);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    background-color: var(--secondary-color);
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    padding: 2rem 0;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.nav-mobile.active {
    transform: translateY(0);
}

.nav-mobile ul {
    list-style: none;
    text-align: center;
}

.nav-mobile li {
    margin: 1.5rem 0;
}

.nav-mobile a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-mobile a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(201,168,106,0.15)"/></svg>');
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Review Section */
.review-section {
    padding: 4rem 0;
    background: transparent;
}

.review-content-simple {
    max-width: 900px;
    margin: 0 auto;
}

.review-content-simple h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.review-content-simple h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    padding-left: 0;
}

.review-content-simple p {
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    text-align: justify;
}

/* Bullet and Numbered Lists */
.review-content-simple ul:not(.pros-list):not(.cons-list) {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.review-content-simple ul:not(.pros-list):not(.cons-list) li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    color: var(--text-primary);
    line-height: 1.7;
}

.review-content-simple ul:not(.pros-list):not(.cons-list) li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.review-content-simple ol {
    list-style: none;
    counter-reset: list-counter;
    padding-left: 0;
    margin: 1.5rem 0;
}

.review-content-simple ol li {
    padding: 0.5rem 0 0.5rem 2.5rem;
    position: relative;
    color: var(--text-primary);
    line-height: 1.7;
    counter-increment: list-counter;
}

.review-content-simple ol li::before {
    content: counter(list-counter) ".";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 2rem;
}

/* Nested lists */
.review-content-simple ul:not(.pros-list):not(.cons-list) ul,
.review-content-simple ol ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.review-content-simple ul:not(.pros-list):not(.cons-list) ul li::before {
    content: '◦';
    font-size: 1.2rem;
}

/* Image Styles */
.review-content-simple img {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

/* Image with caption */
.review-content-simple figure {
    margin: 2rem 0;
}

.review-content-simple figure img {
    margin-bottom: 0.75rem;
}

.review-content-simple figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Responsive images */
@media (max-width: 768px) {
    .review-content-simple img {
        margin: 1.5rem auto;
    }
}

/* Pros and Cons inside Review Section */
.review-content-simple .pros-cons-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0 2rem;
}

.review-content-simple .pros-box,
.review-content-simple .cons-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.review-content-simple .pros-box:hover,
.review-content-simple .cons-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.review-content-simple .pros-box {
    border-top: 4px solid #4caf50;
}

.review-content-simple .cons-box {
    border-top: 4px solid #f44336;
}

.review-content-simple .pros-header,
.review-content-simple .cons-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.review-content-simple .pros-header h3,
.review-content-simple .cons-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.review-content-simple .icon-check,
.review-content-simple .icon-cross {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.review-content-simple .icon-check {
    color: #4caf50;
}

.review-content-simple .icon-cross {
    color: #f44336;
}

.review-content-simple .pros-list,
.review-content-simple .cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.review-content-simple .pros-list li,
.review-content-simple .cons-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-primary);
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.review-content-simple .pros-list li:last-child,
.review-content-simple .cons-list li:last-child {
    border-bottom: none;
}

.review-content-simple .pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.2rem;
}

.review-content-simple .cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

thead th {
    color: var(--text-light);
    font-weight: 600;
    text-align: left;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--accent-color);
}

tbody tr {
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

tbody tr:last-child {
    border-bottom: none;
}

tbody tr:hover {
    background-color: rgba(201, 168, 106, 0.05);
}

tbody td {
    padding: 1.25rem 1.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    vertical-align: top;
}

tbody tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

tbody tr:nth-child(even):hover {
    background-color: rgba(201, 168, 106, 0.05);
}

/* Responsive table */
@media (max-width: 768px) {
    table {
        font-size: 0.9rem;
    }
    
    thead th,
    tbody td {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    thead th,
    tbody td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a0e13 100%);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(201, 168, 106, 0.1);
    border: 1px solid rgba(201, 168, 106, 0.3);
    border-radius: 50%;
    transition: var(--transition);
    font-weight: 600;
}

.social-links a:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(201, 168, 106, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Typography adjustments */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    p {
        font-size: 1rem;
    }

    /* Header */
    .nav-desktop {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .nav-mobile {
        display: block;
    }

    /* Hero */
    .hero {
        padding: 3rem 0;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* Review Section */
    .review-section {
        padding: 3rem 0;
    }

    /* Pros and Cons Mobile */
    .review-content-simple .pros-cons-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-content-simple .pros-box,
    .review-content-simple .cons-box {
        padding: 1.5rem;
    }
    
    .review-content-simple .pros-header h3,
    .review-content-simple .cons-header h3 {
        font-size: 1.3rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .review-content-simple p {
        text-align: left;
    }

    /* Pros and Cons Small Mobile */
    .review-content-simple .pros-box,
    .review-content-simple .cons-box {
        padding: 1.25rem;
    }
    
    .review-content-simple .pros-list li,
    .review-content-simple .cons-list li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }
}




