* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark-teal: #2d4a4f;
    --text-white: #ffffff;
    --text-light: #f5f5f5;
    --accent-orange: #ff6b35;
    --accent-red: #d62828;
    --accent-green: #06a77d;
    --accent-yellow: #ffd23f;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-dark-teal);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.disclaimer-banner {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 12px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    width: 100%;
    margin: 0;
}

.disclaimer-banner p {
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 74, 79, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
    margin: 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-email {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 4px;
}

.header-email:hover {
    color: var(--accent-green);
    background-color: rgba(6, 167, 125, 0.1);
}

.logo a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 1.5px;
    line-height: 1.2;
    text-transform: uppercase;
}

.logo-tagline {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    margin-top: 2px;
    text-transform: none;
}

.logo a:hover {
    opacity: 0.9;
}

.logo a:hover .logo-text {
    color: var(--accent-green);
}

.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.main-nav a:not(.contact-cta):hover {
    opacity: 0.7;
}

.main-nav a:not(.contact-cta)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-white);
    transition: width 0.3s ease;
}

.main-nav a:not(.contact-cta):hover::after {
    width: 100%;
}

.contact-cta {
    background: linear-gradient(135deg, var(--accent-green) 0%, #048a6a 100%);
    color: var(--text-white) !important;
    padding: 10px 24px !important;
    border-radius: 25px;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(6, 167, 125, 0.3);
    transition: all 0.3s ease;
    margin-left: 10px;
}

.contact-cta:hover {
    opacity: 1 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 167, 125, 0.4);
    background: linear-gradient(135deg, #07b88a 0%, var(--accent-green) 100%);
}

.contact-cta::after {
    display: none;
}

.main-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
    margin-top: 70px;
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 650px;
    overflow: hidden;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-interpolation-mode: bicubic;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    animation: slideUp 1.2s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-title {
    font-size: clamp(60px, 12vw, 180px);
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 0.9;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 32px);
    font-style: italic;
    color: var(--text-white);
    font-family: Georgia, 'Times New Roman', serif;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.main-content {
    min-height: 50vh;
    padding: 0;
    margin: 0;
    max-width: 100%;
}

.seo-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.seo-section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.seo-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.3) blur(2px);
}

.seo-section-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 40px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.seo-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content-wrapper h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.seo-content-wrapper h3 {
    font-size: 26px;
    font-weight: 500;
    color: var(--text-white);
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.4;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.seo-content-wrapper p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 25px;
    text-align: justify;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.faq-section {
    background-color: #ffffff;
    padding: 70px 40px 0;
    min-height: auto;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faq-left {
    position: sticky;
    top: 90px;
}

.faq-graphic {
    position: relative;
    margin-bottom: 40px;
    height: 80px;
}

.faq-avatar {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    position: absolute;
    background-color: #e0e0e0;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-avatar-1 {
    left: 0;
    top: 0;
    z-index: 2;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.faq-avatar-2 {
    left: 30px;
    top: 20px;
    z-index: 1;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.faq-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #718096;
    margin: 0;
}

.faq-right {
    padding-top: 20px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #4a5568;
}

.faq-question span:first-child {
    font-size: 17px;
    font-weight: 500;
    color: #2d3748;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-size: 12px;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #4a5568;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #718096;
    margin: 0;
    padding-top: 8px;
}

/* Blog SEO section (two columns: text + circular image) */
.blog-seo-section {
    background-color: #e8f2f3;
    padding: 80px 40px;
}

.blog-seo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.blog-seo-text h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 38px;
    font-weight: 700;
    color: #2d4a4f;
    margin-bottom: 24px;
    line-height: 1.2;
}

.blog-seo-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #2d4a4f;
    margin-bottom: 28px;
}

.blog-seo-cta {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--bg-dark-teal);
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.blog-seo-cta:hover {
    background-color: #1a2528;
    transform: translateY(-2px);
}

.blog-seo-note {
    margin-top: 20px;
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 0;
}

.blog-seo-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-seo-image {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(45, 74, 79, 0.15);
}

.legal-page {
    background-color: #ffffff;
    padding: 70px 40px 80px;
    min-height: 80vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.2;
}

.last-updated {
    color: #718096;
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.legal-container section {
    margin-bottom: 50px;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    margin-top: 40px;
    line-height: 1.3;
}

.legal-container h2:first-of-type {
    margin-top: 0;
}

.legal-container h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4a5568;
    margin-top: 25px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 18px;
    text-align: justify;
}

.legal-container .legal-trademarks {
    font-size: 14px;
    color: #718096;
}

.legal-container ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 12px;
}

.legal-container strong {
    color: #2d3748;
    font-weight: 600;
}

.articles-page,
.contact-page,
.about-page {
    padding-top: 70px;
    background-color: #ffffff;
}

.articles-hero,
.contact-hero,
.about-hero {
    background-color: var(--bg-dark-teal);
    padding: 80px 40px;
    text-align: center;
}

