/* Start custom CSS for html, class: .elementor-element-967184c */<div class="cta-bar">
        <div class="cta">GET A QUOTE</div>
        <div class="cta cta--center">
           Recovery Guy Towing Services: Your Trusted Roadside Partner
        </div>
        <div class="cta">
             <svg aria-hidden="true" width="24" height="24" viewBox="0 0 24 24" fill="white">
                <path d="M21 16.5v3a1.5 1.5 0 0 1-1.64 1.5 19.8 19.8 0 0 1-8.64-3.27 19.4 19.4 0 0 1-6-6A19.8 19.8 0 0 1 1 3.64 1.5 1.5 0 0 1 2.5 2h3A1.5 1.5 0 0 1 7 3.28c.14.99.4 1.95.77 2.87a1.5 1.5 0 0 1-.34 1.59L6.2 9.98a16.9 16.9 0 0 0 6.83 6.83l2.24-1.23a1.5 1.5 0 0 1 1.59-.34c.92.37 1.88.63 2.87.77A1.5 1.5 0 0 1 21 16.5Z"/>
            </svg>
             <a href="tel:07498577717">&nbsp;CONTACT US: <strong>074&nbsp;&nbsp;9857&nbsp;&nbsp;7717</strong></a>
        </div>
    </div>

<style>
:root {
            --navy: #0C1757;
            --orange: #E66929;
        }

        body {
            margin: 0;
            font-family: Arial, sans-serif;
        }

        .cta-bar {
            display: flex;
            align-items: stretch; /* This makes all children equal height */
            font-family: '', sans-serif;
            text-transform: uppercase;
            color: #fff;
            font-weight: 400;
            font-size: 18px; /* Increased from 16px */
            height: 100px; /* Fixed height instead of min-height */
        }

        .cta {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--orange);
            padding: 0 20px; /* Removed vertical padding since height is fixed */
            line-height: 1.2;
        }
        
        .cta a{
        color: white;
        }

        .cta--center {
            flex: 0 0 auto;
            display: flex; /* Added this */
            align-items: center; /* Added this */
            justify-content: center; /* Added this */
            background: var(--navy);
            position: relative;
            padding: 0 60px; /* Removed vertical padding */
            gap: 12px;
        }

        .cta--center::before,
        .cta--center::after {
            content: "";
            position: absolute;
            top: 0;
            width: 50px;
            height: 100%;
            background: var(--orange);
            z-index: 1;
        }

        .cta--center::before {
            left: -35px;
            transform: skewX(-15deg);
        }

        .cta--center::after {
            right: -35px;
            transform: skewX(-15deg);
        }

        .cta--center * {
            position: relative;
            z-index: 2;
        }

        .cta--center a {
            color: #fff;
            text-decoration: none;
        }

        /* Large desktop - even bigger */
        @media (min-width: 1400px) {
            .cta-bar {
                font-size: 20px;
                height: 55px; /* Fixed height */
            }
            .cta--center {
                padding: 0 70px; /* Only horizontal padding */
            }
        }

        /* Desktop - standard bigger size */
        @media (min-width: 992px) and (max-width: 1399px) {
            .cta-bar {
                font-size: 18px;
                height: 55px; /* Fixed height */
            }
        }

        /* Small laptops - slightly smaller but still bigger than original */
        @media (min-width: 768px) and (max-width: 991px) {
            .cta-bar {
                font-size: 16px; /* Back to original size for small laptops */
                height: 55px; /* Fixed height */
            }
            .cta {
                padding: 0 15px; /* Only horizontal padding */
            }
            .cta--center {
                padding: 0 50px; /* Only horizontal padding */
            }
        }

        /* Tablet and below - stacked layout */
        @media (max-width: 767px) {
            .cta-bar {
                flex-wrap: wrap;
                height: auto; /* Allow auto height for stacked layout */
                font-size: 20px; /* Larger on mobile for better readability */
                text-align: center;
            }
            .cta {
                flex: 1 0 100%;
                height: 70px; /* Fixed height for mobile blocks */
                padding: 0 10px; /* Only horizontal padding */
            }
            .cta--center {
                width: 100%;
                height: 70px; /* Fixed height for mobile blocks */
                padding: 0 20px; /* Only horizontal padding */
            }
            .cta--center::before,
            .cta--center::after {
                display: none;
            }
        }

        /* Mobile - smaller text but good padding */
        @media (max-width: 640px) {
            .cta-bar {
                font-size: 18px;
            }
            .cta {
                height: 65px; /* Slightly smaller on very small screens */
            }
            .cta--center {
                height: 65px; /* Slightly smaller on very small screens */
            }
        }/* End custom CSS */