/* --- Variáveis e Reset --- */
:root {
    --primary-color: #e67e22;
    /* Laranja da imagem */
    --primary-hover: #d35400;
    --secondary-color: #1b4332;
    /* Verde escuro sofisticado */
    --bg-light: #f9f7f2;
    /* Creme suave */
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    padding-top: 75px;
    /* Espaço para o header fixo */
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header / Navegação --- */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: top 0.4s ease-in-out;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
}

.logo-container a {
    color: var(--secondary-color);
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 8px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.4s ease;
}

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

.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--secondary-color);
    background: none;
    border: none;
}

/* --- Botões --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    margin-left: 10px;
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-size: 1.2rem;
    padding: 15px 40px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero {
    padding: 80px 0;
    background: linear-gradient(to right, #f9f7f2 50%, #fff 50%);
    /* Efeito split simples */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1.2;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 20px 0 20px 0;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- Sobre --- */
.sobre {
    padding: 80px 0;
    text-align: center;
    background-color: var(--white);
}

.sobre h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 30px;
}

.sobre p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* --- Como Funciona (Laranja) --- */
.como-funciona {
    background-color: var(--primary-color);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.como-funciona h2 {
    color: var(--white);
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    position: relative;
}

/* Linha conectora */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 0 10px;
}

.icon-box {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-item h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 700;
}

