* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #202020;
}

.srrf-site-header {
    width: 100%;
    background: #ffffff;
}

.srrf-topbar {
    background: #050505;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.srrf-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 38px;
    padding: 0px 30px;
}

.srrf-topbar-contact {
    display: flex;
    align-items: center;
    gap: 28px;
}

.srrf-topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.srrf-topbar-link:hover {
    color: #c6d421;
}

.srrf-topbar-icon {
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
}

.srrf-social-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.srrf-social-links a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.srrf-social-links a:hover {
    color: #c6d421;
}

.srrf-main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 80px;
    padding: 0px 30px;
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.srrf-brand {
    display: inline-flex;
    align-items: center;
    max-width: 190px;
    padding: 0;
    margin: 0;
}

.srrf-logo {
    display: block;
    width: auto;
    max-width: 172px;
    height: 78px;
    object-fit: contain;
}

.srrf-nav-collapse {
    align-items: center;
}

.srrf-nav-list {
    align-items: center;
    gap: 0;
}

.srrf-nav-link {
    display: flex;
    align-items: center;
    min-height: 80px;
    padding: 0 20px !important;
    color: #222222;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0;
}

.srrf-nav-link:hover,
.srrf-nav-link.active {
    color: #7fa100;
    background: transparent;
}

.srrf-contact-link {
    margin-left: 0;
    border: 0;
    border-radius: 0;
    color: #222222;
    background: transparent;
}

.srrf-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-left: 16px;
    padding: 0 20px !important;
    border: 2px solid #7fa100;
    border-radius: 4px;
    color: #ffffff !important;
    background: #7fa100;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
    text-decoration: none;
}

.srrf-quote-btn:hover,
.srrf-quote-btn:focus {
    color: #7fa100 !important;
    background: #ffffff;
    border-color: #7fa100;
}

.srrf-menu-toggle {
    width: 44px;
    height: 42px;
    padding: 0;
    border: 2px solid #c6d421;
    border-radius: 6px;
    box-shadow: none !important;
}

.srrf-menu-toggle .navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2825, 25, 25, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.srrf-about-section {
    padding: 78px 0;
    background: #f7f8f4;
}

.srrf-about-layout {
    width: 100%;
}

.srrf-about-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1310px;
    margin: 0 auto;
    padding: 44px 48px;
    z-index: 1;
    border: 1px solid #e2e2dd;
    border-left: 5px solid #7fa100;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(23, 23, 23, 0.08);
    animation: srrfAboutBoxIn 0.8s ease both;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.srrf-about-content::before {
    position: absolute;
    top: -16px;
    right: 34px;
    z-index: -1;
    width: 34%;
    height: 42px;
    border-radius: 8px 8px 0 0;
    content: "";
    background: #7fa100;
    opacity: 0.18;
}

.srrf-about-content::after {
    position: absolute;
    left: 34px;
    bottom: -16px;
    z-index: -1;
    width: 34%;
    height: 42px;
    border-radius: 0 0 8px 8px;
    content: "";
    background: #c6d421;
    opacity: 0.35;
}

.srrf-about-content:hover {
    border-color: #d8debd;
    border-left-color: #c6d421;
    box-shadow: 0 24px 58px rgba(23, 23, 23, 0.12);
    transform: translateY(-6px);
}

.srrf-section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #7fa100;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.srrf-about-title {
    max-width: 980px;
    margin: 0 0 20px;
    color: #171717;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
}

.srrf-about-text {
    max-width: 1205px;
    margin: 0 0 14px;
    color: #555555;
    font-size: 16px;
    line-height: 1.75;
}

@keyframes srrfAboutBoxIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.srrf-trust-section {
    background: linear-gradient(90deg, rgba(8, 10, 8, 0.94) 0%, rgba(8, 10, 8, 0.88) 48%, rgba(8, 10, 8, 0.76) 100%), url("../img/about-rubber-flooring.png") center / cover no-repeat;
    color: #ffffff;
}

.srrf-trust-overlay {
    width: 100%;
    padding: 60px 3vw;
}

.srrf-trust-content {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    align-items: center;
    gap: 70px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.srrf-dark-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #c6d421;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.srrf-dark-label::after {
    display: inline-block;
    width: 46px;
    height: 1px;
    margin-left: 12px;
    vertical-align: middle;
    content: "";
    background: rgba(198, 212, 33, 0.75);
}

.srrf-trust-title {
    max-width: 760px;
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.22;
}

.srrf-trust-text {
    max-width: 800px;
    margin: 0 0 15px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.75;
    text-align: justify;
}

.srrf-trust-list {
    display: grid;
    gap: 16px;
}

.srrf-trust-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 18px;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 3px solid rgba(198, 212, 33, 0.85);
    background: rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(2px);
}

