/* Theme Name: Rentup 
Theme URI: https://rentup.cool24.vot.pl 
Author: Coolbrand 
Author URI: https://coolbrand.pl 
Description: Motyw dla strony Rentup
Version: 1.0 
License: GNU General Public License v2 or later 
License URI: http://www.gnu.org/licenses/gpl-2.0.html 
Text Domain: my-custom-theme 
Tags: responsive, custom-colors*/

:root {
    --font-primary: "Montserrat", sans-serif;
    --color-heading: #101C32;
    --color-paragraph: #222222;
    --color-link: #000000;
    --color-button: #BC0003;
    --color-hover: #E21A1D;
    --font-size-base: 16px;
    --font-size-lg: 30px;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --border-radius: 5px;
    --transition-ease: 0.3s ease;
    --max-width: 1240px;
}

* {
    box-sizing: border-box;
}

body {
    max-width: var(--max-width);
    margin: 0 auto;
    font-family: var(--font-primary);
    overflow-x: hidden !important;
}

/* Header Base */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #0B1526;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 80px;
    gap: 40px;
}

/* Logo po lewej */
.header-logo {
    flex-shrink: 0;
    margin-right: auto;
}

/* Nav po prawej przy przycisku */
.header-nav {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* Przycisk telefonu po prawej */
.header-phone {
    flex-shrink: 0;
}

/* Logo */
.header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.header-logo .site-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

/* Desktop Navigation */
.header-nav .nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav .nav-menu li {
    margin: 0;
    padding: 0;
}

.header-nav .nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.header-nav .nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #BC0003;
    transition: width 0.3s ease;
}

.header-nav .nav-menu li a:hover,
.header-nav .nav-menu li.current-menu-item a,
.header-nav .nav-menu li.current_page_item a {
    color: #BC0003;
}

.header-nav .nav-menu li a:hover::after,
.header-nav .nav-menu li.current-menu-item a::after,
.header-nav .nav-menu li.current_page_item a::after {
    width: 100%;
}

/* Phone Button */
.header-phone {
    display: flex;
    align-items: center;
}

.phone-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #BC0003;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-button:hover {
    background-color: #E21A1D;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(188, 0, 3, 0.4);
}

.phone-button .phone-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.phone-button i {
    font-size: 16px;
}

.phone-button .phone-number {
    white-space: nowrap;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background-color: #0B1526;
    z-index: 999;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: #BC0003;
}

