html {
    scroll-behavior: smooth;
}
*{
    box-sizing: border-box;
}
body {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: #34495E;
    letter-spacing: 0.02em;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 140%;
    font-family: 'Cabin', sans-serif;
    font-weight: 700;
    margin: 0;
    padding: 0;
}
h2.title {
    font-size: 40px;
    line-height: 110%;
    font-weight: 700;
    margin-bottom: 20px;
}
p {
    margin: 0;
    padding: 0;
}
button {
    padding: 0;
    border: none;
}
.container {
    max-width: 1201px;
    padding: 0 15px;
    width: auto;
    margin: 0 auto;
}
.btn {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    display: block;
    text-shadow: 0-1px 0 rgba(255,255,255,.2);
    border-radius: 5px;
    font-family: 'Cabin', sans-serif;
    background: #2ECC71;
    max-width: 680px;
    width: 100%;
    padding: 15px;
    cursor: pointer;
    text-align: center;
    transition: all 0.5s ease;
}
.btn:hover {
    background: #1d9981;
    transition: all 0.5s ease;
}
input, input:focus, textarea, textarea:focus {
    outline: none;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
a, a:hover, a:active {
    text-decoration: none;
    color: inherit;
}
.title {
    font-weight: 700;
    line-height: 110%;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/*header*/
.header {
    position: fixed;
    overflow: hidden;
    width: 100%;
    transition: all 0.5s ease;
    color: #212529;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
    background: #2ECC71;
    ; 
}
.header.scrolled {
    top: 0;
    z-index: 1002;
    transition: all 0.5s ease;
}
.header.scrolledDown {
    top: 7px;
}
.header.scrolled .header-logo {
    height: 43px;
    width: 185px;
}
.header.scrolled .header-logo__img {
    padding: 0px 25px 5px 15px;
}
.header.scrolled .header-book {
    padding: 8px 35px;
    font-size: 25px;
}
.header.scrolled .header-book::before {
    width: 25px;
    height: 25px;
}
.header__wrapper {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo {
    width: 190px;
    height: 130px;
    border-right: 1px solid rgba(255, 255, 255, 0.7);
    padding-top: 8px;
    transition: all 0.5s ease;
}
.header-logo:hover {
    transition: all 0.5s ease;
    opacity: 0.8;
}
.header-logo__img {
    padding: 0px 12px 4px 12px;
    width: 130px;
    height: 120px;
    object-fit: cover;
}
.header-menu__items {
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-menu__item:not(:last-child) {
    margin-right: 45px;
}
.header-menu__item {
    font-family: 'Cabin', sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: #34495E;
    transition: all 0.2s ease-in-out;
    position: relative;
    cursor: pointer;
}
.header-menu__item.active::after {
    width: 100%;
}
.header-menu__item::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    content: '';
    width: 0;
    height: 2px;
    margin-top: 5px;
    background-color: #2ECC71;
    transition: width 0.5s ease-in-out;
}
.header-menu__item:hover {
    transition: all 0.2s ease-in-out;
}
.header-menu__item:hover::after {
    width: 100%;
    transition: all 0.2s ease-in-out;
}
.header-menu__link_more {
    display: flex;
    align-items: center;
}
.header-menu__link_more::after {
    content: '';
    display: block;
    background: url(../img/arrow-down.png) no-repeat;
    width: 14px;
    height: 8px;
    background-size: cover;
    margin-left: 7px;
}
.header-submenu {
    padding: 15px 9px;
    width: 105px;
    margin-left: -15px;
    display: none;
    transition: all 0.5s ease;
}
.header-menu__item_more:hover .header-submenu {
    position: fixed;
    background: rgba(45, 45, 45, 0.85);
    border-radius: 10px;
    z-index: 1000000;
    width: 250px;
    color: #ffffff;
    display: block;
    transition: all 0.5s ease;
}
.header-submenu__item {
    transition: all 0.5s ease;
}
.header-submenu__item:hover {
    transition: all 0.5s ease;
    color: #2ECC71;
}
.header-submenu__item:not(:last-child) {
    margin-bottom: 10px;
}
.header-submenu__item.active {
    color: #2ECC71;
}
.header-info {
    display: flex;
}
.header-info__phone {
    font-family: 'Cabin', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    padding: 22px;
    border-radius: 20px;
    transition: opacity 0.5s ease;
}
.header-info__phone::before {
    content: '';
    display: block;
    background: url('../img/telephone-call.png');
    width: 22px;
    height: 22px;
    background-size: cover;
    margin-right: 17px;
}
.header-info__phone:hover {
    transition: opacity 0.5s ease;
    opacity: 0.8;
}
.header-info__phone_burger {
    display: none;
}
.header-book {
    display: flex;
    align-items: center;
    font-family: 'Cabin', sans-serif;
	font-size: 30px;
    letter-spacing: 3px;
	font-weight: 900;
    height: 100%;
    padding: 18px 35px;
    background: #2ECC71;
    color: #ffffff;
    transition: all ease 0.5s;
}
.header-book::before {
    content: '';
    display: block;
    margin-right: 12px;
    width: 30px;
    height: 30px;
    background: url('../img/telephone-call.png') no-repeat;
    background-size: cover;
}
.header-book:hover {
    color: #ffffff;
    background: #1d9981;
    transition: all ease 0.5s;
}
.menu-burger {
    display: none;
}
/*top section*/
.top-section {
    background: linear-gradient(360deg, rgba(52, 73, 94, 0.70), rgba(52, 73, 94, 0.3)), url('../img/home-in-florida.jpg') no-repeat;
    background-size: cover;
    background-position: center 38%;
}
.container_top-section {
    padding: 200px 0 75px;
    align-items: center;
}
.top-section__content-wrapper {
    max-width: 680px;
    width: auto;
}
.top-section__title {
    color: #fff;
    font-weight: 700;
    text-align: left;
    font-size: 62px;
    line-height: 109%;
    margin-bottom: 35px;
    width: 100%;
}
.top-section__title span {
    display: block;
}
.top-section__text {
    color: #34495E;
}
.top-form {
    color: #34495E;
    position: relative;
    width: 100%;
    max-width: 680px;
    margin: auto;
}
.top-form__fields {
    display: flex;
    flex-wrap: wrap;
    color: #34495E;
    justify-content: space-between;
}
.top-form__blog {
    background: linear-gradient(360deg, rgba(10.02, 73.73, 61.18, 0.15), rgba(10.02, 73.73, 61.18, 0.03));
    width: 33%;
    padding: 35px 20px;
    align-items: flex-start;
    height: fit-content;
    box-shadow: 0px 3px 15px rgb(0 0 0 / 10%);
    position: sticky;
    top: 7%;
}
.top-form__blog .top-form__title {
    margin-top: 0;
    margin-bottom: 32px;
    color: #34495E;
}
.top-form__blog .top-form__input {
    margin-bottom: 22px;
}
.top-form__title {
    color: #2ECC71;
    font-size: 30px;
    line-height: 110%;
    font-weight: 700;
    margin: 30px 0 15px;
}
.top-form__fields>div {
    width: 48%;
    position: relative;
}
.top-form__fields .input-wrapper_allstroke {
    width: 100%;
}
.top-form__input {
    width: 100%;
    background-color: #ffffff;
    border-radius: 5px;
    border: none;
    border-bottom: 1px solid #ffffff;
    text-shadow: none;
    color: #212529;
    font-family: "Open Sans",sans-serif;
    font-weight: 300;
    padding: 10px 12px;
    margin-bottom: 15px;
    font-size: 16px;
}
.top-form__textarea {
    border: 2px solid #ffffff;
}
.top-form__input::placeholder, .top-form__textarea::placeholder {
    color: #212529;
    opacity: 0.5;
}
.top-form__success {
    position: absolute;
    border-radius: 4px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10.02, 73.73, 61.18, 0.30);
    display: none;
}
.top-form__success-content {
    position: absolute;
    max-width: 420px;
    width: 100%;
    padding: 30px;
    background: rgba(0, 0, 0, 0.70);
    color: #ffffff;
    text-align: center;
    margin-top: 10px;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: #000;
}
.top-form__success_contact .top-form__success-content {
    max-width: 450px;
    padding: 20px;
}
.top-form__success h4 {
    margin-bottom: 7px;
    font-size: 18px;
}
.top-form__fields>.top-form__options {
    width: 100%;
    margin-bottom: 15px;
}
.top-form__options-title {
    margin-bottom: 5px;
    font-family: 'Cabin', sans-serif;
    font-size: 20px;
}
.top-form__option  {
    font-family: 'EB+Garamond', sans-serif;
    font-size: 20px;
    margin-left: 15px;
}
.contact {
    padding: 55px 10px;
}
.contact-wrapper {
    display: flex;
    align-items: center;
}
.contact-title {
    margin-bottom: 7px;
}
.container_contact-content {
    max-width: 450px;
    padding-right: 15px;
    border-right: 1px solid #212529;
    margin-right: 10px;
}
.container_contact-form {
    max-width: 600px;
}
.top-form__input {
    border: 1px solid #212529;
}
.intro {
    padding: 55px 0;
}
.intro-wrapper {
    max-width: 60%;
}
.intro-wrapper p a {
    text-decoration: underline;
}
.intro-subtitle {
    margin-top: 15px;
    margin-bottom: 10px;
}
.intro-list li {
    list-style: decimal;
    margin-left: 15px;
    margin-top: 5px;
}
.intro-list li span {
    font-weight: 800;
}
.intro-link {
    padding: 10px 15px;
    border: 1px solid #34495E;
    margin-top: 15px;
}
label.error {
    position: absolute;
    bottom: -29px;
    left: 9px;
    font-size: 15px;
    color: #cc3a26;
    text-align: left;
    margin-top: -30px;
    padding-bottom: 27px;
}
#services {
    outline: none;
    cursor: pointer;
}
#top-form__home > .remarck, #top-form__contact  > .remarck { 
    display:none; 
}
.top-form__note {
    font-size: 15px;
    margin-top: 15px;
    line-height: 110%;
}
.new-line {
    display: inline-block;
}
/* Footer */
.footer {
    padding: 40px 0 30px;
    background: #34495E;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}
.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
}
.footer-logo {
    transition: opacity ease 0.5s;
    font-family: 'Cabin', sans-serif;
    font-size: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.footer-logo:hover {
    transition: opacity ease 0.5s;
    opacity: .8;
}
.footer-logo__img {
    width: 50px;
    color: #fff;
    object-fit: cover;
    margin-right: 15px;
}
.footer-item__privacy {
    display: block;
}
.footer-item:first-child {
    padding-left: 40px;
    border-left: 2px solid #2ECC71;
}
.footer-item_terms a {
    padding: 15px;
    border-left: 2px solid #2ECC71;
    font-weight: 600;
    display: block;
    transition: all 0.5s ease;
}
.footer-item_terms a:hover {
    color: #ffffff;
    transition: all 0.5s ease;
}
.footer-item__address, .footer-item__phone, 
.footer-item__email, .footer-item__hours, .footer-item__name {
    display: flex;
    margin-bottom:7px;
}
.footer-item__address span:first-child {
    display: none;
}
.footer-item__name::before {
    content: '';
    display: block;
    background: url('../img/office.png') no-repeat;
    width: 16px;
    background-size: contain;
    margin-top: 1.3%;
    margin-right: 10px;
}
.footer-item__address::before {
    content: '';
    display: block;
    background: url('../img/address-1.png') no-repeat;
    width: 16px;
    background-size: contain;
    margin-top: 0.5%;
    margin-right: 10px;
}
.footer-item__phone::before {
    content: '';
    display: block;
    background: url('../img/telephone-call2.png') no-repeat;
    width: 18px;
    background-size: contain;
    margin-top: 1.5%;
    margin-right: 10px;
}
.footer-item__email::before {
    content: '';
    display: block;
    background: url('../img/message.png') no-repeat;
    width: 16px;
    background-size: contain;
    margin-top: 1.5%;
    margin-right: 10px;
}
.footer-item__hours::before {
    content: '';
    display: block;
    background: url('../img/clock.png') no-repeat;
    width: 16px;
    background-size: contain;
    margin-top: 1.5%;
    margin-right: 10px;
}
.footer-item__rights {
    padding-top: 15px;
    font-size: 14px;
    font-weight: 400;
    border-top: 1px solid #2ECC7155;
    text-align: center;
    display: block;
}
/* Page Services Start */
.bread-crumbs {
    font-size: 15px;
    padding: 5px 10px;
    margin-bottom: 40px;
    display: flex;
    max-width: fit-content;
    background: rgba(255, 255, 255, 0.5);
    align-items: center;
}
.bread-crumbs__first {
    opacity: 0.8;
}
.bread-crumbs__line {
    display: block;
    margin: 0 10px;
    width: 20px;
    height: 1px;
    background: #2ECC71;
}

/*blog*/
.container_blog {
    display: block;
}
.container_blog .intro-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.blog-item {
    width: 48%;
}
.container_blog .intro-content p {
    margin-bottom: 1em;
}
.intro-content h3 {
    margin-bottom: 0.7em;
}
.container_blog .intro-content h2 {
    margin-bottom: 20px;
    margin-top: 25px;
}
.intro-blog__img {
    background: url('../img/couch-curbside-pickup-small.jpg') no-repeat; 
    display: block;
    width: 47%;
    height: 800px;
    margin-top: 3%;
    margin-left: 40px;
    border: #2ECC71 solid 5px;
    border-style: double;
    background-size: cover;
}
.intro-blog__img_2 {
    background: url('../img/old-couch-furniture-removal-port-st-lucie-fort-pierce-small.jpg') no-repeat; 
    display: block;
    width: 47%;
    height: 800px;
    margin-left: 0;
    margin-right: 40px;
    background-size: cover;
}
.intro-blog__img_3 {
    background: url('../img/old-couch-removal-small.jpg') no-repeat; 
    display: block;
    width: 47%;
    height: 800px;
    margin-left: 40px;
    margin-right: 0px;
    background-size: cover;
}
.intro-blog__img_smallHeight {
    background: url('../img/') no-repeat; 
    display: block;
    height: 650px;
    margin-bottom: 20px;
    background-size: cover;
}
.intro-blog__img_smallHeight_2 {
    height: 450px;
}
.blog-wrapper {
    display: flex;
    justify-content: space-between;
}
.blog-wrapper_form {
    align-items: flex-start;
    position: relative;
}
.blog-title {
    font-size: 48px;
}
/*end blog*/
/*Blog page start*/
.blog-item {
    padding-bottom: 17px;
    border-bottom: 0.5px solid rgba(217, 217, 217, 0.5);
}
.blog-item {
    margin-bottom: 25px;
}
.blog-item__button {
    max-width: 120px;
    padding: 3px 8px;
    margin-top: 30px;
    display: block;
    text-align: center;
    background: rgb(52, 73, 94);
    color: #fff;
    border-radius: 5px;
    transition: color 0.5s ease;
}
.blog-item__button:hover {
    color: #ffffff;
}
.blog-author {
    margin-bottom: 20px;
}
.blog-author a {
    font-style: italic;
}
.blog-author__date span {
    text-decoration: underline;
}
.blog-item__text a {
    text-decoration: underline;
}
.GBP-fort-pierce {
    margin-left: 25px;
}
.services-foreword {
    /*border: #000 1px solid;*/
    background: rgba(203, 199, 141, 0.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px;
    max-width: 520px;
    margin: auto;
    margin-bottom: 30px;
    margin-top: 35px;
    text-align: center;
}
.services-foreword__title {
    font-size: 36px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services-foreword__icon {
    max-width: 65px;
    object-fit: cover;
    opacity: 0.6;
    margin-right: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
    h2.title {
        font-size: 36px;
    }
    .container {
        max-width: 984px;
        padding: 0 18px;
        margin: 0 auto;
    }
    .header-logo {
        width: 160px;
    }
    .header-logo__img {
        width: 160px;
    }
    .header-menu__item {
        font-size: 14px;
        width: max-content;
    }
    .header-menu__item:not(:last-child) {
        margin-right: 23px;
    }
    .header-book {
        padding: 20px;
    }
    .container_top-section {
        padding: 140px 0 30px;
    }
    .top-section__content-wrapper {
        max-width: 560px;
    }
    .top-form__options-title {
        font-size: 16px;
    }
    .top-form__option {
        font-size: 16px;
        margin-left: 8px;
    }
}
@media (max-width: 991px) {
    .container {
        max-width: 728px;
        padding: 0 20px;
    }
    h2.title {
        font-size: 34px;
        margin-bottom: 25px;
    }
    .header nav {
        position: relative;
    }
    .menu-close {
        width: 27px;
        height: 27px;
        position: fixed;
        top: 35px;
        right: 26px;
        z-index: 1004;
        cursor: pointer;
    }
    .menu-close span {
        display: block;
        width: 35px;
        height: 3px;
        background: #ffffff;
        transform: rotate(45deg);
    }
    .menu-close span:last-child {
        transform: rotate(-45deg);
        margin-top: -3px;
    }
    .header-menu {
        display: none;
        transition: all 0.5s ease;
    }
    .header-menu.active {
        display: block;
        transition: all 0.5s ease;
    }
    .header-menu__items {
        position: fixed;
        top: 0;
        left: 0;
        flex-direction: column;
        justify-content: flex-start;
        padding: 35px 15px;
        flex-direction: column;
        background: #2ECC71;
        width: 100%;
        height: 69%;
        border-radius: 5px;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
        z-index: 1003;
        padding-top: 12%;
        text-align: center;
    }
    .header-submenu {
        transform: translateX(-32%);
    }
    .menu-burger {
        display: block;
        cursor: pointer;
    }
    .menu-burger span {
        display: block;
        width: 35px;
        height: 3px;
        background: #212529;
    }
    .menu-burger span:not(:last-child) {
        margin-bottom: 6px;
    }
    .header-menu__item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 30px;
    }
    .header-menu__item {
        font-size: 16px;
    }
    .header-info__phone {
        display: none;
    }
    .header-info__phone.header-info__phone_burger {
        display: block;   
        padding: 0;
    }
    .header-info__phone::before {
        display: none;
    }
    .top-section__slider {
        margin: auto
    }
    .container_top-section {
        padding: 160px 0 56px;
    }
    .top-section__title {
        font-size: 51px;
        margin-bottom: 15px;
    }
    .top-form {
        margin: auto;
        max-width: 550px;
        margin-bottom: 20px;
    }
    .top-form__blog {
        width: 100%;
        margin-top: 20px;
    }
    .blog-wrapper {
        flex-wrap: wrap;
    }
    .container_blog .intro-content {
        width: 100%;
    }
    .intro-blog__img {
        width: 100%;
        height: 600px;
        margin-left: 0;
        margin-bottom: 5px;
        background-position: center;
    }
    .intro-blog__img_2 {
        margin-right: 0;
    }
    .intro-blog__img_smallHeight {
        height: 500px;
    }
    .intro-blog__img_smallHeight_2 {
        order: 1;
        margin-bottom: 20px;
    }
    .container_blog .intro-content h2 {
        margin-bottom: 12px;
        margin-top: 17px;
    }
    .footer-wrapper {
        flex-wrap: wrap;
    }
    /*Blog*/
    .blog-author {
        margin-bottom: 12px;
    }
    .blog-item__button {
        margin-top: 12px;
    }
}
@media (max-width: 767px) {
    body {
        font-size: 15px;
    }
    .container {
       max-width: 727px;
       width: auto;
       padding: 0 20px; 
    }
    .btn {
        font-size: 18px;
    }
    h2.title {
        font-size: 30px;
        margin-bottom: 20px;
        text-align: center;
    }
    .header-menu__items {
        padding: 75px 0 15px;
    }
    .menu-close {
        top: 44px;
        right: 25px;
    }
    .top-form {
        max-width: none;
    }
    .top-form__title {
        font-size: 30px;
		color: #2ECC71;		
    }
    .top-section {
        padding-bottom: 45px;
    }
    .top-section__btn {
        width: 100%;
    }
    .container_top-section {
        flex-direction: column;
        padding-top: 160px;
    }
    .top-section__title {
        font-size: 42px;
        max-width: none;
        text-align: center;
    }
    .top-section__content-wrapper {
        max-width: 727px;
        width: auto;
        text-align: center;
    }
    .intro {
        padding: 30px 0;
    }
    .bread-crumbs {
        margin-bottom: 30px;
    }
    .footer-item:first-child, .footer-item_terms a {
        border: none;
    }
    .footer-item:nth-child(2) {
        order: 1;
        margin-left: 24%;
        margin-top: 15px;
    }
    .container_blog .intro-content h2 {
        margin-bottom: 7px;
        margin-top: 12px;
    }
    .blog-author {
        margin-bottom: 7px;
    }
    .blog-item__button {
        margin-top: 12px;
    }
    .blog-item:not(:last-child) {
        margin-bottom: 20px;
    }
}
@media (max-width: 702px) { 
    .services, .benefits, .testimonials, .about, .FAQ, .PSL, .intro, 
    .hauling, .serving, .whoWe, .linking, .before-after {
        padding: 30px 0;
    }
    h2.title {
        margin-bottom: 10px;
    }
}
@media (max-width: 600px) { 
    h2.title {
        margin-bottom: 17px;
    }
    h2.top-section__title, .top-section__title {
        font-size: 38px;
    }
    .header {
        padding: 10px 0;
    }
    .header-book {
        padding: 25px 10px;
    }
    .header.scrolled .header-book {
        padding: 5px 20px;
        font-size: 23px;
    }
    .header.scrolled .header-logo {
        height: 45px;
        margin-top: -10px;
    }
    .top-section {
        background: linear-gradient(360deg, rgba(52, 73, 94, 0.70), rgba(52, 73, 94, 0.3)), url(../img/home-in-florida-small.jpg) no-repeat;
        background-size: cover;
    }
    .top-section__text {
        font-size: 17px;
    }
    .top-form__options-title {
        display: block;
    }
    .top-form__option {
        margin-left: 0;
    }
    .intro-wrapper {
        max-width: 100%;
    }
    .blog-item {
        width: 100%;
    }
    .footer-wrapper {
        flex-wrap: no-wrap;
        flex-direction: column;
    }
    .footer-item:nth-child(2) {
        margin-left: auto;
    }
    .footer-item {
        margin: auto;
    }
    .footer-item_terms {
        width: 35%;
        text-align: center;
        margin: auto;
        margin-top: 15px;
        justify-content: space-between;
        border-bottom: 2px solid #2ECC71;
    }
    .footer-item:first-child {
        text-align: center;
        margin: auto;
        padding-bottom: 10px;
        padding-left: 0;
    }
    .footer-item_terms {
        margin-top: 12px;
    }
    .footer {
        padding-top: 25px;
    }
    .header-book {
        font-size: 27px;
    }
    .header-book::before {
        width: 27px;
        height: 27px;
    }
    .container_blog {
        padding-bottom: 0;
    }
    .intro-blog__img {
        height: 500px;
    }
    .contact-wrapper {
        flex-wrap: wrap;
    }
    .container_contact-content {
        border-bottom: 1px solid #212529;
        border-right: none;
        padding-bottom: 10px;
    }
}
@media (max-width: 481px) {
    h2.title {
        margin-bottom: 10px;
    }
    .top-section__title {
        font-size: 36px;
    }
    .top-section__title {
        margin-bottom: 10px;
    }
    .header-book {
        font-size: 25px;
        letter-spacing: 2px;
        padding: 25px 10px;
    }
    .header-book::before {
        margin-right: 5px;
        width: 25px;
        height: 25px;
    }
    .header.scrolled .header-book::before {
        width: 17px;
        height: 17px;
    }
    .header.scrolled .header-book {
        padding: 10px 20px 5px;
    }
    .header-logo {
        width: 125px;
        height: 55px;
    }
    .header-logo__img {
        padding: 1px 20px 5px 5px;
    }
    .header.scrolled .header-logo {
        height: 37px;
    }
    .header-logo__img {
        width: 125px;
    }
    .top-form__title {
        margin: 15px 0 12px;
    }
    .top-form__blog .top-form__input {
        margin-bottom: 15px;
    }
    .top-form__blog {
        padding: 25px 12px;
    }
    .top-form__blog .top-form__title {
        margin-bottom: 22px;
    }
}
@media (max-width: 457px) {
    .header.scrolled .header-book {
        font-size: 19px;
    }
}
@media (max-width: 450px) {
    body {
        font-size: 14px;
    }
    .container {
        max-width: none;
        padding: 0 12px;
    }
    h2.title {
        font-size: 26px;
    }
    h2.top-section__title, .top-section__title {
        font-size: 30px;
    }
    .container_top-section {
        padding-top: 70px;
    }
    .header-logo__img {
        width: 130px;
    }
    .header.scrolled .header-book {
        padding: 10px 20px 5px;
        font-size: 17px;
    }
    .top-form__fields>div {
        width: 100%;
    }
    .bread-crumbs {
        margin-bottom: 17px;
    }
}
@media (max-width: 429px) {
    .header-book {
        font-size: 23px;
        padding: 17px 5px;
    }
    .header.scrolled .header-logo {
        width: 115px;
    }
    .header-book::before {
        width: 23px;
        height: 23px;
    }
    .intro-blog__img {
        height: 320px;
    }
}
@media (max-width: 400px) {
    .header-logo {
        display: none;
    }
    .header-book {
        padding: 25px 15px;
    }
    .top-form__option {
        font-size: 14px;
    }
    .footer-item_terms {
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-item__TOS, .footer-item__dis {
        width: 40%;
    }
    .footer-item_terms a {
        margin-right: 0;
        text-align: center;
    }
    .footer-item_terms a:last-child {
        margin-top: 5px;
    }
}
@media (max-width: 356px) {
    body {
        font-size: 14px;
    }
    h2.title {
        margin-bottom: 7px;
    }
    .top-form__input, .top-form__textarea {
        padding: 10px 7px;
    }
    .header-logo {
        width: 102px;
        height: 57px;
    }
    .header-logo__img {
        width: 102px;
    }
    .btn {
        font-size: 16px;
        padding: 12px;
    }
    .top-section {
        padding-bottom: 30px;
    }
    .top-form__input, .top-form__textarea {
        padding: 7px 5px;
    }
    .intro-blog__img {
        height: 250px;
    }
}
@media (max-width: 310px) {
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    .header-logo {
        width: 80px;
        height: 48px;
    }
    .header-logo__img {
        width: 80px;
    }
    .header-book {
        padding: 14px 5px;
    }
}
/* ==========================================================================
   Treasure Coast Home Improvement - Custom Extensions & Modern Standards
   ========================================================================== */

/* Modern Article Content & Components */
.article-meta-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: #7f8c8d;
    margin: 15px 0 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ecf0f1;
    flex-wrap: wrap;
    font-family: 'Cabin', sans-serif;
}
.meta-pill {
    background: #e8f8f5;
    color: #1d9981;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 13px;
    text-transform: uppercase;
}
.feature-box {
    background: #f4fbf7;
    border-left: 4px solid #2ECC71;
    padding: 20px 24px;
    margin: 25px 0;
    border-radius: 0 6px 6px 0;
}
.feature-box h4 {
    color: #1d9981;
    font-size: 18px;
    margin-bottom: 8px;
    font-family: 'Cabin', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.check-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}
.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 19px;
    line-height: 1.45;
    color: #34495E;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 900;
    color: #2ECC71;
    font-size: 18px;
}
.data-table-wrap {
    overflow-x: auto;
    margin: 28px 0;
    border: 1px solid #d5dbdb;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    text-align: left;
    font-family: 'Cabin', sans-serif;
}
.data-table th {
    background: #34495E;
    color: #ffffff;
    padding: 14px 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.data-table td {
    padding: 13px 16px;
    border-bottom: 1px solid #ecf0f1;
    color: #2c3e50;
    font-family: 'EB Garamond', serif;
    font-size: 18px;
}
.data-table tr:nth-child(even) td {
    background: #fdfefe;
}
.data-table tr:last-child td {
    border-bottom: none;
}
.verified-resource-box {
    background: #ffffff;
    border: 2px solid #2ECC71;
    border-radius: 6px;
    padding: 24px 28px;
    margin: 35px 0;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.12);
}
.verified-resource-box .resource-badge {
    display: inline-block;
    background: #2ECC71;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    font-family: 'Cabin', sans-serif;
}
.verified-resource-box a {
    color: #1d9981;
    font-weight: 700;
    text-decoration: underline;
}
.verified-resource-box a:hover {
    color: #2ECC71;
}
.intro-content p, .intro-wrapper p {
    font-size: 19px;
    line-height: 1.5;
    margin-bottom: 16px;
    color: #34495E;
}
.intro-content strong, .intro-wrapper strong {
    color: #2c3e50;
}
.faq-box {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #ecf0f1;
}
.faq-box h3 {
    color: #34495E;
    font-size: 21px;
    margin-bottom: 8px;
}

/* ==========================================================================
   MOBILE DESIGN SYSTEM RULES (docs/MOBILE_DESIGN_STANDARDS.md)
   MUST ALWAYS BE PLACED AT THE VERY BOTTOM OF THE STYLESHEET.
   ========================================================================== */

@media (max-width: 640px) {
    /* 1. Tight Edge Margins */
    .container, .wrap, .container_blog, .container_top-section, .container_intro, .container_footer {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .blog-item, .intro-wrapper, .top-form__blog, .feature-box, .verified-resource-box {
        padding: 18px 14px !important;
    }
    .section, .intro {
        padding: 24px 0 !important;
    }

    /* 2. Zero Top Gap Below Header */
    .header {
        height: 58px !important;
        position: sticky !important;
        top: 0 !important;
    }
    .header__wrapper {
        height: 58px !important;
    }
    .header-logo {
        height: 58px !important;
        width: auto !important;
        padding: 6px 0 !important;
        border-right: none !important;
        display: flex !important;
        align-items: center !important;
        font-size: 15px !important;
        line-height: 1.1 !important;
    }
    .header-logo__img {
        height: 36px !important;
        width: auto !important;
        max-width: 90px !important;
        padding: 0 8px 0 0 !important;
        object-fit: contain !important;
    }
    .top-section {
        padding: 14px 0 16px !important;
        background-position: center center !important;
    }
    .container_top-section {
        padding: 14px 0 16px !important;
    }
    .intro-title:first-child, .content-main h2:first-child {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* 3. High-Readability Typography on Mobile */
    p, .intro p, .intro-content p, .blog-item__text, .intro-text {
        font-size: 18.5px !important;
        line-height: 1.45 !important;
        margin-bottom: 14px !important;
    }
    li, .check-list li {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }
    h1, .top-section__title {
        font-size: 34px !important;
        line-height: 1.12 !important;
        margin-bottom: 12px !important;
    }
    h2, .title, .intro-title, .blog-item__title {
        font-size: 28px !important;
        line-height: 1.18 !important;
        margin: 20px 0 8px !important;
    }
    h3, .intro-subtitle, .faq-box h3 {
        font-size: 22px !important;
        line-height: 1.25 !important;
        margin: 16px 0 6px !important;
    }
    .subheading, .subtitle, .blog-author {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }
    input, select, textarea, .top-form__input, .top-form__textarea {
        font-size: 16.5px !important;
        padding: 14px 12px !important;
    }
    .btn, .blog-item__button {
        width: 100% !important;
        font-size: 18px !important;
        padding: 16px 20px !important;
        display: block !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* Layout adjustments */
    .blog-wrapper_form {
        flex-direction: column !important;
    }
    .intro-content {
        width: 100% !important;
    }
    .top-form__blog {
        width: 100% !important;
        margin-top: 24px !important;
        position: static !important;
    }
}