.srrf-trust-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(198, 212, 33, 0.6);
    color: #c6d421;
    font-size: 14px;
    font-weight: 700;
}

.srrf-trust-item strong {
    display: block;
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.srrf-trust-item small {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.5;
}

.srrf-products-section {
    padding: 60px 0 88px;
    background: #f7f8f4;
}

.srrf-products-wrap {
    width: 100%;
    padding: 0 38px;
}

.srrf-products-heading {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.srrf-products-title {
    position: relative;
    display: inline-block;
    margin: 0;
    padding-bottom: 14px;
    color: #171717;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.srrf-products-title::after {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 90px;
    height: 2.5px;
    content: "";
    background: #FC000A;
    transform: translateX(-50%);
}

.srrf-products-subtitle {
    max-width: 620px;
    margin: 18px auto 0;
    color: #666666;
    font-size: 16px;
    line-height: 1.30;
}

.srrf-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    width: 100%;
}

.srrf-product-card {
    position: relative;
    height: 100%;
    padding: 22px;
    border: 1px solid #e3e3df;
    border-radius: 8px;
    background: #ffffff;
    text-align: left;
}

.srrf-product-img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 210px;
    margin: 0 0 20px;
    overflow: hidden;
    border-radius: 6px;
    background: #eeeeee;
}

.srrf-product-img-box img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.srrf-product-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 30px;
    margin-bottom: 14px;
    border-left: 3px solid #7fa100;
    color: #7fa100;
    background: #f5f8e8;
    font-size: 13px;
    font-weight: 700;
}

.srrf-product-card h3 {
    margin: 0 0 10px;
    color: #171717;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.srrf-product-card p {
    margin: 0;
    color: #5f5f5f;
    font-size: 14px;
    line-height: 1.65;
}

.srrf-why-section {
    padding: 45px 0;
    background: #ffffff;
}

.srrf-why-wrap {
    display: grid;
    grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
    align-items: start;
    gap: 52px;
    width: 100%;
    padding: 0 38px;
}

.srrf-why-intro {
    position: sticky;
    top: 24px;
    padding: 34px;
    border-left: 4px solid #7fa100;
    background: #f7f8f4;
}

.srrf-why-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #7fa100;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.srrf-why-title {
    margin: 0 0 18px;
    color: #171717;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
}

.srrf-why-text {
    margin: 0;
    color: #5f5f5f;
    font-size: 16px;
    line-height: 1.75;
}

.srrf-why-image {
    display: block;
    width: 100%;
    height: 230px;
    margin-top: 26px;
    border-radius: 8px;
    object-fit: cover;
}

.srrf-why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.srrf-why-card {
    min-height: 100%;
    padding: 26px;
    border: 1px solid #e4e4df;
    border-radius: 8px;
    background: #ffffff;
}

.srrf-why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 8px;
    color: #fc000a;
    background: #f0f5d8;
    font-size: 22px;
}

.srrf-why-card h3 {
    margin: 0 0 10px;
    color: #171717;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
}

.srrf-why-card p {
    margin: 0;
    color: #606060;
    font-size: 14px;
    line-height: 1.65;
}

.srrf-faq-section {
    padding: 50px 0;
    background: radial-gradient(circle at 12% 12%, rgba(198, 212, 33, 0.16), transparent 30%), linear-gradient(135deg, #0b0e0c 0%, #151915 100%);
    color: #ffffff;
}

.srrf-faq-wrap {
    display: grid;
    grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
    gap: 56px;
    width: 100%;
    padding: 0 38px;
}

.srrf-faq-heading {
    max-width: 480px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.srrf-faq-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #c6d421;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.srrf-faq-label::after {
    display: inline-block;
    width: 42px;
    height: 1px;
    margin-left: 12px;
    vertical-align: middle;
    content: "";
    background: rgba(198, 212, 33, 0.75);
}

.srrf-faq-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
}

.srrf-faq-intro {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.75;
}

.srrf-faq-help {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding: 18px;
    border: 1px solid rgba(198, 212, 33, 0.26);
    border-radius: 8px;
    background: rgba(198, 212, 33, 0.08);
}

.srrf-faq-help>span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: #101010;
    background: #c6d421;
    font-size: 22px;
}

.srrf-faq-help strong,
.srrf-faq-help small {
    display: block;
}

.srrf-faq-help strong {
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.srrf-faq-help small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.5;
}

.srrf-faq-list {
    display: grid;
    gap: 16px;
}

