/* --- Root Variables for Easy Theme Switching --- */
:root {
    --color-background-dark: #121212; /* Deep Black/Gray */
    --color-surface: #1e1e1e;       /* Card/Section Background */
    --color-text-light: #e0e0e0;    /* Main Text */
    --color-primary: #00bcd4;       /* Teal/Cyan (Modern Tech Look) */
    --color-accent: #ff9800;        /* Orange/Amber (Action/Price Highlight) */
    --color-shadow: rgba(0, 0, 0, 0.5);
    --font-primary: 'Roboto', sans-serif;
}

/* --- Import Google Font (Roboto) --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

/* --- Base Styles --- */
body {
    font-family: var(--font-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--color-background-dark);
    color: var(--color-text-light);
    transition: background-color 0.3s;
}

.container {
    width: 90%;
    max-width: 1300px; /* Slightly wider */
    margin: 0 auto;
    padding: 20px 0;
}

/* --- Header & Navigation --- */
.site-header {
   /* background-color: var(--color-surface); */
	background-color: #000000;
    color: var(--color-text-light);
    padding: 20px 0;
    box-shadow: 0 4px 10px var(--color-shadow);
    border-bottom: 2px solid var(--color-primary);
}

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

.site-header nav a {
    color: var(--color-text-light);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 400;
    padding: 5px 0;
    transition: color 0.3s, border-bottom 0.3s;
}

.site-header nav a:hover {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 25px;
    margin-top: 15px;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn.primary {
    background-color: var(--color-primary);
    color: var(--color-background-dark);
    box-shadow: 0 4px 10px rgba(0, 187, 212, 0.4);
    border: none;
}

.btn.primary:hover {
    background-color: #00e5ff; /* Lighter primary */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 187, 212, 0.6);
}

/* --- Homepage Sections --- */
.hero {
    background: linear-gradient(135deg, #1e1e1e, #0a0a0a);
    padding: 80px 50px;
    margin: 30px 0;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 15px var(--color-shadow);
    border: 1px solid #333;
}

.hero h2 {
    font-size: 2.8em;
    color: var(--color-accent);
    margin-bottom: 10px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2em;
    color: #bdbdbd;
}

.agent-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.agent-list h2 {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 2.2em;
    color: var(--color-primary);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.agent-card {
    background-color: var(--color-surface);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px var(--color-shadow);
    border: 1px solid #333;
    transition: transform 0.3s, box-shadow 0.3s;
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--color-shadow);
    border-color: var(--color-primary);
}

.agent-card h3 {
    color: var(--color-primary);
    margin-top: 0;
    font-size: 1.5em;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* --- Product Page Styling --- */
.product-page article {
    background-color: var(--color-surface);
    padding: 50px;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 8px 15px var(--color-shadow);
    border: 1px solid #333;
}

.product-page h2 {
    font-size: 2.5em;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.agent-main-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 4px 8px var(--color-shadow);
}

.product-details h3 {
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 8px;
    color: var(--color-primary);
    margin-top: 40px;
    font-size: 1.8em;
}

#product-features li {
    background-color: #2a2a2a;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 4px;
    list-style: none;
    position: relative;
    padding-left: 30px;
}

#product-features li::before {
    content: '★'; /* Star icon */
    color: var(--color-accent);
    font-size: 1.2em;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}


.pricing-box {
    border: 3px solid var(--color-accent);
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
}

.price {
    font-size: 3.5em;
    font-weight: 700;
    color: var(--color-accent);
    display: block;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
}

.buy-now-section p {
    color: #bdbdbd;
    margin: 10px 0;
}

.buy-now-section .note {
    font-size: 1em;
    color: var(--color-primary);
    margin-top: 15px;
    font-style: italic;
}

/* Adjust PayPal button for dark theme visibility if necessary */
.buy-now-section form {
    margin-top: 20px;
}

/* --- Footer --- */
.site-footer {
    text-align: center;
    padding: 20px 0;
    background-color: var(--color-surface);
    color: #888;
    margin-top: 50px;
    border-top: 1px solid #333;
}
/* --- Logo Styling --- */
.logo-container {
    height: 50px; /* Set a fixed height for the container */
}

.site-logo {
    height: 75px; /* Set the height of the image */
    width: auto;
    display: block;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Ensure the header container aligns items correctly */
}