* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 15px 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.cookie-btn {
    background: hsl(23, 70%, 50%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.cookie-btn:hover {
    background: hsl(23, 70%, 45%);
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 18px;
}

.nav-logo-img {
    width: 32px;
    height: 32px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: hsl(23, 70%, 50%);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #333;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: hsl(23, 70%, 50%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: hsl(23, 70%, 45%);
}

/* Featured Section */
.featured {
    padding: 80px 0;
}

.featured h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.comparison-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.comparison-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comparison-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.comparison-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.comparison-card .category {
    color: hsl(23, 70%, 50%);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.comparison-card a {
    display: inline-block;
    color: hsl(23, 70%, 50%);
    text-decoration: none;
    font-weight: bold;
    border: 2px solid hsl(23, 70%, 50%);
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.comparison-card a:hover {
    background: hsl(23, 70%, 50%);
    color: white;
}

/* Disclosure Section */
.disclosure {
    background: #f8f9fa;
    padding: 60px 0;
}

.disclosure-box {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

.disclosure-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.disclosure-box p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: hsl(23, 70%, 50%);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Comparison Details */
.comparison-detail {
    padding: 40px 0;
}

.comparison-header {
    text-align: center;
    margin-bottom: 50px;
}

.comparison-header img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.comparison-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #333;
}

.comparison-header .category {
    color: hsl(23, 70%, 50%);
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.content-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.content-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
}

.content-section ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.content-section ul li:before {
    content: "•";
    color: hsl(23, 70%, 50%);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.external-links {
    text-align: center;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.external-links h2 {
    margin-bottom: 20px;
    color: #333;
}

.external-links a {
    display: inline-block;
    margin: 10px;
    padding: 12px 24px;
    background: hsl(23, 70%, 50%);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.external-links a:hover {
    background: hsl(23, 70%, 45%);
}

/* Search and Filter */
.search-filter {
    background: #f8f9fa;
    padding: 40px 0;
}

.search-filter-content {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.search-input,
.filter-select {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    min-width: 200px;
}

.search-input:focus,
.filter-select:focus {
    outline: none;
    border-color: hsl(23, 70%, 50%);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: hsl(23, 70%, 50%);
}

.submit-btn {
    background: hsl(23, 70%, 50%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: hsl(23, 70%, 45%);
}

/* Content Pages */
.content-page {
    padding: 40px 0;
}

.content-page h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.content-page h2 {
    font-size: 28px;
    margin: 30px 0 20px;
    color: #333;
}

.content-page h3 {
    font-size: 24px;
    margin: 25px 0 15px;
    color: #333;
}

.content-page p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #666;
}

.content-page ul,
.content-page ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-page li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #666;
}

/* Contact Info */
.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info h2 {
    margin-bottom: 30px;
    color: #333;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item strong {
    min-width: 80px;
    color: #333;
}

.contact-item a {
    color: hsl(23, 70%, 50%);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .search-filter-content {
        flex-direction: column;
        align-items: stretch;
    }

    .search-input,
    .filter-select {
        min-width: auto;
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }
}