.srrf-faq-item {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 4px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.srrf-faq-item summary {
    position: relative;
    display: block;
    padding: 24px 66px 24px 26px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

.srrf-faq-item summary::-webkit-details-marker {
    display: none;
}

.srrf-faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 26px;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(198, 212, 33, 0.7);
    border-radius: 50%;
    color: #c6d421;
    content: "+";
    font-size: 22px;
    font-weight: 400;
    line-height: 29px;
    text-align: center;
    transform: translateY(-50%);
}

.srrf-faq-item[open] {
    border-color: rgba(198, 212, 33, 0.5);
    border-left-color: #c6d421;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.072));
}

.srrf-faq-item[open] summary::after {
    content: "-";
    color: #101010;
    background: #c6d421;
}

.srrf-faq-item p {
    margin: 0;
    padding: 18px 26px 26px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.srrf-cta-section {
    padding: 39px 24px;
    background: #f7f8f4;
}

.srrf-cta-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 40px;
    width: 100%;
    padding: 42px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e2e2dd;
}

.srrf-cta-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #7fa100;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.srrf-cta-title {
    max-width: 760px;
    margin: 0 0 18px;
    color: #171717;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.22;
}

.srrf-cta-text {
    max-width: 920px;
    margin: 0 0 12px;
    color: #5d5d5d;
    font-size: 16px;
    line-height: 1.7;
}

.srrf-cta-text:last-child {
    margin-bottom: 0;
}

.srrf-cta-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

.srrf-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 142px;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.srrf-cta-btn-primary {
    border: 2px solid #7fa100;
    color: #ffffff;
    background: #7fa100;
}

.srrf-cta-btn-outline {
    border: 2px solid #171717;
    color: #171717;
    background: #ffffff;
}

.srrf-cta-btn-primary:hover {
    color: #7fa100;
    background: #ffffff;
}

.srrf-cta-btn-outline:hover {
    color: #ffffff;
    background: #171717;
}

.srrf-footer {
    color: #ffffff;
    background: linear-gradient(rgba(8, 10, 8, 0.92), rgba(8, 10, 8, 0.94)), url("../img/about-rubber-flooring.png") center / cover no-repeat;
}

.srrf-footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(180px, 1fr));
    gap: 38px;
    width: 100%;
    padding: 70px 38px 54px;
}

.srrf-footer-col h3 {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 12px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.srrf-footer-col h3::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 2px;
    content: "";
    background: #c6d421;
}

.srrf-footer-logo-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 1px 14px;
    border-radius: 8px;
    background: #ffffff;
}

.srrf-footer-logo {
    display: block;
    width: auto;
    height: 72px;
    object-fit: contain;
}

.srrf-footer-brand p {
    max-width: 420px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
    line-height: 1.75;
}

.srrf-footer-links,
.srrf-footer-contact {
    display: grid;
    gap: 13px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.srrf-footer-links a,
.srrf-footer-contact a {
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.45;
    text-decoration: none;
}

.srrf-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.srrf-footer-links i,
.srrf-footer-contact i {
    color: #c6d421;
    font-size: 14px;
}

.srrf-footer-links a:hover,
.srrf-footer-contact a:hover {
    color: #c6d421;
}

.srrf-footer-contact li {
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.55;
}

.srrf-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 38px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
}

.srrf-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    line-height: 1.5;
}

.srrf-footer-bottom a {
    color: #c6d421;
    font-weight: 700;
    text-decoration: none;
}

.srrf-back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: #7fa100;
    font-size: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.srrf-back-to-top.srrf-back-to-top-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.srrf-back-to-top:hover {
    background: #171717;
}

@media (max-width: 991.98px) {
    .srrf-main-nav {
        min-height: 70px;
        padding: 8px 0;
    }

    .srrf-logo {
        max-width: 146px;
        height: 62px;
    }

    .srrf-nav-collapse {
        margin-top: 8px;
        padding: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .srrf-nav-list {
        align-items: stretch;
        gap: 0;
    }

    .srrf-nav-link {
        min-height: auto;
        padding: 13px 10px !important;
    }

    .srrf-contact-link {
        margin: 8px 0 0;
        padding: 13px 10px !important;
    }

    .srrf-quote-btn {
        width: fit-content;
        margin: 10px 0 4px;
        padding: 12px 18px !important;
    }

    .srrf-about-section {
        padding: 58px 0;
    }

    .srrf-about-content {
        margin: 0 28px;
        padding: 36px 32px;
    }

    .srrf-about-content::before,
    .srrf-about-content::after {
        width: 42%;
    }

    .srrf-about-title {
        font-size: 30px;
    }

    .srrf-trust-overlay {
        padding: 64px 28px;
    }

    .srrf-trust-content {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .srrf-trust-title {
        font-size: 31px;
    }

    .srrf-products-section {
        padding: 60px 0 66px;
    }

    .srrf-products-wrap {
        padding: 0 28px;
    }

    .srrf-products-title {
        font-size: 31px;
    }

    .srrf-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .srrf-why-section {
        padding: 64px 0;
    }

    .srrf-why-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 28px;
    }

    .srrf-why-intro {
        position: static;
    }

    .srrf-why-title {
        font-size: 30px;
    }

    .srrf-faq-section {
        padding: 64px 0;
    }

    .srrf-faq-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 28px;
    }

    .srrf-faq-title {
        font-size: 31px;
    }

    .srrf-cta-section {
        padding: 56px 28px;
    }

    .srrf-cta-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px;
    }

    .srrf-cta-title {
        font-size: 30px;
    }

    .srrf-cta-actions {
        justify-content: flex-start;
    }

    .srrf-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 56px 28px 44px;
    }

    .srrf-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 28px;
    }
}

