/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #181515;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffffff;
}

h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffffff;
}

h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

p {
    margin-bottom: 1rem;
    color: #e0e0e0;
}

a {
    color: #448756;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5ba06a;
}

/* Header */
.header {
    background-color: #272525;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation */
.nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover, .nav a.active {
    color: #448756;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background-color: #448756;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #5ba06a;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #181515;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 1rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #272525;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu .nav {
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu .header-buttons {
    flex-direction: column;
    margin-top: 1rem;
    gap: 0.5rem;
}

/* Main Content */
.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #181515 0%, #272525 100%);
    margin-bottom: 3rem;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections */
.section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #272525;
    border-radius: 10px;
}

.section h2 {
    color: #448756;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #181515;
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #333;
}

th {
    background-color: #448756;
    color: #ffffff;
    font-weight: bold;
}

tr:hover {
    background-color: #2a2a2a;
}

/* Lists */
ul {
    list-style: none;
    padding-left: 0;
}

li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

li:before {
    content: "•";
    color: #448756;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.image-container {
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* CTA Buttons */
.cta-section {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section .btn {
    margin: 0.5rem;
    min-width: 200px;
}

/* Footer */
.footer {
    background-color: #272525;
    padding: 2rem 0;
    margin-top: 3rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
}

.footer-links a:hover {
    color: #448756;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 1rem;
    color: #999;
}

.logo {
    height: 30px;
    display: block;
}

.logo img {
    margin: 0;
    height: 100%;
}

@media (max-width: 1440px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav {
        display: none;
    }

    .mobile-menu .nav {
        display: flex;
        text-align: center;
    }
}

.banner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.banner-content h2 {
    margin-bottom: 0;
    text-shadow: 2px 5px 5px rgba(0,0,0,1);
}

.banner-content p {
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    text-shadow: 2px 5px 5px rgba(0,0,0,1);
}

@media (max-width: 480px) {
    .header-container {
        flex-wrap: wrap;
    }

    .btn i {
        display: none;
    }
    
    .header-buttons {
        width: 100%;
        justify-content: center;
        order: 3;
        margin-top: 15px;
    }

    .header-buttons .btn {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    .banner {
        min-height: 200px;
    }

    .banner-content h2 {
        font-size: 18px;
    }

    .banner-content p {
        font-size: 14px;
    }

    .banner-content .btn {
        padding: 10px;
        font-size: 14px;
    }

    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        min-height: 44px;
        padding: 0.8rem 1.2rem;
    }
    
    .cta-section .btn {
        min-width: 150px;
        margin: 0.3rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .table-container {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 0.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .main {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Animation for buttons */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.btn:hover {
    animation: pulse 0.3s ease-in-out;
}

/* Star ratings */
.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

/* Comparison tables */
.comparison-table th:first-child {
    background-color: #448756;
}

.comparison-table td:first-child {
    background-color: #2a2a2a;
    font-weight: bold;
}
