        :root {
            --primary-pink: #ff8fa3;
            --primary-pink-hover: #ff758f;
            --dark-brown: #5c3d2e;
            --light-cream: #fffdf9;
            --accent-beige: #f7eedf;
            --text-dark: #2b1f1d;
        }

        body {
            font-family: 'Quicksand', sans-serif;
            background-color: var(--light-cream);
            color: var(--text-dark);
            scroll-behavior: smooth;
        }

        /* Top Notification Bar */
.top-emergency-bar {
    background-color:#5c4033;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 0;
}
        .top-emergency-bar a {
            color: var(--primary-pink);
            text-decoration: none;
            font-weight: 600;
        }

        /* Navbar Customization */
        .custom-navbar {
            background-color: rgba(253, 251, 247, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(92, 64, 51, 0.1);
            transition: all 0.3s ease;
            padding: 20px 0;
        }

        .navbar-brand {
            font-size: 1.5rem;
            color: var(--accent-brown) !important;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .navbar-brand .brand-icon {
            color: var(--primary-pink);
            font-size: 1.75rem;
        }

        .custom-navbar .nav-link {
            color: var(--accent-brown) !important;
            font-weight: 600;
            padding: 0.5rem 1rem !important;
            border-bottom: 2px solid transparent;
            transition: all 0.2s ease;
        }

        .custom-navbar .nav-link:hover, 
        .custom-navbar .nav-item.active .nav-link {
            color: var(--primary-pink) !important;
            border-bottom-color: var(--primary-pink);
        }

        /* Dynamic Visual Buttons */
        .btn-custom-pink {
            background-color: var(--primary-pink);
            color: var(--white) !important;
            border: 2px solid var(--primary-pink);
            border-radius: 50px;
            padding: 0.6rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .btn-custom-pink:hover {
            background-color: var(--primary-pink-dark);
            border-color: var(--primary-pink-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(232, 138, 154, 0.3);
        }

        .btn-custom-brown {
            background-color: var(--accent-brown);
            color: var(--white) !important;
            border: 2px solid var(--accent-brown);
            border-radius: 50px;
            padding: 0.6rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .btn-custom-brown:hover {
            background-color: var(--accent-brown-light);
            border-color: var(--accent-brown-light);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(92, 64, 51, 0.2);
        }

        .btn-custom-outline {
            background-color: transparent;
            color: var(--accent-brown) !important;
            border: 2px solid var(--accent-brown);
            border-radius: 50px;
            padding: 0.6rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-custom-outline:hover {
            background-color: var(--accent-brown);
            color: var(--white) !important;
        }


        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1548199973-03cce0bbc87b?auto=format&fit=crop&q=80&w=1920') no-repeat center center;
            background-size: cover;
            min-height: 85vh;
            display: flex;
            align-items: center;
            color: #ffffff;
        }
        
        /* Custom Buttons */
        .btn-pink {
            background-color: var(--primary-pink);
            color: white;
            font-weight: 600;
            border-radius: 30px;
            padding: 10px 24px;
            transition: all 0.3s ease;
            border: none;
        }
        .btn-pink:hover {
            background-color: var(--primary-pink-hover);
            color: white;
            transform: translateY(-2px);
        }
        .btn-brown {
            background-color: var(--dark-brown);
            color: white;
            font-weight: 600;
            border-radius: 30px;
            padding: 10px 24px;
            transition: all 0.3s ease;
            border: none;
        }
        .btn-brown:hover {
            background-color: #422b20;
            color: white;
            transform: translateY(-2px);
        }

        /* Section Global Layouts */
        .section-padding {
            padding: 80px 0;
        }
        .bg-beige {
            background-color: var(--accent-beige);
        }
        .section-title {
            font-weight: 700;
            color: var(--dark-brown);
            margin-bottom: 40px;
            position: relative;
        }
        .section-title::after {
            content: '';
            width: 60px;
            height: 4px;
            background-color: var(--primary-pink);
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* Card Customizations */
        .animal-card {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            background-color: #ffffff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.04);
            transition: transform 0.3s ease;
        }
        .animal-card:hover {
            transform: translateY(-5px);
        }
        .card-img-container {
            height: 250px;
            overflow: hidden;
        }
        .card-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Donation Block */
        .donation-block {
            background-color: #ffffff;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .amount-btn {
            border: 2px solid var(--accent-beige);
            background: none;
            padding: 10px 20px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: all 0.2s;
        }
        .amount-btn.active, .amount-btn:hover {
            background-color: var(--primary-pink);
            border-color: var(--primary-pink);
            color: white;
        }

        /* Progress Bars */
        .progress {
            height: 12px;
            border-radius: 6px;
            background-color: var(--accent-beige);
        }
        .progress-bar {
            background-color: var(--primary-pink);
            border-radius: 6px;
            transition: width 1s ease-in-out;
        }

        /* Footer styling */
        footer {
            background-color: var(--dark-brown);
            color: #f7eedf;
            padding: 60px 0 20px;
        }
        footer a {
            color: #f7eedf;
            text-decoration: none;
        }
        footer a:hover {
            color: var(--primary-pink);
        }
        
        /* Form Visual Feedback styling */
        .is-invalid-custom {
            border-color: #dc3545 !important;
        }

        .hero-slider-item {
        min-height: 85vh;
        display: flex;
        align-items: center;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: #ffffff;
        position: relative;
    }
   
    .hero-slider-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45));
        z-index: 1;
    }
    .hero-slider-item .container {
        position: relative;
        z-index: 2;
    }

    .owl-theme .owl-dots {
        position: absolute;
        bottom: 30px;
        width: 100%;
        text-align: center;
    }
    .owl-theme .owl-dots .owl-dot span {
        background: rgba(255, 255, 255, 0.5);
    }
    .owl-theme .owl-dots .owl-dot.active span {
        background: var(--primary-pink);
    }



    
/* Floating Button */
.chat-toggle{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
border:none;
border-radius:50%;
cursor:pointer;
background:linear-gradient(135deg,#4f46e5,#7c3aed);
color:#fff;
font-size:24px;
box-shadow:0 10px 30px rgba(0,0,0,.25);
z-index:9999;
}

/* Chat Box */
.chat-box{
position:fixed;
bottom:100px;
right:25px;
width:380px;
height:600px;
background:#fff;
border-radius:25px;
overflow:hidden;
box-shadow:0 15px 50px rgba(0,0,0,.2);
display:none;
flex-direction:column;
animation:showChat .3s ease;
z-index:9999;
}

@keyframes showChat{
from{
opacity:0;
transform:translateY(30px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.chat-header{
background:linear-gradient(135deg,#4f46e5,#7c3aed);
color:white;
padding:18px;
display:flex;
justify-content:space-between;
align-items:center;
}

.agent{
display:flex;
align-items:center;
gap:10px;
}

.agent img{
width:45px;
height:45px;
border-radius:50%;
}

.chat-body{
flex:1;
padding:15px;
overflow-y:auto;
background:#f7f8fc;
}

.message{
max-width:80%;
padding:12px;
margin-bottom:12px;
border-radius:15px;
font-size:14px;
}

.bot{
background:#fff;
box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.user{
background:#4f46e5;
color:white;
margin-left:auto;
}

.chat-footer{
display:flex;
padding:12px;
border-top:1px solid #eee;
}

.chat-footer input{
flex:1;
padding:12px;
border:1px solid #ddd;
border-radius:30px;
outline:none;
}

.chat-footer button{
margin-left:8px;
width:45px;
height:45px;
border:none;
border-radius:50%;
background:#4f46e5;
color:white;
cursor:pointer;
}

.typing{
background:white;
padding:10px 15px;
width:70px;
border-radius:20px;
display:flex;
gap:5px;
margin-bottom:10px;
}

.typing span{
width:8px;
height:8px;
background:#999;
border-radius:50%;
animation:bounce 1s infinite;
}

.typing span:nth-child(2){
animation-delay:.2s;
}

.typing span:nth-child(3){
animation-delay:.4s;
}

@keyframes bounce{
0%,100%{
transform:translateY(0);
}
50%{
transform:translateY(-5px);
}
}

.close-btn{
cursor:pointer;
font-size:20px;
}

@media(max-width:480px){

.chat-box{
width:95%;
right:2.5%;
height:80vh;
}

}

.stats-section{
    background: linear-gradient(135deg, #bfb2a9, #795237);
    position: relative;
    overflow: hidden;
}

.stats-section::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    top:-150px;
    left:-100px;
}

.stats-section::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,0.04);
    border-radius:50%;
    bottom:-150px;
    right:-100px;
}

.stat-card{
    background:rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:20px;
    padding:35px 20px;
    transition:.4s;
    position:relative;
    z-index:2;
    height:100%;
}

.stat-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,0.12);
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.icon-box{
    width:75px;
    height:75px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:linear-gradient(135deg,#FFD166,#F4A261);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#fff;
    box-shadow:0 10px 25px rgba(255,209,102,.4);
}

.stat-card h2{
    font-size:2.4rem;
    font-weight:800;
    color: #ffffff;
    margin-bottom:10px;
}

.stat-card p{
    color:#fff;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:14px;
    margin:0;
    opacity:.9;
}

@media(max-width:768px){
    .stat-card h2{
        font-size:1.8rem;
    }

    .icon-box{
        width:60px;
        height:60px;
        font-size:24px;
    }
}

.about-section{
    background:#faf8f5;
    position:relative;
    overflow:hidden;
}

.section-badge{
    background:#FFE7C7;
    color:#8B5E3C;
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
    font-size:14px;
}

.section-title{
    font-size:48px;
    font-weight:800;
    color:#3D2B1F;
    line-height:1.2;
}

.section-subtitle{
    max-width:650px;
    margin:auto;
    color:#777;
    font-size:17px;
}

.about-image-wrapper{
    position:relative;
}

.main-image{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.floating-card{
    position:absolute;
    bottom:30px;
    left:30px;
    background:white;
    padding:20px 25px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.floating-card h3{
    margin:0;
    color:#D97706;
    font-size:32px;
    font-weight:800;
}

.floating-card span{
    color:#666;
    font-size:14px;
}

.info-card{
    background:white;
    padding:25px;
    border-radius:20px;
    display:flex;
    gap:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.info-card:hover{
    transform:translateY(-5px);
}

.icon-box{
    min-width:70px;
    width:70px;
    height:70px;
    border-radius:20px;
    background:linear-gradient(135deg,#F59E0B,#FB923C);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:28px;
}

.info-card h4{
    font-weight:700;
    color:#3D2B1F;
    margin-bottom:10px;
}

.info-card p{
    margin:0;
    color:#666;
    line-height:1.7;
}

.compliance-box{
    margin-top:25px;
    padding:25px;
    border-radius:20px;
    background:linear-gradient(135deg,#3D2B1F,#5A3E2B);
    color:white;
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.compliance-box h5{
    margin-bottom:15px;
    font-weight:700;
}

.compliance-box p{
    margin:0;
    opacity:.9;
}

@media(max-width:991px){

    .section-title{
        font-size:36px;
    }

    .main-image{
        height:400px;
    }

    .floating-card{
        left:15px;
        right:15px;
        bottom:15px;
    }

}

.services-section{
    background:#faf8f5;
    position:relative;
}

.service-badge{
    background:#FFE7C7;
    color:#8B5E3C;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.service-title{
    font-size:48px;
    font-weight:800;
    color:#3D2B1F;
}

.service-subtitle{
    max-width:700px;
    margin:auto;
    color:#777;
    font-size:17px;
}

.service-card{
    background:#fff;
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    position:relative;
    overflow:hidden;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.service-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    margin-bottom:25px;
}

.red{
    background:linear-gradient(135deg,#ff6b6b,#ee5253);
}

.orange{
    background:linear-gradient(135deg,#feca57,#ff9f43);
}

.green{
    background:linear-gradient(135deg,#1dd1a1,#10ac84);
}

.service-card h4{
    font-weight:700;
    margin-bottom:15px;
    color:#2d3436;
}

.service-card p{
    color:#666;
    line-height:1.8;
}

.service-number{
    position:absolute;
    top:15px;
    right:20px;
    font-size:70px;
    font-weight:900;
    color:rgba(0,0,0,.04);
    line-height:1;
}

.service-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#f59e0b,#ef4444);
    transform:scaleX(0);
    transition:.4s;
}

.service-card:hover::before{
    transform:scaleX(1);
}

.adopt-section{
    background:#faf8f5;
}

.adopt-title{
    font-size:48px;
    font-weight:800;
    color:#3D2B1F;
}

.adopt-subtitle{
    max-width:700px;
    margin:auto;
    color:#777;
}

.adopt-badge{
    background:#FFE7C7;
    color:#8B5E3C;
    padding:10px 20px;
    border-radius:50px;
}

.filter-wrapper{
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.search-box{
    flex:1;
    position:relative;
}

.search-box i{
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    color:#999;
}

.search-box input{
    width:100%;
    padding:14px 15px 14px 45px;
    border:none;
    border-radius:50px;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.filter-buttons{
    display:flex;
    gap:10px;
}

.filter-btn{
    border:none;
    padding:12px 20px;
    border-radius:50px;
    background:white;
    transition:.3s;
}

.filter-btn.active{
    background:#8B5E3C;
    color:white;
}

.pet-card{
    background:white;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
}

.pet-card:hover{
    transform:translateY(-10px);
}

.pet-image{
    position:relative;
    overflow:hidden;
}

.pet-image img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}

.pet-card:hover img{
    transform:scale(1.08);
}

.favorite-btn{
    position:absolute;
    top:15px;
    right:15px;
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:white;
}

.status-badge{
    position:absolute;
    bottom:15px;
    left:15px;
    background:#22c55e;
    color:white;
    padding:8px 14px;
    border-radius:50px;
}

.pet-content{
    padding:25px;
}

.pet-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.pet-top h4{
    font-weight:700;
}

.gender{
    padding:5px 12px;
    border-radius:30px;
    font-size:12px;
}

.male{
    background:#dbeafe;
    color:#2563eb;
}

.female{
    background:#ffe4e6;
    color:#e11d48;
}

.pet-info{
    display:flex;
    gap:20px;
    margin:15px 0;
    color:#666;
}

.btn-adopt{
    width:100%;
    padding:14px;
    border:none;
    border-radius:12px;
    background:#8B5E3C;
    color:white;
    font-weight:600;
}

.donate-section{
    background:#faf8f5;
    padding:100px 0;
}

.donate-badge{
    background:#ffe7c7;
    color:#8B5E3C;
    padding:10px 18px;
    border-radius:50px;
}

.donate-title{
    font-size:50px;
    font-weight:800;
    color:#2D1F15;
}

.donate-description{
    color:#666;
    line-height:1.8;
}

.impact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin:30px 0;
}

.impact-card{
    background:white;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.impact-card i{
    font-size:28px;
    color:#f59e0b;
}

.campaign-card{
    background:white;
    padding:30px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.campaign-stats{
    display:flex;
    justify-content:space-between;
}

.donation-card{
    background:white;
    padding:40px;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.amount-buttons{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    margin-bottom:25px;
}

.amount-btn{
    border:none;
    padding:15px;
    border-radius:15px;
    background:#f5f5f5;
}

.amount-btn.active{
    background:#8B5E3C;
    color:white;
}

.donate-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:15px;
    background:linear-gradient(
        135deg,
        #ff6b6b,
        #ff8e53
    );
    color:white;
    font-weight:700;
}

.security-row{
    display:flex;
    justify-content:space-between;
    margin-top:25px;
    font-size:13px;
}

.report-section{
    background:#faf8f5;
}

.report-title{
    font-size:52px;
    font-weight:800;
    color:#2D1F15;
}

.report-subtitle{
    max-width:700px;
    margin:auto;
    color:#666;
}

.report-badge{
    background:#FFE7C7;
    color:#8B5E3C;
    padding:10px 18px;
    border-radius:50px;
}

.report-card{
    background:white;
    padding:40px;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.report-steps{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.step{
    display:flex;
    align-items:center;
    gap:10px;
    color:#999;
}

.step span{
    width:40px;
    height:40px;
    background:#eee;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.step.active span{
    background:#ef4444;
    color:white;
}

.priority-options{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.priority-card{
    border:2px solid #eee;
    border-radius:20px;
    padding:18px;
    cursor:pointer;
    text-align:center;
}

.priority-card input{
    display:none;
}

.priority-card:hover{
    border-color:#ef4444;
}

.upload-area{
    border:2px dashed #d1d5db;
    padding:40px;
    text-align:center;
    border-radius:25px;
    cursor:pointer;
}

.upload-area i{
    font-size:45px;
    color:#f59e0b;
}

.gps-card{
    background:#fff7ed;
    padding:20px;
    border-radius:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.rescue-btn{
    width:100%;
    padding:18px;
    border:none;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        #ef4444,
        #dc2626
    );
    color:white;
    font-weight:700;
    font-size:18px;
}

.footer-section{
    background:#2D1F15;
    color:white;
    position:relative;
    overflow:hidden;
    padding-top:80px;
}

.footer-section::before{
    content:'🐾';
    position:absolute;
    right:50px;
    top:20px;
    font-size:220px;
    opacity:.03;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
}

.footer-logo i{
    font-size:32px;
    color:#ff7b54;
}

.footer-logo h4{
    margin:0;
    font-weight:700;
}

.footer-desc{
    color:#b8b8b8;
    line-height:1.8;
}

.social-icons{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.social-icons a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    transition:.3s;
}

.social-icons a:hover{
    background:#ff7b54;
    transform:translateY(-5px);
}

.footer-section h5{
    margin-bottom:20px;
    font-weight:700;
}

.footer-section ul{
    list-style:none;
    padding:0;
}

.footer-section ul li{
    margin-bottom:12px;
}

.footer-section ul li a{
    color:#cfcfcf;
    text-decoration:none;
}

.footer-section ul li a:hover{
    color:#ff7b54;
}

.contact-list li{
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.contact-list i{
    color:#ff7b54;
    margin-top:5px;
}

.newsletter-card{
    background:rgba(255,255,255,.05);
    padding:25px;
    border-radius:20px;
}

.newsletter-card input{
    width:100%;
    border:none;
    padding:14px;
    border-radius:12px;
    margin-bottom:12px;
}

.newsletter-card button{
    width:100%;
    border:none;
    padding:14px;
    border-radius:12px;
    background:#ff7b54;
    color:white;
    font-weight:600;
}

.trust-section{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:60px;
    padding:30px 0;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.trust-item{
    text-align:center;
    color:#ddd;
}

.trust-item i{
    display:block;
    font-size:28px;
    color:#ff7b54;
    margin-bottom:10px;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 0;
    color:#aaa;
    font-size:14px;
}

.footer-bottom a{
    color:#aaa;
    margin-left:20px;
    text-decoration:none;
}

.footer-bottom a:hover{
    color:#ff7b54;
}

@media(max-width:768px){

    .trust-section{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-bottom{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

}