.step-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* --- Destaque Dark --- */
.destaque-dark {
    background-color: var(--secondary-color);
    padding: 80px 0;
    color: var(--white);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

.text-content {
    flex: 1.2;
}

.image-content {
    flex: 1;
}

.destaque-dark .text-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.lista-vantagens li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lista-vantagens i {
    color: var(--primary-color);
}

.image-content img {
    width: 100%;
    border-radius: 10px;
    opacity: 0.9;
}

/* --- Diferenciais --- */
.diferenciais {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.diferenciais h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

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

.card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* --- Blog Section --- */
.blog-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.blog-section h2 {
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.section-subtitle {
    color: var(--text-light);
    margin-bottom: 50px;
}

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

.blog-card {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--secondary-color);
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
    color: var(--primary-hover);
}

/* --- FAQ --- */
.faq {
    padding: 80px 0;
    background-color: #1a2e25 !important;
    color: #ffffff !important;
}

.faq h2 {
    color: var(--white) !important;
    text-align: center;
    margin-bottom: 40px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: var(--white);
    text-align: left;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
}

.accordion-header.active::after {
    content: '-';
}

/* Unificação de Cores do Accordion */
.faq .accordion-body,
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.95rem;
    opacity: 0;
    box-sizing: border-box;
}

.accordion-header.active+.accordion-body {
    opacity: 1;
    padding-top: 15px;
    padding-bottom: 25px;
}

/* FAQ mantém o fundo original ao abrir e cor branca */
.accordion-header.active {
    background: none !important;
    color: #ffffff !important;
}

/* --- CTA Final --- */
.cta-final {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.cta-box h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 10px;
}

.cta-box p {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.disclaimer {
    font-size: 0.8rem;
    margin-top: 20px;
    opacity: 0.8;
}

/* --- Footer --- */
.professional-footer {
    background-color: #111111;
    color: #ffffff;
    padding: 60px 0 20px;
    font-family: 'Inter', sans-serif;
    border-top: 4px solid var(--primary-color);
}

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

.professional-footer h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.professional-footer p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.professional-footer ul {
    list-style: none;
    padding: 0;
}

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

.professional-footer ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.professional-footer ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.professional-footer .contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.professional-footer .contact-list li i {
    color: var(--primary-color);
    width: 20px;
}

.professional-footer .social-icons {
    display: flex;
    gap: 15px;
}

.professional-footer .social-icons a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: transform 0.3s, color 0.3s;
}

.professional-footer .social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

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

/* --- Botão Flutuante WhatsApp --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    /* Animação */
    transform: scale(0);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.whatsapp-float.visible {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

/* --- Mobile Responsivo --- */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    /* Ajuste para header menor no mobile */

    .hero {
        background: var(--bg-light);
        text-align: center;
        padding-top: 60px;
    }

    .hero-content,
    .split-layout {
        flex-direction: column;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .btn-outline {
        margin-left: 0;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .steps-grid {
        flex-direction: column;
        gap: 40px;
    }

    .steps-grid::before {
        display: none;
    }

    /* Remove linha no mobile */

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        border-top: 1px solid #f0f0f0;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .hamburger-menu {
        display: block;
    }

    /* Ajustes Mobile Artigo */
    .article-header h1 {
        font-size: 2rem;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Página de Artigo (Single Post) --- */
.article-page {
    padding: 40px 0 80px;
    background-color: var(--white);
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
    transition: color 0.3s;
}

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

.breadcrumb .current {
    color: var(--secondary-color);
    font-weight: 600;
}

.article-container {
    max-width: 800px;
    /* Largura ideal para leitura */
    margin: 0 auto;
}

.article-header {
    margin-bottom: 30px;
    text-align: center;
}

.article-category {
    display: inline-block;
    background-color: rgba(230, 126, 34, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.article-meta span i {
    margin-right: 5px;
    color: var(--primary-color);
}

.article-featured-image {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-content p {
    margin-bottom: 25px;
}

.article-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.article-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 25px;
}

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

.article-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
    font-size: 1.25rem;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 0 10px 10px 0;
}

/* Autor Box */
.author-box {
    margin-top: 60px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.author-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

/* =========================================
   ESTILOS EXTRAS: PÁGINA GUIA DE ENVIO
   (Adicionar ao final do style.css)
   ========================================= */

/* Hero Específico do Guia */
.guide-hero {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 100px 0 80px;
    /* Mais espaço por causa do header fixo */
    text-align: center;
}

.guide-hero h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.guide-hero p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Caixa de Perigo/Alerta */
.danger-box {
    background-color: #fff;
    border-left: 5px solid #e74c3c;
    /* Vermelho alerta */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.danger-box h3 {
    color: #c0392b;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.danger-box p {
    color: var(--text-dark);
    margin: 0;
}

/* Seção de Processo (Timeline) */
.process-section {
    padding: 80px 0;
    background-color: var(--white);
}

/* Timeline Vertical */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    /* Laranja */
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-container {
    padding: 10px 50px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

/* Bolinha na linha do tempo */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--white);
    border: 4px solid var(--secondary-color);
    /* Verde */
    top: 20px;
    border-radius: 50%;
    z-index: 2;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 40px;
    border: medium solid var(--white);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #f4f4f4;
    /* Seta aponta pro box */
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 40px;
    border: medium solid var(--white);
    border-width: 10px 10px 10px 0;
    border-color: transparent #f4f4f4 transparent transparent;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 30px;
    background-color: #f9f9f9;
    /* Fundo leve para o card */
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(27, 67, 50, 0.1);
    /* Verde bem claro */
    position: absolute;
    top: 10px;
    right: 20px;
    font-weight: 700;
}

.timeline-content h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* Checklist Box */
.checklist-box {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
    border-top: 5px solid var(--secondary-color);
}

.checklist-box h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.checklist-box ul {
    list-style: none;
}

.checklist-box li {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    color: var(--text-dark);
}

.checklist-box li i {
    color: #27ae60;
    /* Verde check */
    margin-right: 15px;
    font-size: 1.4rem;
}

/* Responsividade da Timeline (Mobile) */
@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-container::after {
        left: 21px;
    }

    .left::after,
    .right::after {
        left: 21px;
    }

    .right {
        left: 0%;
    }

    .left::before,
    .right::before {
        display: none;
    }

    /* Remove setas no mobile */
    .checklist-box {
        padding: 30px 20px;
    }

    .checklist-box li {
        font-size: 1rem;
    }
}

/* --- Styles for Sales Process Page (Como Funciona) --- */
.process-detail-section {
    padding: 60px 0;
}

.process-step-block {
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.process-step-block:nth-child(even) {
    flex-direction: row-reverse;
}

.step-info {
    flex: 1;
}

.step-img {
    flex: 1;
    text-align: center;
}

.step-img img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-number-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.step-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.step-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.step-info ul {
    list-style: none;
    margin-top: 20px;
}

.step-info ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 1.05rem;
}

.step-info ul li i {
    color: #27ae60;
    margin-top: 5px;
}

.trust-banner {
    background-color: #f4f4f4;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
    border: 1px solid #ddd;
}

@media (max-width: 768px) {
    .process-step-block {
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 50px;
    }

    .step-info h2 {
        font-size: 1.8rem;
    }
}