.articles-hero-content h1,
.contact-hero-content h1,
.about-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.articles-hero-content p,
.contact-hero-content p,
.about-hero-content p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Home page articles section */
.home-articles-section {
    background-color: #ffffff;
    padding: 80px 40px 60px;
}

.home-articles-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.home-articles-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.2;
}

.home-articles-header p {
    font-size: 18px;
    color: #718096;
    margin: 0;
    line-height: 1.6;
}

.home-articles-cta {
    text-align: center;
    margin-top: 50px;
}

.home-articles-link {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--bg-dark-teal);
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.home-articles-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.articles-list {
    padding: 80px 40px;
}

.category-filters {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 0 20px;
}

.category-filter {
    padding: 10px 20px;
    background-color: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-filter:hover {
    background-color: #edf2f7;
    border-color: var(--bg-dark-teal);
    color: var(--bg-dark-teal);
}

.category-filter.active {
    background-color: var(--bg-dark-teal);
    border-color: var(--bg-dark-teal);
    color: var(--text-white);
}

.articles-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.article-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.article-content {
    padding: 25px;
}

.article-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--bg-dark-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.article-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-content h2 a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-content h2 a:hover {
    color: var(--bg-dark-teal);
}

.article-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #718096;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.article-date {
    font-size: 13px;
    color: #a0aec0;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--bg-dark-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1a2528;
}

.articles-cta {
    background-color: #f7fafc;
    padding: 60px 40px;
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    color: #718096;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--bg-dark-teal);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1a2528;
}

.contact-content {
    padding: 80px 40px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 16px;
    color: #718096;
    margin: 0;
}

.info-note {
    background-color: #f7fafc;
    padding: 20px;
    margin-top: 30px;
    border-radius: 4px;
}

.info-note p {
    font-size: 14px;
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
}

.contact-form {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bg-dark-teal);
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background-color: var(--bg-dark-teal);
    color: var(--text-white);
    padding: 14px 35px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #1a2528;
}

.form-note {
    font-size: 13px;
    color: #a0aec0;
    margin-top: 10px;
}

.contact-faq {
    background-color: #f7fafc;
    padding: 60px 40px;
}