/* Mobile Navigation */
.mobile-nav {
    padding: 20px 0;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-menu li:last-of-type {
    border-bottom: none;
} 

.mobile-nav-menu li a {
    display: block;
    padding: 18px 30px;
    color: #ffffff;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-menu li a:hover,
.mobile-nav-menu li.current-menu-item a,
.mobile-nav-menu li.current_page_item a {
    color: #BC0003;
    background-color: rgba(188, 0, 3, 0.1);
    padding-left: 40px;
}

/* Mobile Menu Phone */
.mobile-menu-phone {
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-phone .phone-button {
    width: 100%;
    justify-content: center;
}

/* Body padding for fixed header */
body {
    padding-top: 80px;
}

/* Tablet */
@media (max-width: 1024px) {
    html, body {
        overflow-x: hidden;
    }
    
    .header-nav .nav-menu {
        gap: 25px;
    }

    .header-nav .nav-menu li a {
        font-size: 14px;
    }

    .phone-button {
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }

    body {
        padding-top: 70px;
    }

    /* Hide desktop nav */
    .header-nav {
        display: none;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
        order: 3;
    }

    /* Center phone button on mobile */
    .header-phone {
        order: 2;
        flex: 1;
        justify-content: center;
    }

    .phone-button {
        padding: 10px 20px;
        font-size: 13px;
    }

    .phone-button .phone-number {
        display: inline;
    }

    /* Logo */
    .header-logo {
        order: 1;
    }

    .header-logo img {
        max-height: 40px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .site-header {
        padding: 0 15px;
    }

    .header-container {
        height: 65px;
    }

    body {
        padding-top: 65px;
    }

    .phone-button {
        padding: 8px 16px;
        font-size: 12px;
        gap: 8px;
    }

    .phone-button .phone-icon {
        width: 16px;
        height: 16px;
    }

    .header-logo img {
        max-height: 35px;
    }

    .mobile-menu {
        width: 280px;
    }
}

/* Footer Main */
.site-footer {
    background-color: #0B1526;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-main {
    padding: 60px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Footer Logo */
.footer-logo {
    flex-shrink: 0;
    width: 160px;
}

.footer-logo a {
    display: block;
    text-decoration: none;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-logo .site-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}

/* Footer Columns */
.footer-column {
    flex: 1;
    min-width: 0;
}

.footer-heading {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-transform: none;
}

/* Footer Info Items */
.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.footer-info-item:last-child {
    margin-bottom: 0;
}

.footer-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-icon-fa {
    width: 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
    margin-top: 2px;
    text-align: center;
}

.footer-info-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info-item a:hover {
    color: #BC0003;
}

/* Footer Navigation */
.footer-nav .footer-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav .footer-menu-list li {
    margin-bottom: 12px;
}

.footer-nav .footer-menu-list li:last-child {
    margin-bottom: 0;
}

.footer-nav .footer-menu-list li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav .footer-menu-list li a:hover {
    color: #BC0003;
}

/* Footer Social */
.footer-social {
    flex: 0 0 auto;
    min-width: 150px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.social-icon i {
    font-size: 16px;
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-credits {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-credits .separator {
    color: rgba(255, 255, 255, 0.4);
}

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

.footer-credits a:hover {
    color: #BC0003;
}

/* Tablet */
@media (max-width: 1024px) {
    .footer-container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-logo {
        width: 140px;
    }

    .footer-column {
        flex: 1 1 calc(50% - 30px);
        min-width: 200px;
    }

    .footer-social {
        flex: 1 1 100%;
    }

    .footer-social-icons {
        justify-content: flex-start;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-logo {
        width: 100%;
        text-align: center;
    }

    .footer-logo img {
        max-width: 150px;
    }

    .footer-column {
        flex: 1 1 100%;
        width: 100%;
    }

    .footer-heading {
        margin-bottom: 15px;
    }

    .footer-social {
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-credits {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .footer-main {
        padding: 30px 15px;
    }

    .footer-bottom {
        padding: 15px;
    }

    .footer-info-item {
        font-size: 13px;
    }

    .footer-copyright,
    .footer-credits {
        font-size: 12px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #101C32;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 997;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #E21A1D;
    transform: translateY(-3px);
}

.back-to-top i {
    color: #ffffff;
    font-size: 18px;
}

.cookies-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.cookies-banner.visible {
    opacity: 1;
    visibility: visible;
}

.cookies-content {
    background-color: #ffffff;
    max-width: 660px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    font-family: "Montserrat", sans-serif;
}

.cookies-title {
    font-size: 24px;
    font-weight: 700;
    color: #101C32;
    margin: 0 0 15px 0;
}

.cookies-description {
    font-size: 12px;
    line-height: 1.6;
    color: #222222;
    margin: 0 0 25px 0;
}

/* Cookies Options */
.cookies-option {
    background-color: #F2F2F2;
    padding: 12px;
    margin-bottom: 15px;
}

.cookies-option-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.cookies-option-title {
    font-size: 14px;
    font-weight: 700;
    color: #101C32;
}

.cookies-option-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookies-always-active {
    font-size: 14px;
    color: #1C2F52;
}

.cookies-chevron {
    font-size: 14px;
    color: #1C2F52;
    transition: transform 0.3s ease;
}

.cookies-chevron.rotated {
    transform: rotate(180deg);
}

.cookies-option-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.cookies-option-content.open {
    max-height: 200px;
    padding-top: 15px;
}

.cookies-option-content p {
    font-size: 12px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* Toggle Switch */
.cookies-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookies-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookies-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cccccc;
    border-radius: 26px;
    transition: 0.3s ease;
}

.cookies-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: 0.3s ease;
}

.cookies-toggle input:checked + .cookies-toggle-slider {
    background-color: #101C32;
}

.cookies-toggle input:checked + .cookies-toggle-slider:before {
    transform: translateX(24px);
}

/* Cookies Buttons */
.cookies-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.cookies-btn {
    flex: 1;
    padding: 10px 20px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookies-btn-accept {
    background-color: #BC0003;
    color: #ffffff;
    border: 2px solid #BC0003;
}

.cookies-btn-accept:hover {
    background-color: #E21A1D;
    border-color: #E21A1D;
}

.cookies-btn-reject {
    background-color: #ffffff;
    color: #BC0003;
    border: 2px solid #BC0003;
}

.cookies-btn-reject:hover {
    background-color: #BC0003;
    color: #ffffff;
}

.cookies-btn-save {
    background-color: #ffffff;
    color: #BC0003;
    border: 2px solid #BC0003;
}

.cookies-btn-save:hover {
    background-color: #BC0003;
    color: #ffffff;
}

/* Cookies Policy Link */
.cookies-policy-link {
    text-align: center;
}

.cookies-policy-link a {
    font-size: 14px;
    font-weight: 600;
    color: #BC0003;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookies-policy-link a:hover {
    color: var(--color-heading);
}

/* Cookies Responsive */
@media (max-width: 480px) {
    .cookies-content {
        padding: 20px;
    }

    .cookies-title {
        font-size: 20px;
    }

    .cookies-buttons {
        flex-direction: column;
    }

    .cookies-btn {
        width: 100%;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

.hero-section {
    position: relative;
    min-height: 560px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -80px;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: "Montserrat", sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 10%;
    text-transform: uppercase;
    margin-bottom: 25px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    margin: 0;
}

.hero-button {
    display: inline-block;
    background-color: #BC0003;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: #E21A1D;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(188, 0, 3, 0.4);
}

/* Hero Stats Bar - 50% overlaps image, 50% outside */
.hero-stats {
    position: relative;
    z-index: 3;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -45px;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.hero-stats-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 56px;
    background-color: #101C32;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-stat-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.hero-stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-stat-number {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #BC0003;
    line-height: 1;
}

.hero-stat-text {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .hero-stats-container {
        padding: 20px 40px;
    }

    .hero-stat-number {
        font-size: 22px;
    }

    .hero-stat-text {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 520px;
        margin-top: -70px;
        padding-top: 70px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-text {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .hero-stats {
        margin-top: -100px;
    }

    .hero-stats-container {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        max-width: 300px;
    }

    .hero-stat {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 520px;
        margin-top: -65px;
        padding-top: 65px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-text {
        font-size: 11px;
    }

    .hero-button {
        font-size: 12px;
        padding: 10px 24px;
    }

    .hero-stat-icon {
        width: 28px;
        height: 28px;
    }

    .hero-stat-number {
        font-size: 20px;
    }

    .hero-stat-text {
        font-size: 11px;
    }
}

.about-section {
    background-color: #0B1526;
    padding: 100px 20px;
    width: 100vw;
    margin-top: -50px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.about-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
    width: 50%;
}

/* Separators - white, stacked */
.about-separators {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 25px;
}

.separator-line {
    width: 735px;
    height: 1px;
    background-color: #FFFFFF33;
    margin-bottom: 10px;
}

.separator-line:nth-child(2) {
    width: 342.467529296875px;
}

.about-container {
    position: relative;
}

.about-separators-bottom {
    position: absolute;
    bottom: 20px;
    left: 20%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 0;
}

.about-separators-bottom .separator-line:first-child {
    width: 380px;
    margin-bottom: 10px;
}

.about-separators-bottom .separator-line:nth-child(2) {
    width: 280px;
    transform: translateX(100px)
}
/* Title */
.about-title {
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 25px 0;
    line-height: 1.3;
}

/* Text */
.about-text {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-text h2 {
    color: white;
    font-size: 30px;
    font-weight: 700;
}

.about-text h3 {
    color: white;
    font-size: 24px;
}

.about-text p {
    margin: 0 0 15px 0;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: #ffffff;
    font-weight: 600;
}

/* RF Logo */
.about-rf {
    margin-bottom: 25px;
}

.about-rf img {
    max-height: 85px;
    width: auto;
}

/* Button */
.about-button {
    display: inline-block;
    background-color: #BC0003;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.about-button:hover {
    background-color: #E21A1D;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(188, 0, 3, 0.4);
}

/* Image */
.about-image {
    flex: 1;
    width: 625px;
    height: 590px;
    padding: 20px;
}

.about-image-wrapper {
    position: relative;
    display: inline-block;
    overflow: visible;
    width: 100%;
    height: 100%;
}

.about-image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Corner decorations */
.corner {
    position: absolute;
    width: 280px;
    height: 280px;
    pointer-events: none;
}

.corner-top-right {
    top: -20px;
    right: -20px;
    border-top: 20px solid #BC0003;
    border-right: 20px solid #BC0003;
}

.corner-bottom-left {
    bottom: -20px;
    left: -20px;
    border-bottom: 20px solid #BC0003;
    border-left: 20px solid #BC0003;
}

/* About Responsive */
@media (max-width: 1024px) {
    .about-container {
        gap: 40px;
    }

    .about-title {
        font-size: 22px;
    }

    .about-text {
        font-size: 13px;
    }

    .corner {
        width: 80px;
        height: 80px;
    }
    
    .corner-top-right {
        top: -18px;
        right: -18px;
    }
    
    .corner-bottom-left {
        bottom: -18px;
        left: -18px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 120px 20px;
        margin-top: -100px;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-content {
        width: 100%;
        order: 2;
    }

    .about-image {
        max-width: 100%;
        order: 1;
    }

    .about-title {
        font-size: 22px;
    }

    .corner {
        width: 70px;
        height: 70px;
    }
    
    .corner-top-right {
        top: -15px;
        right: -15px;
    }
    
    .corner-bottom-left {
        bottom: -15px;
        left: -15px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 100px 15px;
        margin-top: -80px;
    }

    .about-title {
        font-size: 20px;
    }

    .about-text {
        font-size: 13px;
    }

    .separator-line {
        width: 100px;
    }

    .separator-line:nth-child(2) {
        width: 60px;
    }

    .corner {
        width: 50px;
        height: 50px;
        border-width: 2px !important;
    }
    
    .corner-top-right {
        top: -12px;
        right: -12px;
    }
    
    .corner-bottom-left {
        bottom: -12px;
        left: -12px;
    }
}

.why-section {
    background-color: #ffffff;
    padding: 80px 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.why-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Images - LEFT side */
.why-images {
    flex: 1;
    max-width: 700px;
    order: 1;
}

.why-images-wrapper {
    position: relative;
    padding-bottom: 80px;
    padding-left: 40px;
}

.why-img-large {
    display: block;
    width: 90%;
    aspect-ratio: 1 / 1;
}

.why-img-large {
    object-fit: cover;
}

.why-img-small-wrapper {
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 60%;
}

.why-img-small-inner {
    position: relative;
}

.why-img-small-inner .corner-bottom-left {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    border-bottom: 20px solid #BC0003;
    border-left: 20px solid #BC0003;
    pointer-events: none;
}

.why-img-small {
    display: block;
    width: 100%;
    height: auto;
}

/* Content - RIGHT side */
.why-content {
    flex: 1;
    max-width: 550px;
    order: 2;
}

.why-title {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #101C32;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.why-text {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #222222;
    line-height: 1.7;
    margin-bottom: 30px;
}

.why-text h2 {
    color: var(--color-heading);
}

.why-text h3 {
    color: var(--color-heading);
}

.why-text p {
    margin: 0 0 15px 0;
}

.why-text p:last-child {
    margin-bottom: 0;
}

.why-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.why-text ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.6;
}

.why-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #BC0003;
    font-weight: 700;
    font-size: 14px;
}

.why-text strong {
    color: #101C32;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-container {
        gap: 40px;
    }

    .why-title {
        font-size: 24px;
    }

    .why-images-wrapper {
        padding-bottom: 60px;
        padding-left: 30px;
    }

    .why-img-small-inner .corner-bottom-left {
        width: 60px;
        height: 60px;
        bottom: -12px;
        left: -12px;
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 60px 20px;
    }

    .why-container {
        flex-direction: column;
        gap: 40px;
    }

    .why-images {
        max-width: 100%;
        width: 100%;
        order: 1;
    }

    .why-content {
        max-width: 100%;
        order: 2;
    }

    .why-title {
        font-size: 22px;
    }

    .why-images-wrapper {
        padding-bottom: 50px;
        padding-left: 20px;
    }

    .why-img-large {
        width: 90%;
    }

    .why-img-small-wrapper {
        width: 50%;
    }

    .why-img-small-inner .corner-bottom-left {
        width: 50px;
        height: 50px;
        bottom: -10px;
        left: -10px;
    }
}

@media (max-width: 480px) {
    .why-section {
        padding: 40px 15px;
    }

    .why-title {
        font-size: 20px;
    }

    .why-text {
        font-size: 13px;
    }

    .why-text ul li {
        font-size: 12px;
        padding-left: 24px;
    }

    .why-images-wrapper {
        padding-bottom: 40px;
        padding-left: 15px;
    }

    .why-img-small-wrapper {
        width: 55%;
        right: 0;
    }

    .why-img-small-inner .corner-bottom-left {
        width: 40px;
        height: 40px;
        bottom: -8px;
        left: -8px;
        border-width: 2px;
    }
}

.icons-section {
    position: relative;
    padding: 80px 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-color: #0A152A63;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.icons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0A152A63;
    pointer-events: none;
}

.icons-container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
}

/* Top text */
.icons-top-text {
    text-align: center;
    margin-bottom: 50px;
}

.icons-top-text p {
    margin: 0 0 10px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
}

.icons-top-text h3 {
    margin: 0 0 15px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.icons-top-text h2:last-child,
.icons-top-text p:last-child {
    margin-bottom: 0;
}

/* Icons grid */
.icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.icon-item {
    background: rgba(11, 21, 38, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.icon-item:hover {
    transform: translateY(-5px);
    background: rgba(11, 21, 38, 0.95);
    border-color: #BC0003;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.icon-item:hover .icon-item-image img {
    transform: scale(1.1);
}

.icon-item-image {
    margin-bottom: 20px;
}

.icon-item-image img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0) saturate(100%) invert(72%) sepia(18%) saturate(487%) hue-rotate(182deg) brightness(95%) contrast(87%);
}

.icon-item:hover .icon-item-image img {
    filter: brightness(0) invert(1);
}

.icon-item-title {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.icon-item-text {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Bottom text */
.icons-bottom-text {
    padding: 40px;
    text-align: center;
}

.icons-bottom-text h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
}

.icons-bottom-text p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.icons-bottom-text strong {
    color: white;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .icons-grid {
        gap: 20px;
    }

    .icon-item {
        padding: 25px 20px;
    }

    .icons-top-text h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .icons-section {
        padding: 60px 20px;
    }

    .icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .icons-top-text {
        text-align: left;
    }

    .icons-top-text h2 {
        font-size: 20px;
    }

    .icons-bottom-text {
        text-align: left;
        padding: 30px 20px;
    }

    .icons-bottom-text h3 {
        font-size: 18px;
    }

    .icons-bottom-text p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .icons-section {
        padding: 40px 15px;
    }

    .icons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .icon-item {
        padding: 25px 20px;
    }

    .icons-top-text h2 {
        font-size: 18px;
    }

    .icons-bottom-text {
        padding: 25px 15px;
    }

    .icons-bottom-text h3 {
        font-size: 16px;
    }
}

.reviews-section {
    background-color: #ffffff;
    padding: 80px 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.reviews-container {
    max-width: 1240px;
    margin: 0 auto;
}

/* Animated lines - below header */
.reviews-lines {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.reviews-line {
    height: 14px;
    background-color: #e0e0e0;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.reviews-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #546E9E;
}

.reviews-line:nth-child(1)::after {
    animation: fillLine1 5s ease forwards infinite;
}

.reviews-line:nth-child(2)::after {
    animation: fillLine2 5s ease forwards infinite;
}

.reviews-line:nth-child(3)::after {
    animation: fillLine3 5s ease forwards infinite;
}

.reviews-line:nth-child(4)::after {
    animation: fillLine4 5s ease forwards infinite;
}

.reviews-line:nth-child(5)::after {
    animation: fillLine5 5s ease forwards infinite;
}

@keyframes fillLine1 {
    0%, 100% { width: 0; }
    10%, 90% { width: 100%; }
}

@keyframes fillLine2 {
    0%, 10%, 100% { width: 0; }
    20%, 90% { width: 100%; }
}

@keyframes fillLine3 {
    0%, 20%, 100% { width: 0; }
    30%, 90% { width: 100%; }
}

@keyframes fillLine4 {
    0%, 30%, 100% { width: 0; }
    40%, 90% { width: 100%; }
}

@keyframes fillLine5 {
    0%, 40%, 100% { width: 0; }
    50%, 90% { width: 100%; }
}

/* Header */
.reviews-header {
    margin-bottom: 40px;
}

.reviews-title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #101C32;
    margin: 0 0 20px 0;
}

.reviews-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

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

.reviews-rating {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.reviews-score {
    font-family: "Montserrat", sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #101C32;
}

.reviews-count {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #101C32;
}

.reviews-stars {
    display: flex;
    gap: 3px;
    margin-left: 10px;
}

.reviews-stars i {
    color: #F5A623;
    font-size: 16px;
}

.reviews-google-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #0B1526;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.reviews-google-link:hover {
    background-color: #1C2F52;
}

/* Navigation - round buttons */
.reviews-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-nav-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0B1526;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-nav-btn:hover {
    background-color: #1C2F52;
}

/* Slider */
.reviews-slider-wrapper {
    overflow: hidden;
}

.reviews-slider {
    display: flex;
    transition: transform 0.4s ease;
}

.review-card {
    flex: 0 0 calc(50% - 15px);
    margin-right: 30px;
    background-color: #0B1526;
    padding: 30px;
    box-sizing: border-box;
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #1E90FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.review-info {
    flex: 1;
}

.review-name {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 3px 0;
}

.review-date {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
}

.review-stars i {
    color: #F5A623;
    font-size: 14px;
}

.review-text {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Hide default trustindex styles */
.ti-widget {
    display: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc(50% - 0px);
    }

    .reviews-title {
        font-size: 24px;
    }

    .reviews-score {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 20px;
    }

    .reviews-header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .review-card {
        flex: 0 0 100%;
    }

    .reviews-title {
        font-size: 22px;
    }

    .reviews-score {
        font-size: 32px;
    }

    .reviews-nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 40px 15px;
    }

    .reviews-lines {
        gap: 6px;
    }

    .review-card {
        padding: 20px;
    }

    .reviews-title {
        font-size: 20px;
    }

    .reviews-score {
        font-size: 28px;
    }

    .reviews-google-link {
        font-size: 12px;
        padding: 10px 18px;
    }
}

.blog-section {
    background-color: #F2F2F2;
    padding: 80px 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.blog-container {
    max-width: 1240px;
    margin: 0 auto;
}

/* Header */
.blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.blog-header-left {
    display: flex;
    flex-direction: column;
}

.blog-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #0B1526;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 5px 0;
}

.blog-title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #101C32;
    margin: 0;
}

/* Navigation */
.blog-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-nav-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0B1526;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-nav-btn:hover {
    background-color: #1C2F52;
}

/* Slider */
.blog-slider-wrapper {
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-slider {
    display: flex;
    transition: transform 0.4s ease;
}

/* Blog Card - image as background */
.blog-card {
    flex: 0 0 calc(33.333% - 20px);
    margin-right: 30px;
    position: relative;
    height: 400px;
    overflow: hidden;
}

.blog-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

/* Overlay gradient at bottom */
.blog-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(11, 21, 38, 0.95) 0%, rgba(11, 21, 38, 0.7) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.blog-card-date i {
    font-size: 12px;
}

.blog-card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #1C2F52;
}

.blog-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #FFFFFF;
    border-radius: 0;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-card-btn:hover {
    background-color: #1C2F52;
}

/* View All Button */
.blog-view-all {
    text-align: center;
}

.blog-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #0B1526;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.blog-view-all-btn:hover {
    background-color: #1C2F52;
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-card {
        flex: 0 0 calc(50% - 15px);
        height: 380px;
    }

    .blog-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 20px;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .blog-card {
        flex: 0 0 calc(100% - 0px);
        height: 350px;
    }

    .blog-title {
        font-size: 22px;
    }

    .blog-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 40px 15px;
    }

    .blog-title {
        font-size: 20px;
    }

    .blog-card {
        height: 320px;
    }

    .blog-card-title {
        font-size: 14px;
    }

    .blog-card-btn {
        font-size: 11px;
        padding: 8px 16px;
    }
}

/* Hero Section */
.archive-hero {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -80px;
    padding-top: 80px;
}

.archive-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 21, 38, 0.6);
    pointer-events: none;
}

.archive-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.archive-hero-title {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.archive-breadcrumbs {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

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

.archive-breadcrumbs a:hover {
    color: var(--color-hover);
}

.archive-breadcrumbs span {
    margin: 0 8px;
}

/* Archive Section */
.archive-section {
    background-color: #ffffff;
    padding: 80px 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.archive-container {
    max-width: 1240px;
    margin: 0 auto;
}

/* Grid Layout */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Use same blog-card styles from blog-styles.css */
.archive-grid .blog-card {
    flex: none;
    margin-right: 0;
}

/* Pagination */
.archive-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: #0B1526;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(.disabled) {
    background-color: #0B1526;
    border-color: #0B1526;
    color: #ffffff;
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: #0B1526;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-num:hover:not(.active) {
    background-color: #f5f5f5;
}

.pagination-num.active {
    background-color: #0B1526;
    border-color: #0B1526;
    color: #ffffff;
}

.pagination-dots {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #666666;
    padding: 0 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .archive-hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .archive-hero {
        min-height: 200px;
        margin-top: -70px;
        padding-top: 70px;
    }

    .archive-section {
        padding: 60px 20px;
    }

    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .archive-hero-title {
        font-size: 28px;
    }

    .archive-breadcrumbs {
        font-size: 12px;
    }

    .archive-grid .blog-card {
        height: 350px;
    }
}

@media (max-width: 600px) {
    .archive-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .archive-grid .blog-card {
        height: 380px;
    }
}

@media (max-width: 480px) {
    .archive-hero {
        min-height: 180px;
        margin-top: -65px;
        padding-top: 65px;
    }

    .archive-section {
        padding: 40px 15px;
    }

    .archive-hero-title {
        font-size: 24px;
    }

    .pagination-btn,
    .pagination-num {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
}

/* Hero Section */
.single-hero {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -80px;
    padding-top: 80px;
}

.single-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 21, 38, 0.6);
    pointer-events: none;
}

.single-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
}

.single-hero-title {
    font-family: "Montserrat", sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

/* Content Section */
.single-content-section {
    background-color: #ffffff;
    padding: 60px 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

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

.single-content {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    color: #333333;
    line-height: 1.8;
}

.single-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #101C32;
    margin: 40px 0 20px 0;
}

.single-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #101C32;
    margin: 30px 0 15px 0;
}

.single-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #101C32;
    margin: 25px 0 15px 0;
}

.single-content p {
    margin: 0 0 20px 0;
}

.single-content a {
    color: #BC0003;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.single-content a:hover {
    color: #E21A1D;
}

.single-content ul,
.single-content ol {
    margin: 0 0 20px 20px;
    padding: 0;
}

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

.single-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.single-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background-color: #f5f5f5;
    border-left: 4px solid #BC0003;
    font-style: italic;
}

.single-content blockquote p {
    margin: 0;
}

/* Related Posts Section */
.related-section {
    background-color: #F2F2F2;
    padding: 80px 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.related-container {
    max-width: 1240px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .single-hero-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .single-hero {
        min-height: 300px;
        margin-top: -70px;
        padding-top: 70px;
    }

    .single-hero-title {
        font-size: 26px;
    }

    .single-content-section {
        padding: 40px 20px;
    }

    .single-content {
        font-size: 14px;
    }

    .single-content h2 {
        font-size: 22px;
    }

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

    .related-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .single-hero {
        min-height: 250px;
        margin-top: -65px;
        padding-top: 65px;
    }

    .single-hero-title {
        font-size: 22px;
    }

    .single-content-section {
        padding: 30px 15px;
    }

    .single-content h2 {
        font-size: 20px;
    }

    .single-content h3 {
        font-size: 17px;
    }

    .related-section {
        padding: 40px 15px;
    }
}

.contact-hero,
.contact-locations,
.contact-form-section {
    overflow-x: hidden;
}

/* Hero Section */
.contact-hero {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -80px;
    padding-top: 80px;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(6, 14, 28, 0) 0%, rgba(6, 14, 28, 0.51) 100%);
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.contact-hero-title {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.contact-breadcrumbs {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

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

.contact-breadcrumbs a:hover {
    color: var(--color-hover);
}

.contact-breadcrumbs span {
    margin: 0 8px;
}

/* Locations Section */
.contact-locations {
    background-color: #ffffff;
    padding: 80px 20px;
    padding-top: 120px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.contact-locations-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

/* Location Card */
.location-card {
    flex: 1;
    position: relative;
    padding-top: 80px;
}

.location-map {
    width: 100%;
    height: 350px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.location-info {
    position: absolute;
    top: 0;
    left: 20px;
    width: 370px;
    background-color: #0B1526;
    padding: 25px 30px;
    z-index: 2;
}

.location-title {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.location-item:last-child {
    margin-bottom: 0;
}

.location-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.location-item span,
.location-item a {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-item a:hover {
    color: #BC0003;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #F2F2F2;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
}

.contact-form-container {
    display: flex;
    min-height: 600px;
}

.contact-form-content {
    width: 50%;
    padding: 60px 40px 60px calc((100vw - 1240px) / 2 + 20px);
    box-sizing: border-box;
}

.contact-form-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.contact-form-title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #101C32;
    margin: 0 0 30px 0;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
}

/* Form Messages */
.form-message {
    padding: 15px 20px;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group-full {
    width: 100%;
}

.form-group label {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #101C32;
    margin-bottom: 8px;
}

.form-group label .required {
    color: #BC0003;
}

.form-group input,
.form-group textarea {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0B1526;
}

.form-group input::placeholder {
    color: #999999;
}

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

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: #333333;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label .checkmark {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid #BC0003;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #BC0003;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: #101C32;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.contact-submit-btn {
    display: inline-block;
    background-color: #BC0003;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 30px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.contact-submit-btn:hover {
    background-color: #E21A1D;
}

.contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Image - 50% width, full bleed right */
.contact-form-image {
    width: 50%;
    position: relative;
}

.contact-form-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-locations-container {
        flex-direction: column;
        gap: 60px;
    }

    .location-info {
        width: 320px;
    }

    .contact-form-content {
        padding: 50px 30px;
    }

    .contact-form-image {
        display: none;
    }

    .contact-form-content {
        width: 100%;
        max-width: 100%;
    }

    .contact-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 200px;
        margin-top: -70px;
        padding-top: 70px;
    }

    .contact-hero-title {
        font-size: 32px;
    }

    .contact-locations {
        padding: 100px 20px 60px;
    }

    .location-info {
        width: 280px;
        padding: 20px 25px;
    }

    .contact-form-content {
        padding: 40px 20px;
    }

    .contact-form-title {
        font-size: 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        min-height: 180px;
        margin-top: -65px;
        padding-top: 65px;
    }

    .contact-hero-title {
        font-size: 26px;
    }

    .contact-breadcrumbs {
        font-size: 12px;
    }

    .contact-locations {
        padding: 80px 15px 40px;
    }

    .location-card {
        padding-top: 60px;
    }

    .location-info {
        width: calc(100% - 30px);
        left: 15px;
    }

    .location-title {
        font-size: 18px;
    }

    .location-item span,
    .location-item a {
        font-size: 13px;
    }

    .contact-form-content {
        padding: 30px 15px;
    }

    .contact-form-title {
        font-size: 20px;
    }

    .contact-submit-btn {
        width: 100%;
        text-align: center;
    }
}

.page-hero {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -80px;
    padding-top: 80px;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(6, 14, 28, 0) 0%, rgba(6, 14, 28, 0.51) 100%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.page-hero-title {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.page-breadcrumbs {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

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

.page-breadcrumbs a:hover {
    color: var(--color-hover);
}

.page-breadcrumbs span {
    margin: 0 8px;
}

.team-section {
    background-color: #F2F2F2;
    padding: 80px 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.team-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.team-text {
    flex: 0 0 35%;
}

.team-title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #101C32;
    margin: 0 0 25px 0;
    line-height: 1.3;
}

.team-text p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #333333;
    line-height: 1.7;
    margin: 0 0 15px 0;
}

.team-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-text ul li {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #333333;
    line-height: 1.7;
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.team-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #BC0003;
    font-weight: 700;
}

/* Team Members */
.team-members {
    flex: 1;
    display: flex;
    gap: 40px;
}

.team-member {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-member-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 20px;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team-member-info {
    padding: 0;
}

.team-member-location {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #101C32;
    margin: 0 0 5px 0;
}

.team-member-name {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
}

.team-member-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-contact-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.team-contact-item span,
.team-contact-item a {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #222222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.team-contact-item a:hover {
    color: #BC0003;
}

/* Responsive */
@media (max-width: 1024px) {
    .team-container {
        flex-direction: column;
        gap: 40px;
    }

    .team-text {
        flex: none;
        width: 100%;
    }

    .team-members {
        width: 100%;
    }

    .page-hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 200px;
        margin-top: -70px;
        padding-top: 70px;
    }

    .page-hero-title {
        font-size: 28px;
    }

    .team-section {
        padding: 60px 20px;
    }

    .team-members {
        flex-direction: column;
        gap: 40px;
    }

    .team-member-image {
        height: 480px;
    }

    .team-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 180px;
        margin-top: -65px;
        padding-top: 65px;
    }

    .page-hero-title {
        font-size: 24px;
    }

    .page-breadcrumbs {
        font-size: 12px;
    }

    .team-section {
        padding: 40px 15px;
    }

    .team-title {
        font-size: 20px;
    }

    .team-member-image {
        height: 350px;
    }

    .team-member-location {
        font-size: 18px;
    }
}

.steps-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.steps-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0A152A63;
    pointer-events: none;
}

.steps-container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
}

/* Header text */
.steps-header {
    text-align: center;
    margin-bottom: 50px;
}

.steps-header p {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px 0;
}

.steps-header h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Step Box */
.step-box {
    background-color: #060E1DE5;
    padding: 30px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    background-color: #BC0003;
    color: white;
    margin-bottom: 20px;
}

.step-content h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.step-content p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 0 12px 0;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-content ul li {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.step-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #BC0003;
    font-weight: 700;
}

/* Footer text */
.steps-footer {
    text-align: center;
    padding: 25px 40px;
}

.steps-footer h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-section {
    background-color: #ffffff;
    padding: 80px 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.text-section-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.text-section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #101C32;
    margin: 0 0 25px 0;
}

.text-section-content {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #333333;
    line-height: 1.8;
}

.text-section-content p {
    margin: 0 0 20px 0;
}

.text-section-content h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #101C32;
    margin: 30px 0 15px 0;
}

.text-section-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 40px;
}

.text-section-content ul li {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #333333;
    padding-left: 25px;
    position: relative;
}

.text-section-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #BC0003;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .text-section-container {
        text-align: left;
    }

    .steps-section {
        padding: 60px 20px;
    }

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

    .steps-header {
        text-align: left;
    }

    .steps-header h2 {
        font-size: 26px;
    }

    .step-box {
        padding: 25px 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .steps-footer {
        padding: 20px;
        text-align: left;
    }

    .steps-footer p {
        font-size: 12px;
    }

    .text-section {
        padding: 60px 20px;
    }

    .text-section-title {
        font-size: 24px;
    }

    .text-section-content ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .steps-section {
        padding: 40px 15px;
    }

    .steps-header h2 {
        font-size: 22px;
    }

    .step-content h3 {
        font-size: 16px;
    }

    .text-section {
        padding: 40px 15px;
    }

    .text-section-title {
        font-size: 20px;
    }
}