@media (max-width: 575.98px) {
    .srrf-topbar-inner {
        justify-content: center;
        flex-wrap: wrap;
        gap: 7px 14px;
        min-height: 58px;
        padding: 7px 0;
    }

    .srrf-topbar-contact {
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px 14px;
    }

    .srrf-social-links {
        gap: 14px;
    }

    .srrf-topbar {
        font-size: 12px;
    }

    .srrf-main-nav {
        min-height: 64px;
        padding: 8px 0;
    }

    .srrf-logo {
        max-width: 128px;
        height: 54px;
    }

    .srrf-menu-toggle {
        width: 40px;
        height: 38px;
    }

    .srrf-about-section {
        padding: 42px 0;
    }

    .srrf-about-content {
        margin: 0 18px;
        padding: 28px 20px;
        gap: 18px;
    }

    .srrf-about-content::before {
        top: -12px;
        right: 20px;
        width: 46%;
        height: 32px;
    }

    .srrf-about-content::after {
        left: 20px;
        bottom: -12px;
        width: 46%;
        height: 32px;
    }

    .srrf-about-title {
        font-size: 25px;
    }

    .srrf-about-text {
        font-size: 15px;
        line-height: 1.65;
    }

    .srrf-trust-overlay {
        padding: 48px 18px;
    }

    .srrf-trust-title {
        font-size: 26px;
    }

    .srrf-trust-text {
        font-size: 15px;
        line-height: 1.65;
    }

    .srrf-trust-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 18px;
    }

    .srrf-products-section {
        padding: 48px 0 54px;
    }

    .srrf-products-wrap {
        padding: 0 18px;
    }

    .srrf-products-heading {
        margin-bottom: 30px;
    }

    .srrf-products-title {
        font-size: 25px;
    }

    .srrf-products-subtitle {
        font-size: 15px;
    }

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

    .srrf-product-card {
        padding: 18px;
    }

    .srrf-product-img-box {
        height: 190px;
    }

    .srrf-product-img-box img {
        height: 190px;
    }

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

    .srrf-why-section {
        padding: 48px 0;
    }

    .srrf-why-wrap {
        padding: 0 18px;
    }

    .srrf-why-intro {
        padding: 24px;
    }

    .srrf-why-title {
        font-size: 25px;
    }

    .srrf-why-text {
        font-size: 15px;
        line-height: 1.65;
    }

    .srrf-why-image {
        height: 200px;
        margin-top: 22px;
    }

    .srrf-why-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .srrf-why-card {
        padding: 22px;
    }

    .srrf-faq-section {
        padding: 48px 0;
    }

    .srrf-faq-wrap {
        gap: 24px;
        padding: 0 18px;
    }

    .srrf-faq-heading {
        padding: 24px;
    }

    .srrf-faq-title {
        font-size: 26px;
    }

    .srrf-faq-intro {
        font-size: 15px;
        line-height: 1.65;
    }

    .srrf-faq-item summary {
        padding: 18px 52px 18px 18px;
        font-size: 16px;
    }

    .srrf-faq-item summary::after {
        right: 18px;
    }

    .srrf-faq-item p {
        padding: 0 18px 18px;
        font-size: 14px;
    }

    .srrf-faq-help {
        grid-template-columns: 1fr;
        margin-top: 22px;
    }

    .srrf-cta-section {
        padding: 42px 18px;
    }

    .srrf-cta-wrap {
        padding: 24px;
    }

    .srrf-cta-title {
        font-size: 25px;
    }

    .srrf-cta-text {
        font-size: 15px;
        line-height: 1.65;
    }

    .srrf-cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .srrf-cta-btn {
        width: 100%;
    }

    .srrf-footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 46px 18px 36px;
    }

    .srrf-footer-logo {
        height: 62px;
    }

    .srrf-footer-bottom {
        padding: 16px 18px;
    }

    .srrf-back-to-top {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}
