:root {
    --primary-color: #e9082c;
    --primary-dark: #c70725;
    --bg-color: white;
    --card-bg: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #eeeeee;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --footer-bg: #2a2a2a;
    --footer-text: #cccccc;
    --h1-font-size: 30px;
    --h2-font-size: 24px;
    --h3-font-size: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.3;
    font-size: 16px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 15px 0;
    /* box-shadow: var(--shadow); */
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo-icon {
    background-color: white;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.greeting {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 1%;
}

.languages {
    position: relative;
}

.language-form {
    position: relative;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    padding: 6px 12px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    appearance: none;
    font: inherit;
    line-height: 1;
}

.language-trigger:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.language-trigger i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.language-trigger:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 2px;
}

.language-dropdown.open .language-trigger {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.language-dropdown.open .language-trigger i {
    transform: rotate(180deg);
}

.language-label {
    font-weight: 600;
    letter-spacing: 0.02em;
}

.language-current {
    font-weight: 600;
    font-size: 0.9rem;
}

.language-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    z-index: 1200;
    max-height:300px;
    overflow:scroll; 
}

.language-menu li {
    list-style: none;
}

.language-dropdown.open .language-menu {
    display: block;
}

.language-dropdown.open .language-menu[hidden] {
    display: block;
}

.language-option {
    width: 100%;
    text-align: left;
    padding: 10px 16px;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.language-option:hover:not(.active),
.language-option:focus-visible:not(.active) {
    background-color: var(--border-color);
    color: var(--primary-color);
}

.language-option.active {
    background-color: var(--primary-color);
    color: white;
}

.language-option.active:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.language-option:focus {
    outline: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.nav-menu li {
    position: relative;
}

.nav-dropdown {
    padding-bottom: 10px;
}

.nav-dropdown > a i {
    font-size: 0.8rem;
}

.nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    z-index: 1000;
}

.nav-dropdown .dropdown-menu li a {
    color: var(--text-color);
    padding: 10px 20px;
    display: block;
    font-weight: 500;
}

.nav-dropdown .dropdown-menu li a:hover {
    background-color: var(--border-color);
    color: var(--primary-color);
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.nav-menu a i {
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main Content Styles */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.blogs-grid {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.main-header {
    text-align: center;
    padding: 30px 0 20px;
}

h1 {
    color: var(--primary-color);
    font-size: var(--h1-font-size);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3em;
}

h2 {
    color: var(--primary-color);
    font-size: var(--h2-font-size);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.3em;
}

h3 {
    color: var(--text-color);
    font-size: var(--h3-font-size);
    font-weight: 700;
    margin-bottom: 15px;
}

.download-section {
    background-color: var(--card-bg);
    border-radius: 10px;
    /* box-shadow: var(--shadow); */
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.input-group {
    display: flex;
    margin: 20px 0;
}

input[type="text"] {
    flex: 1;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    outline: none;
    background-color: var(--card-bg);
    color: var(--text-color);
    transition: border-color 0.3s;
}

input[type="text"]:focus {
    border-color: var(--primary-color);
}

button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    padding: 0 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: var(--primary-dark);
}

.policy {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 20px;
}

.policy a {
    color: var(--primary-color);
    text-decoration: none;
}

.tutorial {
    margin-top: 25px;
}

.tutorial a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}

.tutorial a:after {
    content: "→";
    margin-left: 5px;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
    color: var(--text-light);
    font-size: 16px;
}

.security-badge img {
    margin-right: 10px;
    height: 20px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 40px;
}

.feature-card {
    background-color: #f9f9f9;
    display: flex;
    border-radius: 8px;
    padding: 10px 5px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    align-items: center;
}

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

.feature-card h3 {
    color: black;
    margin-bottom: 0px;
    font-size: 15px;
    line-height: 1em;
    text-align: left;
    padding-left: 5px;
    font-weight: 400;
}

.feature-card i {
    font-size: 16px;
    color: #e9082c;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--card-bg);
    border-radius: 10px;
    /* box-shadow: var(--shadow); */
    padding: 50px 40px;
    margin: 50px 0;
}

.how-it-works>p {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
    font-size: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: left;
    padding: 0 15px;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 25px;
    color: white;
    font-size: 32px;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

.f-one {
    background: #1B5E20;
}

.f-two {
    background: #0D47A1;
}

.f-three {
    background: #004D40;
}

.f-four {
    background: #4A148C;
}

.f-five {
    background: #880E4F;
}

.f-six {
    background: #E65100;
}

/* Connector lines between steps */
.step:not(:last-child):after {
    content: "";
    position: absolute;
    top: 40px;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Easy Guide */
.easy-guide {
    background-color: var(--card-bg);
    border-radius: 10px;
    /* box-shadow: var(--shadow); */
    padding: 50px 40px;
    margin: 50px 0;
}

/* Features Section */
.features-section {
    background-color: var(--card-bg);
    border-radius: 10px;
    /* box-shadow: var(--shadow); */
    padding: 50px 40px;
    margin: 50px 0;
}

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

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text h3 {
    margin-bottom: 10px;
}

.feature-text p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    background-color: aliceblue;
    border-radius: 10px;
    /* box-shadow: var(--shadow); */
    padding: 30px;
    margin: 50px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.benefit-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.benefit-card h3 {
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--card-bg);
    border-radius: 10px;
    /* box-shadow: var(--shadow); */
    padding: 20px 40px;
    margin: 20px 0;
}

.testimonials-section>p {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 30px;
    position: relative;
}

.testimonial-card:before {
    content: "";
    font-size: 80px;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: 10px;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    color: var(--text-color);
}

.testimonial-role {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Knowledge Base Section with Bootstrap-style Cards */
.articles-section {
    width: 100% !important;
    padding: 30px 0;
    background-color: #fcf6f1;
}

.articles-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: var(--shadow); */
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.card-header {
    padding: 25px 25px 15px;
    border-bottom: 1px solid var(--border-color);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.exclusivity-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-body {
    padding-bottom: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-item-card {
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; */
    margin-bottom: 5px;
    text-align: left;
}

.feature-icon-card {
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-icon-card img {
    width: 100%;
}

.feature-content h2 {
    font-size: 22px;
    margin: 10px;
    text-align: left;
    color: var(--text-color);
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

.card-visual {
    background: linear-gradient(135deg, #4a6fa5, #2c4a76);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: auto;
    text-align: center;
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.invoice-title {
    font-size: 1.3rem;
    font-weight: bold;
}

.invoice-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.invoice-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px 0;
    color: #ffd700;
}

#toast-container {
    /* position: fixed; */
    bottom: 20px;
    right: 20px;
    /* display: flex; */
    /* flex-direction: column; */
    gap: 10px;
    z-index: 1000;
}

.toast {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.toast.show {
    opacity: 1;
}

.toast.error {
    background-color: #d9534f; /* Red for errors */
}

.business-feature {
    background-color: var(--bg-color);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin-top: 15px;
}

.business-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.business-feature p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* FAQ Item */
.faq-section {
    padding-top: 50px;
}

.faq-section h2 {
    margin-bottom: 50px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

/* Remove default marker */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Question Row */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* question left, arrow right */
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
    padding: 6px 0;
}

/* Arrow */
.faq-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

/* Rotate when open */
.faq-item[open] .faq-arrow {
    transform: rotate(180deg);
}

/* Answer */
.faq-answer {
    color: #6b7280;
    margin-top: 10px;
    line-height: 1.6;
    font-size: 16px;
    padding-right: 20px;
}

/* Top illustration */
.article-container {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
}

.article-hero {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.article-hero img {
    max-width: 100%;
}

/* Category */
.article-category {
    text-transform: uppercase;
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Title */
.article-title {
    font-size: 32px;
    text-align: center;
    margin: 10px 0;
    font-weight: bold;
}

/* Meta */
.article-meta {
    font-size: 16px;
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

/* Social Share */
.social-share {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.social-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
}

.social-btn.fb {
    background: #1877f2;
}

.social-btn.x {
    background: #000;
}

.social-btn.in {
    background: #0a66c2;
}

.social-btn.wa {
    background: #25d366;
}

/* Article text */
.article-text {
    width: 600px;
}

.article-text h2 {
    text-align: left;
    color: black;
}

.article-text p {
    margin-bottom: 18px;
}

.article-text h2 {
    font-size: 22px;
    margin: 30px 0 15px;
    font-weight: bold;
}

.article-text ul {
    margin: 15px 0 25px 20px;
}

.article-text ul li {
    margin-bottom: 10px;
}

/* Footer Styles */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 30px;
    margin-top: 50px;
}

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

.footer-column h2 {
    color: white;
    margin-bottom: 20px;
    text-align: left;
}

.footer-column p {
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Loader Styles */

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 60px;
  height: 60px;
  margin: -76px 0 0 -76px;
  border: 8px solid #a6a3a3;
  border-radius: 50%;
  border-top: 8px solid #181a1c;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

/* Blog card styling for grid layout */
.blog-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: box-shadow 0.2s;
    width: 100%;
    min-width: 0;
}
/* Blog grid layout: 3 cards per row on desktop, responsive on mobile */
.blogs-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

@media (max-width: 1000px) {
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .blogs-grid {
        grid-template-columns: 1fr;
    }
}
/* Custom styles for wide download buttons */
#downloadVideoBtn, #downloadMoreBtn {
    display: inline-block;
    min-width: 220px;
    width: 80%;
    max-width: 350px;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    margin: 10px auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    letter-spacing: 0.5px;
}

#downloadVideoBtn i, #downloadMoreBtn i {
    margin-right: 8px;
}

#imagePreview {
  display: block;
  margin: auto;
}
/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .logo-container {
        flex: 1;
    }

    .header-controls {
        order: 3;
        width: 100%;
        justify-content: space-between;
        margin-top: 5px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        margin-top: 15px;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .input-group {
        flex-direction: column;
    }

    input[type="text"] {
        border-radius: 5px;
        margin-bottom: 10px;
    }

    button {
        border-radius: 5px;
        padding: 15px;
    }

    .steps-container {
        flex-direction: column;
    }

    .step:not(:last-child):after {
        display: none;
    }

    .step {
        margin-bottom: 40px;
    }

    .step:last-child {
        margin-bottom: 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .how-it-works {
        padding: 10px;
    }

    .how-it-works>p {
        margin-bottom: 30px;
    }

    .steps-container {
        gap: 10px
    }

    .easy-guide {
        padding: 10px;
    }

    .easy-guide h2 {
        text-align: left;
    }

    .features-section {
        padding: 10px;
    }

    .benefits-section {
        padding: 10px;
        margin: 20px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-section {
        padding: 10px;
        margin: 20px 0;
    }

    .testimonial-card {
        padding: 10px;
    }
    /* ===== HOMEPAGE OVERRIDES — must stay at bottom ===== */
    /* Prevent style.css grid rules from bleeding into the new homepage design */
    .features {
    display: block !important;
    }

    .features > .container > .features-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    }

    @media (max-width: 1024px) {
    .features > .container > .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    }

    @media (max-width: 768px) {
    .features > .container > .features-grid {
        grid-template-columns: 1fr !important;
    }
    }
}