.faq-container-small {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container-small h2 {
    font-size: 32px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
    text-align: center;
}

.faq-item-small {
    background-color: #ffffff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item-small h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.faq-item-small p {
    font-size: 15px;
    color: #718096;
    line-height: 1.7;
    margin: 0;
}

.about-content {
    padding: 80px 40px;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.about-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.about-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

.highlight-box {
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 8px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #718096;
    margin: 0;
}

.warning-box {
    background-color: #fff5f5;
    padding: 25px;
    border-radius: 4px;
    margin-top: 20px;
}

.warning-box p {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.warning-box ul {
    margin: 15px 0;
}

.warning-box li {
    color: #4a5568;
}

.contact-link {
    display: inline-block;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--bg-dark-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1a2528;
}

.article-page {
    padding-top: 70px;
    background-color: #ffffff;
}

.article-single {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.article-header {
    margin-bottom: 40px;
}

.article-header .article-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--bg-dark-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.article-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.2;
}

.article-meta-single {
    font-size: 14px;
    color: #a0aec0;
    margin: 0;
}

.article-image-main {
    width: 100%;
    height: 400px;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.article-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    line-height: 1.8;
}

.article-intro {
    font-size: 20px;
    font-weight: 500;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
}

.article-body h2 {
    font-size: 32px;
    font-weight: 600;
    color: #2d3748;
    margin-top: 50px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-body h2:first-of-type {
    margin-top: 0;
}

.article-body h3 {
    font-size: 24px;
    font-weight: 600;
    color: #4a5568;
    margin-top: 35px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-body p {
    font-size: 17px;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 20px;
    text-align: justify;
}

.article-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e2e8f0;
}

.back-link {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--bg-dark-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #1a2528;
}

.related-articles {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #e2e8f0;
}

.related-articles h2 {
    font-size: 32px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 40px;
    text-align: center;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.related-article-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.related-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.related-article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

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

.related-article-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-article-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--bg-dark-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.related-article-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.3;
    flex: 1;
}

.related-article-content h3 a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-article-content h3 a:hover {
    color: var(--bg-dark-teal);
}

.related-article-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #718096;
    margin: 0;
}

.main-footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 60px 40px 30px;
    margin-top: 0;
}

.footer-disclaimer-wrap {
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-disclaimer {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.7;
}

.footer-disclaimer p {
    margin-bottom: 14px;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-disclaimer-warning {
    background-color: rgba(220, 53, 69, 0.15);
    padding: 16px 20px;
    margin: 18px 0;
    border-radius: 0 6px 6px 0;
}

.footer-disclaimer-warning strong {
    color: #ff6b6b;
}

.footer-disclaimer-trademarks {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 13px;
}

.footer-logo {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-logo-text {
    display: inline-block;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--text-white);
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.1));
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px 40px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    color: var(--text-light);
    font-size: 14px;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-decline {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.cookie-accept {
    background-color: var(--accent-green);
    color: var(--text-white);
}

.cookie-accept:hover {
    background-color: #058a6a;
}

.cookie-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .header-container {
        padding: 18px 30px;
    }

    .main-nav {
        gap: 25px;
    }

    .hero-overlay {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .disclaimer-banner {
        font-size: 11px;
        padding: 10px 15px;
    }

    .header-container {
        padding: 15px 20px;
    }

    .header-left {
        gap: 15px;
    }

    .header-email {
        font-size: 11px;
        padding: 4px 8px;
    }

    .logo-text {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .logo-tagline {
        font-size: 9px;
    }

    .main-nav {
        position: fixed;
        top: 107px;
        left: 0;
        right: 0;
        background-color: rgba(45, 74, 79, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
    }

    .main-nav .contact-cta {
        margin-left: 0;
        text-align: center;
        width: 100%;
        padding: 12px 24px !important;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
        max-height: 0;
        overflow: hidden;
    }

    .main-nav.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-section {
        margin-top: 70px;
        height: 75vh;
        min-height: 500px;
    }

    .hero-overlay {
        padding: 40px 30px;
    }

    .hero-title {
        font-size: clamp(40px, 15vw, 120px);
    }

    .hero-subtitle {
        font-size: clamp(16px, 4vw, 24px);
    }

    .main-content {
        padding: 0;
    }

    .seo-section {
        min-height: 70vh;
    }

    .seo-section-content {
        padding: 50px 25px;
    }

    .seo-content-wrapper h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .seo-content-wrapper h3 {
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 18px;
    }

    .seo-content-wrapper p {
        font-size: 15px;
        text-align: left;
        line-height: 1.8;
    }

    .faq-section {
        padding: 60px 25px;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-left {
        position: static;
    }

    .faq-title {
        font-size: 36px;
    }

    .faq-intro {
        font-size: 15px;
    }

    .blog-seo-section {
        padding: 60px 25px;
    }

    .blog-seo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-seo-text h2 {
        font-size: 28px;
    }

    .blog-seo-text p {
        font-size: 16px;
    }

    .blog-seo-image-wrap {
        order: -1;
    }

    .blog-seo-image {
        max-width: 280px;
    }

    .faq-question span:first-child {
        font-size: 16px;
    }

    .legal-page {
        padding: 120px 25px 60px;
    }

    .legal-container h1 {
        font-size: 32px;
    }

    .legal-container h2 {
        font-size: 24px;
    }

    .legal-container h3 {
        font-size: 18px;
    }

    .legal-container p,
    .legal-container li {
        font-size: 15px;
        text-align: left;
    }

    .articles-hero,
    .contact-hero,
    .about-hero {
        padding: 50px 25px;
    }

    .articles-hero-content h1,
    .contact-hero-content h1,
    .about-hero-content h1 {
        font-size: 32px;
    }

    .articles-hero-content p,
    .contact-hero-content p,
    .about-hero-content p {
        font-size: 16px;
    }

    .home-articles-section {
        padding: 50px 25px 40px;
    }

    .home-articles-header {
        margin-bottom: 35px;
    }

    .home-articles-header h2 {
        font-size: 28px;
    }

    .home-articles-header p {
        font-size: 16px;
    }

    .home-articles-cta {
        margin-top: 35px;
    }

    .articles-list {
        padding: 50px 25px;
    }

    .category-filters {
        margin-bottom: 30px;
        padding: 0 10px;
        gap: 8px;
    }

    .category-filter {
        padding: 8px 16px;
        font-size: 12px;
    }

    .articles-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-content {
        padding: 50px 25px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-faq {
        padding: 50px 25px;
    }

    .about-content {
        padding: 50px 25px;
    }

    .about-section h2 {
        font-size: 26px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .highlight-box {
        padding: 25px;
    }

    .article-single {
        padding: 40px 25px;
    }

    .article-header h1 {
        font-size: 32px;
    }

    .article-intro {
        font-size: 18px;
    }

    .article-body h2 {
        font-size: 26px;
        margin-top: 40px;
    }

    .article-body h3 {
        font-size: 20px;
        margin-top: 30px;
    }

    .article-body p {
        font-size: 16px;
        text-align: left;
    }

    .article-image-main {
        height: 250px;
    }

    .related-articles {
        margin-top: 60px;
        padding-top: 40px;
    }

    .related-articles h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .related-article-image {
        height: 180px;
    }

    .related-article-content h3 {
        font-size: 18px;
    }

    .main-footer {
        padding: 40px 20px 20px;
    }

    .footer-disclaimer {
        font-size: 12px;
    }

    .footer-disclaimer-warning {
        padding: 12px 16px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo {
        margin-top: 30px;
        padding-top: 20px;
    }

    .footer-logo-text {
        font-size: 40px;
        letter-spacing: 4px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-accept,
    .cookie-decline {
        flex: 1;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .header-email {
        display: none;
    }

    .header-left {
        gap: 0;
    }

    .hero-overlay {
        padding: 30px 20px;
    }

    .cookie-banner {
        padding: 15px 20px;
    }
}

