:root {
    /* Updated Theme based on specific RGBs */
    --brand-header-bg: rgb(30, 36, 23);   /* Specific dark header background */
    --brand-hero-bg: rgb(46, 60, 30);     /* Specific dark olive for hero section */
    
    --brand-primary-accent: #c6e093; /* Lime green for "Welcome"-like text and main button */
    --brand-primary-accent-text: rgb(30, 36, 23); /* Dark text for use on the lime green button (matches header bg for consistency) */
    
    --brand-hero-text-primary: var(--brand-primary-accent); /* Primary text in hero (like "Welcome") */
    --brand-hero-text-secondary: #f0f2ef; /* Subtitle text in hero (light off-white) */
    
    --page-bg: #f7f6f2; /* Very light cream/off-white for main page background */
    --section-title-text: #3e5037; /* Darker olive green for section titles (can be adjusted if needed) */
    
    --text-body-dark: #374151; /* Standard dark gray for body text on light backgrounds */
    --text-light: #f7f6f2; /* General light text for use on dark backgrounds */
    
    --border-color: #d1d5db; /* Light gray for borders (e.g., table) */
    /* --decorative-shape-dark: var(--brand-hero-bg); REMOVED as shapes are removed */

    --pricing-table-header-bg: var(--brand-hero-bg); 
    --pricing-table-header-text: var(--text-light);
    --pricing-table-stripe-bg: #e9ede6; /* Very light, slightly green-tinged gray for table stripes */
    
    --special-offer-bg: #e1eed0; /* Lighter shade of the accent green */
    --special-offer-border: var(--brand-primary-accent);
    --special-offer-text: var(--section-title-text); /* Dark green text for offer box */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background-color: var(--page-bg);
    color: var(--text-body-dark);
    line-height: 1.6;
    position: relative; 
    overflow-x: hidden; 
}

/* REMOVED body::before and body::after rules for decorative shapes */

header {
    background-color: var(--brand-header-bg); 
    color: var(--text-light);
    text-align: center; /* Kept for general alignment if other inline/inline-block elements are added */
    padding: 1.25rem 0; 
    position: relative; 
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Added for better UI separation */
}

header .container img {
    display: block; /* Ensures the image is a block element */
    margin-left: auto; /* Centers the block element */
    margin-right: auto; /* Centers the block element */
    height: 40px; /* Moved from inline style */
}

header h1 { 
    color: var(--text-light);
    font-weight: 600; 
    font-size: 2.25rem; 
    letter-spacing: -0.5px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative; 
    z-index: 0; 
}

.hero {
    padding: 4rem 1rem 3rem; 
    text-align: center;
    background-color: var(--brand-hero-bg); 
    color: var(--brand-hero-text-secondary);
    position: relative; 
    z-index: 1; 
}

.hero h1 { 
    font-size: 2.5rem; 
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--brand-hero-text-primary); 
}

.hero p { 
    font-size: 1.1rem; 
    margin-bottom: 1.5rem;
    max-width: 700px; 
    margin-left: auto;
    margin-right: auto;
    color: var(--brand-hero-text-secondary);
}

.launch-info {
    font-size: 1.15rem; 
    font-weight: 500; 
    margin-bottom: 2rem;
    color: var(--brand-hero-text-secondary);
}

.btn { 
    display: inline-block;
    background-color: transparent; 
    color: var(--brand-primary-accent); 
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 6px; 
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.05rem; 
    border: 2px solid var(--brand-primary-accent); 
}

.btn:hover {
    background-color: var(--brand-primary-accent);
    color: var(--brand-primary-accent-text); 
}

.hero .btn { 
    background-color: var(--brand-primary-accent);
    color: var(--brand-primary-accent-text); 
    font-weight: 600;
    padding: 0.85rem 2.5rem; 
    border-radius: 8px; 
    font-size: 1.1rem;
    border: none; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
    transform: none; 
}

.hero .btn:hover {
    background-color: #b9d983; 
    color: var(--brand-primary-accent-text);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.section {
    padding: 1.3rem 1rem; 
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    position: relative;
    color: var(--section-title-text); 
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 70px; 
    height: 3px; 
    background-color: var(--brand-primary-accent); 
    border-radius: 2px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(45, 51, 42, 0.1); 
    border-radius: 8px; 
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.pricing-table th, .pricing-table td {
    padding: 1rem 1.25rem; 
    border: 1px solid var(--border-color);
    color: var(--text-body-dark);
    vertical-align: middle;
}

.pricing-table th {
    background-color: var(--pricing-table-header-bg); 
    color: var(--pricing-table-header-text); 
    font-weight: 600;
    text-align: left;
}

.pricing-table tr:nth-child(even) td { 
    background-color: var(--pricing-table-stripe-bg); 
}
 .pricing-table td:first-child {
    font-weight: 500;
    color: var(--section-title-text); 
}

.special-offer {
    background-color: var(--special-offer-bg); 
    border-left: 4px solid var(--special-offer-border); 
    padding: 1.25rem; 
    margin: 2.5rem 0; 
    border-radius: 6px;
    color: var(--special-offer-text); 
}
 .special-offer strong {
    color: var(--section-title-text); 
 }

.steps {
    margin: 2rem 0;
}

.steps li {
    margin-bottom: 1.25rem; 
    list-style-type: none;
    padding-left: 2.25rem; 
    position: relative;
    color: var(--text-body-dark);
    font-size: 0.95rem;
}

.steps li:before { 
  
    color: var(--brand-primary-accent); 
    font-weight: bold;
    font-size: 1.2em;
    position: absolute;
    left: 0.25rem;
    top: 0;
}

footer {
    background-color: var(--brand-header-bg); 
    color: var(--text-light);
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem; 
    position: relative; 
    z-index: 1; 
}

.contact {
    margin-top: 2.5rem; 
    text-align: center;
    padding-bottom: 1rem;
}
.contact h3 {
    color: var(--section-title-text); 
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.contact p {
    color: var(--text-body-dark);
    font-size: 1rem;
}

.highlight { 
    font-weight: 600;
    color: var(--brand-primary-accent); 
}

.contact a { 
    color: rgb(30, 36, 23);
    font-weight: 500;
    text-decoration: none;
}
.contact a:hover {
    text-decoration: underline;
    color: #a9c873; 
}
img.guide-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }