/* CSS Reset without using * selector */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img, ul, li, form, label, article, aside, footer, header, main, nav, section, button, table, tbody, thead, tr, th, td {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #2c2c2c;
    background-color: #fcfcfc;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Typography */
h1 { font-size: 2.5rem; line-height: 1.2; font-weight: 700; color: #1a1a1a; margin-bottom: 1rem; }
h2 { font-size: 2rem; line-height: 1.3; font-weight: 600; color: #1a1a1a; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; line-height: 1.4; font-weight: 600; margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; color: #4a4a4a; font-size: 1.1rem; }

/* Layout & Containers */
.st-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Disclosure Bar */
.st-disclosure {
    background-color: #f1f1f1;
    color: #666;
    font-size: 0.85rem;
    text-align: center;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #e0e0e0;
}

/* Header */
.st-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.st-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.st-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.st-logo-img {
    height: 45px;
    width: auto;
    display: block;
    object-fit: contain;
}

.st-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.st-nav-link {
    font-weight: 500;
    color: #4a4a4a;
    transition: color 0.2s ease;
}

.st-nav-link:hover {
    color: #3b5a45;
}

/* Buttons */
.st-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.st-btn-primary {
    background-color: #3b5a45; /* elegant sage green */
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(59, 90, 69, 0.3);
}

.st-btn-primary:hover {
    background-color: #2d4535;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 90, 69, 0.4);
}

.st-btn-secondary {
    background-color: #f5f5f5;
    color: #333333;
    border: 1px solid #e0e0e0;
}

.st-btn-secondary:hover {
    background-color: #e8e8e8;
}

/* Hero Section */
.st-hero {
    padding: 5rem 0;
    background-color: #faf9f6;
    overflow: hidden;
}

.st-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.st-hero-grid > * {
    min-width: 0;
}

.st-hero-content .st-eyebrow {
    color: #3b5a45;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.st-hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.st-hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.st-hero-features {
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

.st-hero-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Sections */
.st-section {
    padding: 5rem 0;
}

.st-section-light {
    background-color: #ffffff;
}

.st-section-muted {
    background-color: #faf9f6;
}

.st-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Grid Cards */
.st-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.st-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.st-card:hover {
    transform: translateY(-5px);
}

.st-card-icon {
    font-size: 2rem;
    color: #3b5a45;
    margin-bottom: 1rem;
}

/* Review / Content Page Specifics */
.st-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

.st-content-wrapper > * {
    min-width: 0;
}

.st-article-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.st-article-body h2 {
    margin-top: 2.5rem;
}

/* Table */
.st-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 8px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.st-table th, .st-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.st-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #333;
}

.st-table tr:last-child td {
    border-bottom: none;
}

/* Sidebar */
.st-sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.st-sidebar-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1rem 0;
}

/* Footer */
.st-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.st-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.st-footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.st-footer-link {
    color: #a0a0a0;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.st-footer-link:hover {
    color: #ffffff;
}

.st-footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 101;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #1a1a1a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .st-hero-grid, .st-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .st-grid-3, .st-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .st-hero {
        padding: 3rem 0;
    }
    
    h1 { font-size: 2rem; }
    
    .st-header-inner {
        flex-direction: row;
        flex-wrap: wrap;
        height: auto;
        padding: 1rem 0;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .st-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .st-nav.active {
        display: flex;
    }
    
    .st-nav .st-btn {
        width: 100%;
        padding: 0.75rem 1rem;
    }
    
    .st-grid-3, .st-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .st-hero-actions {
        flex-direction: column;
    }
}

/* Preloader Styles */
#st-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.st-loader-text {
  font-size: 2rem;
  font-weight: 700;
  color: #3b5a45;
  animation: st-pulse 1.5s infinite;
}

@keyframes st-pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

#st-preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
