@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght,XOPQ,XTRA,YOPQ,YTDE,YTFI,YTLC,YTUC@8..144,100..1000,96,468,79,-203,738,514,712&display=swap');

:root {
    --primary: #054990;
    --secondary: #3E7DB3;
    --accent: #FA7000;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --border: #e5e7eb;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto Flex", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--bg-white);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.12);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    max-width: 250px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a.cta-button {
    color: var(--bg-white);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-container .cta-button {
    transition: all 0.3s ease-in-out;
    padding: 10px 20px;
    text-align: center;
}

.nav-container .cta-button:hover {
    color: var(--accent);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 28px;
    cursor: pointer;
}

.hero {
    height: 80vh;
    background-image: url("img/banner-bg.png");
    background-size: cover;
    background-position: top center;
    /* display: flex; */
    align-items: center;
    position: relative;
    justify-content: center;
    margin-top: 81.69px;
}

.hero-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    color: var(--bg-white);
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    /* max-width: 700px; */
}

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

.hero p {
    font-size: 20px;
    line-height: 1.3;
    max-width: 700px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    border: 1px solid var(--accent);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--bg-white);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(77, 184, 241, 0.35);
    /* match --secondary */
}

section {
    padding: 5rem 0;
}

.section-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 12px;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);

    margin: 0 auto;
}

/* About Us CSS Start */
.about-section {
    background: #ffffff;
}

.about-grid {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Images */
.about-images {
    position: relative;
    height: 100%;
}

.about-images img {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary);
    color: #ffffff;
    padding: 22px 26px;
    border-radius: 12px;
    text-align: center;
}

.about-badge strong {
    display: block;
    font-size: 30px;
    font-weight: 700;
}

.about-badge span {
    font-size: 14px;
    opacity: 0.9;
}

.about-subtitle {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
}

.about-content h2 {
    font-size: 38px;
    line-height: 1.3;
    margin: 14px 0 22px;
    color: #1f2937;
}

.about-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 22px;
    font-size: 16px;
}

.about-content blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 18px;
    color: #374151;
    font-style: italic;
    margin-bottom: 32px;
}

.about-meta {
    display: flex;
    align-items: center;
    gap: 32px;
}

.experience span {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary);
}

.experience p {
    margin: 0;
    color: #6b7280;
    font-size: 15px;
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
    padding: 14px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.advantages {
    background: var(--bg-light);
}

.advantage-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.advantage-box .image-box {
    width: calc(50% - 25px);
}

.advantage-box .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.advantages-grid {
    width: calc(50% - 25px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 20px;
    row-gap: 50px;
}

.advantage-card {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    padding: 50px 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border-bottom: 3px solid var(--secondary);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    position: absolute;
    top: -30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--bg-white);
}

.advantages-grid .advantage-card img {
    width: 40px;
    height: 40px;
}

.advantage-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: normal;
}

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

/* GRID */
.professionals .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.professionals .section-header h2 {
    margin-bottom: 0;
}

.professionals-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* CARD */
.professional-card {
    width: calc(25% - 15px);
    background: var(--bg-white);
    border-radius: 25px;
    overflow: hidden;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 10px 6px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

.professional-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

/* IMAGE */
.avatar {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    background: #f4f4f4;
    margin-bottom: 10px;
}

.avatar img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
    object-position: top center;
}

.professional-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* CONTENT */

.professional-content {
    margin-top: 10px;
}

.professional-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.professional-name span {
    font-size: 16px;
    font-weight: 500;
}

.professional-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.professional-role {
    font-size: 16px;
    color: var(--text-light);
    margin-left: 5px;
}

