/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #fef3c7;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-icon {
    height: 2rem;
    width: 2rem;
    color: #d97706;
}

.nav-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d97706;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hero-content {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 0 2rem;
    }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-accent {
    color: #fbbf24;
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn {
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-primary {
    background-color: #d97706;
    color: white;
}

.btn-primary:hover {
    background-color: #b45309;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-secondary:hover {
    background-color: white;
    color: #1f2937;
}

/* Core Aspects Section */
.aspects {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #fffbeb, white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 32rem;
    margin: 0 auto;
}

.aspects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .aspects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aspect-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.aspect-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
}

.aspect-icon svg {
    height: 2rem;
    width: 2rem;
}

.aspect-icon-amber {
    background-color: #fef3c7;
    color: #d97706;
}

.aspect-card:hover .aspect-icon-amber {
    background-color: #fde68a;
}

.aspect-icon-green {
    background-color: #dcfce7;
    color: #16a34a;
}

.aspect-card:hover .aspect-icon-green {
    background-color: #bbf7d0;
}

.aspect-icon-blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.aspect-card:hover .aspect-icon-blue {
    background-color: #bfdbfe;
}

.aspect-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.aspect-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.aspect-link {
    color: #d97706;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.aspect-link:hover {
    color: #b45309;
}

.aspect-link-green {
    color: #16a34a;
}

.aspect-link-green:hover {
    color: #15803d;
}

.aspect-link-blue {
    color: #2563eb;
}

.aspect-link-blue:hover {
    color: #1d4ed8;
}

.link-arrow {
    margin-left: 0.5rem;
    height: 1rem;
    width: 1rem;
    transition: transform 0.3s ease;
}

.aspect-link:hover .link-arrow {
    transform: translateX(0.25rem);
}

/* Blog Section */
.blog {
    padding: 5rem 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.blog-image {
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.meta-icon {
    height: 1rem;
    width: 1rem;
    margin-right: 0.25rem;
}

.meta-separator {
    margin: 0 0.5rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #d97706;
}

.blog-excerpt {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-link {
    color: #d97706;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #b45309;
}

.blog-link:hover .link-arrow {
    transform: translateX(0.25rem);
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 0;
    background: linear-gradient(to right, #d97706, #ea580c);
}

.newsletter-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .newsletter-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .newsletter-container {
        padding: 0 2rem;
    }
}

.newsletter-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .newsletter-content {
        padding: 3rem;
    }
}

.newsletter-icon {
    height: 4rem;
    width: 4rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.newsletter-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .newsletter-title {
        font-size: 2.25rem;
    }
}

.newsletter-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 28rem;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-group {
        flex-direction: row;
    }
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    border: none;
    color: #1f2937;
    font-size: 1rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: #6b7280;
}

.newsletter-input:focus {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.newsletter-button {
    background: white;
    color: #d97706;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.newsletter-button:hover {
    background: #f3f4f6;
    transform: scale(1.05);
}

.newsletter-disclaimer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-brand {
        margin-bottom: 0;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-icon {
    height: 2rem;
    width: 2rem;
    color: #d97706;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-description {
    color: #9ca3af;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .newsletter-title {
        font-size: 1.75rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.125rem;
    }
}

.home .ast-container {
  max-width: 1200px;
  padding: 0 20px;
}
.hero-image img {
  width: 100%;
  height: auto;
}
.home .ast-container,
.home .site-content {
  max-width: 100% !important;
  padding: 0 !important;
}

.home .content-area {
  margin: 0 !important;
}

.home .site-main {
  padding: 0 !important;
}
#content h1, h1 strong { color: #e59866; }
#content h2, h2 strong { color: #dc7633; }
#content h3, h3 strong { color: #d35400; }
#content h4, h4 strong { color: #ba4a00; }
#content h5, h5 strong { color: #a04000; }
#content h6, h6 strong { color: #873600; }

.tips-3 {
  background-color: #fff8e1;       /* soft yellow background */
  border-left: 6px solid #fbc02d;  /* bold yellow border for visual cue */
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin: 1.5em 0;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.tips-1{
padding: 15px 10px;
background: #FFFBCE;
border-radius: 15px;
}
span.tips-1 {
    background: #FFED00;
    padding: .6em .6em;
    font-weight: 600;
    font-size: 1.1em;
    top: -25px;
    left: -25px;
    display: inline-block;
    position: relative;
    border: 2px solid #f7cb88;
}
span.tips-1:before {
    font-family: 'ch';
    margin-right: 7px;
    vertical-align: text-bottom;
    font-size: larger;
}
.tips-2 {
    background: #e5e5e5;
    padding: 15px 10px;
    border: 2px solid #ffb366;
}