.district {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

/* CTA */
.select-expert {
    display: block;
    padding: 10px 30px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    background: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.select-expert:hover {
    background: var(--bg-white);
    color: var(--accent);
}

.services {
    /* background: linear-gradient(45deg, var(--primary) 50%, var(--secondary) 100%); */
    background-image: url("img/help-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    padding: 80px 0;
}

.services .section-header h2 {
    color: #ffffff;
    line-height: normal;
    margin-bottom: 0;
}

.services .section-header p {
    color: rgba(255, 255, 255, 0.75);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 3rem;
}

.service-item {
    width: calc(25% - 15px);
    background: var(--bg-white);
    padding: 30px 15px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.35s ease;
    overflow: hidden;
    cursor: default;
}

.service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.service-item .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-item .icon-box svg {
    width: 50px;
    fill: var(--accent);
}

.service-item .text-box {
    text-align: center;
}

.service-item h4 {
    font-size: 24px;
    line-height: normal;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.service-item p {
    color: var(--text-light);
    font-size: 16px;
    line-height: normal;
}

.how-it-works {
    background: var(--bg-white);
}

.steps-ref {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 4.5rem;
}

.step {
    text-align: center;
    max-width: 240px;
}

.icon-wrap {
    width: 100px;
    height: 100px;
    background: var(--accent);
    /* muted teal like reference */
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrap::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 1px dashed var(--secondary);
    border-radius: 50%;
}

.step-icon {
    display: flex;
    align-self: center;
    justify-content: center;
}

.step-icon svg {
    width: 50px;
    color: var(--bg-white);
}

.line {
    min-width: 50px;
    flex: 1;
    height: 2px;
    margin-top: 55px;
    border: 1px dashed var(--primary);
}

.step h4 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: normal;
}

.step p {
    font-size: 14px;
    color: #6b7280c4;
    line-height: normal;
}

.badge {
    display: none;
}

.contact-form {
    background: var(--bg-white);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

footer {
    background: var(--primary);
    color: var(--bg-white);
    padding: 3rem 2rem 2rem;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 2rem;
}

.footer-top .logo-box img {
    max-width: 250px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.fixed-box {
    position: fixed;
    z-index: 9;
    bottom: 40px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.fixed-box a {
    background-color: var(--primary);
    border-radius: 50px;
    padding: 10px 20px;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    min-width: 195px;
    animation: floatUpDown 1s ease-in-out infinite;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Roboto", sans-serif;
    transition: 0.3s;
    text-decoration: none;
    border: 1px solid #ffffff;
    text-transform: capitalize;
}

html.translated-ltr .fixed-box a {
    min-width: 220px;
}

.fixed-box a svg {
    max-width: 25px;
    fill: var(--bg-white);
}

.fixed-box a:hover {
    box-shadow: 0px 2px 8px #0000009e;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

/* PopUp CSS Start */
#submitCasePopup {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

#submitCasePopup .popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

#submitCasePopup .popup-content {
    background: #fff;
    max-width: 900px;
    width: 95%;
    padding: 30px 15px;
    z-index: 2;
    max-height: 95vh;
    overflow: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 32px;
    opacity: 0.7;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content .section-header {
    margin-bottom: 15px;
}

.popup-content .section-header h2 {
    line-height: 1;
    margin-bottom: 10px;
}

.wpcf7-spinner {
    display: none;
}

.popup-content .form-group p br {
    display: none;
}

.case-popup-content h2 {
    line-height: 1.2;
    margin-bottom: 5px;
}

.case-popup-content p {
    line-height: 1.3;
    font-size: 14px;
}

/* PopUp CSS End */

.gtranslate_wrapper {
    display: inline-flex;
    align-self: center;
    justify-content: center;
}

.gt_option {
    position: absolute !important;
    bottom: -7px;
}

.sign-up {
    background-color: var(--bg-light);
}

.section-container .search-wrapper {
    width: 100%;
    max-width: 420px;
}

.section-container .search-field {
    position: relative;
}

.section-container .search-field input {
    width: 100%;
    height: 52px;
    padding: 0 16px 0 48px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.section-container .search-field input::placeholder {
    color: #999;
}

.section-container .search-field input:focus {
    border-color: var(--primary);
    /* new blue */
    box-shadow: 0 0 0 3px rgba(32, 102, 237, 0.15);
    /* same blue with transparency */
}

.section-container .search-icon {
    position: absolute;
    top: 50%;
    left: 16px;
    width: 20px;
    height: 20px;
    color: #777;
    transform: translateY(-50%);
    pointer-events: none;
}

#victim_attachment::placeholder {
    opacity: 0;
    font-size: 0;
}

.sign-up h2 {
    color: var(--primary);
    text-align: center;
    text-transform: capitalize;
    margin-top: 30px;
    font-size: 38px;
}


/* ===============================
   Contact Page
================================ */

.contact-page {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f9f4, #ffffff);
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Left side */
.contact-info h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary);
}

.contact-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Contact cards */
.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.contact-card .icon {
    font-size: 28px;
}

.contact-card h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.contact-card a {
    display: inline-block;
    margin-top: 4px;
    font-size: 15px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Right visual */
.contact-visual {
    display: flex;
    justify-content: center;
}

.visual-box {
    background: var(--secondary);
    color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    max-width: 420px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.visual-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.visual-box p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ================================
   Privacy Policy Page
   Scoped to .page-template-default
================================ */

.page-template-default article.page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
    margin-top: 120px !important;
    background-color: var(--bg-white);
}

/* Page Title */
.page-template-default .entry-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 40px;
}

/* Main Content */
.page-template-default .entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Section Headings */
.page-template-default .entry-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 16px;
}

/* Paragraphs */
.page-template-default .entry-content p {
    margin-bottom: 16px;
    color: var(--text-dark);
}

/* Lists */
.page-template-default .entry-content ul {
    padding-left: 22px;
    margin-bottom: 24px;
}

.page-template-default .entry-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Links */
.page-template-default .entry-content a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.page-template-default .entry-content a:hover {
    text-decoration: underline;
}

/* Horizontal Separators */
.page-template-default .wp-block-separator {
    border: none;
    height: 1px;
    background-color: var(--border);
    margin: 40px 0;
}

/* Strong Text */
.page-template-default .entry-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Contact Info Box (Optional enhancement) */
.page-template-default .entry-content h2:last-of-type+p {
    background-color: var(--bg-light);
    padding: 20px;
    border-left: 4px solid var(--accent);
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 1199px) {
    .nav-links {
        gap: 15px;
    }

    .sign-up h2 {
        font-size: 32px;
    }

    .service-item {
        width: calc(33.333% - 14px);
    }

    .advantage-card {
        padding: 46px 20px 28px;
    }

    .advantage-card p {
        font-size: 14px;
    }

    .advantage-box {
        gap: 30px;
    }

    .advantage-box .image-box {
        width: calc(50% - 15px);
        margin: 0 auto;
    }

    .advantages-grid {
        width: calc(50% - 15px);
    }

    .professional-card {
        width: calc(33.33% - 13.33px);
    }

    .section-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #FFFFFF;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .sign-up h2 {
        font-size: 28px;
    }

    .about-grid {
        gap: 40px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .steps-ref {
        gap: 20px;
    }

    .step {
        max-width: 220px;
    }

    .step h4 {
        font-size: 22px;
    }

    .advantage-box {
        gap: 50px;
        flex-direction: column;
    }

    .advantages-grid {
        width: 100%;
    }

    .professionals .section-header {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 991px) {
    .footer-links {
        gap: 15px;
    }

    .professional-card {
        width: calc(50% - 16px);
        padding: 20px;
    }

    .services {
        padding: 60px 0;
    }

    .service-item {
        width: calc(50% - 10px);
        padding: 28px 16px;
    }

    .service-item h4 {
        font-size: 18px;
    }

    .service-item p {
        font-size: 15px;
    }

    .footer-top .logo-box img {
        max-width: 180px;
    }

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

    .about-meta {
        flex-direction: column;
        gap: 20px;
    }

    .steps-ref {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px 20px;
    }

    .line {
        display: none;
    }

    .step {
        max-width: 45%;
    }

    .advantage-card {
        padding: 44px 20px 26px;
    }

    .advantage-card h3 {
        font-size: 18px;
    }

    .section-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {

    .footer-top {
        flex-direction: column;
    }

    .logo img {
        max-width: 180px;
    }

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

    .contact-info h1 {
        font-size: 30px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .cta-button {
        padding: 10px 15px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .steps {
        grid-template-columns: repeat(1, 1fr);
    }

    .sign-up {
        padding: 4rem 0;
    }

    .page-template-default .entry-title {
        font-size: 28px;
    }

    .page-template-default .entry-content h2 {
        font-size: 20px;
    }

    .page-template-default .wp-block-separator {
        margin: 20px 0;
    }

    .page-template-default .entry-content {
        font-size: 14px;
        line-height: 1.5;
    }

    .services {
        padding: 50px 0;
    }

    .services-grid {
        gap: 16px;
    }

    .service-item .icon-box svg {
        width: 34px;
    }

    .service-item h4 {
        font-size: 17px;
    }

    .service-item p {
        font-size: 14px;
        line-height: 1.5;
    }

    .icon-wrap {
        width: 80px;
        height: 80px;
        margin-bottom: 16px;
    }

    .icon-wrap::after {
        inset: -4px;
    }

    .step-icon svg {
        width: 38px;
    }

    .step h4 {
        font-size: 20px;
    }

    .step p {
        font-size: 14px;
        line-height: 1.5;
    }

    .advantage-card {
        width: 100%;
        padding: 42px 18px 26px;
    }

    .advantage-icon {
        width: 52px;
        height: 52px;
        top: -26px;
        font-size: 1.5rem;
    }

    .advantages-grid .advantage-card img {
        width: 34px;
        height: 34px;
    }

    .advantage-card h3 {
        font-size: 17px;
    }

    .advantage-card p {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .professional-card {
        width: 100%;
    }

    .service-item {
        border-radius: 12px;
    }

    .service-item .icon-box {
        margin-bottom: 16px;
    }

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

    .about-content p {
        font-size: 15px;
    }

    .icon-wrap {
        width: 70px;
        height: 70px;
    }

    .step-icon svg {
        width: 34px;
    }

    .step h4 {
        font-size: 18px;
    }

    .steps-ref {
        flex-direction: column;
        align-items: center;
        margin-top: 3rem;
        gap: 32px;
    }

    .step {
        max-width: 100%;
    }

    .service-item {
        width: 100%;
        padding: 24px 16px;
    }

    .advantage-card {
        border-radius: 10px;
    }

    .advantage-icon {
        width: 48px;
        height: 48px;
        top: -24px;
    }

    .advantages-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .advantage-box .image-box {
        width: 100%;
    }
}