* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--albersans-family);
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 30px;

}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 36px;
}

p {
    font-family: var(--popins-family);
    font-weight: 400;
    font-size: 18px;
    color: #000000d6;
    line-height: 34px;
    letter-spacing: 0.5px;
}

/* About Banner Section */
.about_banner {
    background-image: url(../image/about/about_hero.png);
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px;
    border-radius: 20px;
    background-size: cover;
}

.about_banner span {
    font-size: 24px;
    font-family: var(--popins-family);
}

.about-banner-info h2 {
    font-size: 30px;
}

.about-banner-info img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-banner-info button {
    background-color: #0043C0 !important;
    font-family: var(--popins-family);
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 18px;
    transition: all 0.4s ease-in-out;
}

.about-banner-info button:hover {
    background-color: var(--primary-color);
}

/* About Box Section */
.about_box {
    border: 1px solid #1e75bb;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    width: 65%;
    margin: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about_box p {
    /* color: #1e75bb; */
    margin: 0;
}

/* Vision Section */
.vision {
    background: rgb(219 233 244);
    padding: 20px;
    border-radius: 15px;
}

.vision p {
    margin: 0px;
}

/* Get In Touch Section */
.get-in-touch-section {
    margin-bottom: 80px;
}

.git-card {
    background: rgb(219 233 244);
    border-radius: 16px;
    padding: 40px 50px;
    color: #fff;
}

.git-social {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgb(0 67 192);
}

.git-social-text {
    font-weight: 600;
    font-size: 18px;
}

/* Social Buttons */
.social-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-buttons a:hover {
    color: white !important;
}

.social-btn i {
    font-size: 20px;
}

.facebook-btn {
    background: #1877f2;
}

.linkedin-btn {
    background: #0077b5;
}

.twitter-btn {
    background: #000;
}

.pinterest-btn {
    background: #e60023;
}

/* Why We Built This Platform Section */
.why-built-section {
    padding: 50px 0;
}

.why-built-section h2 {
    color: #1a1a1a;
    margin-bottom: 20px;
}

.platform-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.platform-card {
    background: #F5FBFF;
    border: 1px solid #006FBA80;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.platform-card .card-icon {
    width: 60px;
    height: 60px;
    background: #0071BE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.platform-card .card-icon i {
    font-size: 24px;
    color: #fff;
}

.platform-card h3 {
    margin-bottom: 15px;
}

.see-story-btn {
    display: inline-block;
    background: #0071BE;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.see-story-btn:hover {
    background: #006699;
    color: #fff;
    transform: translateY(-2px);
}

.clarity-section {
    padding: 50px 0;
}

.info-standards-section {
    padding: 50px 0;
}

@media (max-width: 768px) {
    h2 {
        font-size: 32px;
    }

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

    .platform-card {
        padding: 25px;
    }

    .platform-card h3 {
        font-size: 20px;
    }

    .clarity-section {
        padding: 20px 0px;
    }

    .clarity-section h2 {
        margin-bottom: 20px;
    }
}

/* My Good Movers at a Glance Section */
.glance-section {
    background: #e8f4fc;
    padding: 50px 0;
}


.glance-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.glance-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
}

.glance-card h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 15px;
    margin-top: 0;
}

.glance-card p {
    margin: 0;
}

@media (max-width: 992px) {
    .glance-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .glance-section h2 {
        margin-bottom: 20px;
    }

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

    .glance-card {
        padding: 25px;
    }
}

/* How We're Bringing Clarity Section */
.clarity-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.clarity-card {
    background: #2075BB0A;
    border: 1px solid #2075BB80;
    border-radius: 12px;
    padding: 35px;
    display: flex;
    flex-direction: column;
}

.clarity-card h3 {
    margin-bottom: 20px;
    margin-top: 0;
}

.clarity-card p {
    flex-grow: 1;
}

.clarity-btn {
    display: inline-block;
    background: #0043C0 !important;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-family: var(--popins-family);
}

.clarity-btn:hover {
    background: #061539;
    color: #fff;
}


/* Information Standards Section */
.standards-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.standard-card {
    background: #0071BE;
    border-radius: 12px;
    padding: 30px 35px;
}

.standard-card h3 {
    color: #fff !important;
    margin-top: 0px !important;
    margin-bottom: 15px !important;
}

.standard-card p {
    color: #fff !important;
    margin: 0;
}

.standard-card p+p {
    margin-top: 15px;
}



/* Our Methodology Section */
.our-methodology-section {
    padding: 50px 0;
}


.methodology-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.methodology-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 2px solid #1e74bb25;
    border-radius: 10px;
    padding: 18px 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: rgb(30 117 187 / 10%) 0px 1px 4px;
}

/* .methodology-card:hover {
    background: #f0f8ff;
    box-shadow: 0 4px 12px rgba(0, 113, 190, 0.15);
    transform: translateY(-2px);
} */

.methodology-icon {
    width: 60px;
    height: 60px;
    min-width: 50px;
    background: #0071BE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.methodology-icon img {
    width: 40px;
}

.methodology-text {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: var(--popins-family);
}



/* Helpful Moving Resources Section */
.resources-section {
    padding: 50px 0;
}

.resources-section h2 {
    text-align: center;
}

.resource-card {
    background: #F5FBFF;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.resource-icon {
    width: 90px;
    height: 90px;
    border: 2px solid #0071BE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: transparent;
}

.resource-icon i {
    font-size: 32px;
    color: #0071BE;
}

.resource-card span {
    margin-bottom: 25px;
    text-align: center;
    margin-top: 10px;
    font-size: 24px;
    font-weight: 500;
}

.resource-btn {
    display: inline-block;
    background: #fff;
    color: #0071BE;
    border: 1px solid #0071BE;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.resource-btn:hover {
    background: #0071BE;
    color: #fff;
}

@media (max-width: 992px) {
    .data-container {
        padding: 15px !important;
    }

    .about_banner {
        padding: 20px !important;
        margin-bottom: 0 !important;
    }

    .about_banner h1 {
        font-size: 32px;
        margin-bottom: 0 !important;
    }

    .about_banner span {
        font-size: 18px;
    }

    .vision {
        min-height: auto;
        margin: 15px 0px;
    }
}

@media (max-width: 768px) {
    .info-standards-section h2 {
        margin-bottom: 20px;
    }

    .info-standards-section {
        padding: 20px 0px;
    }

    .standard-card {
        padding: 25px;
    }

    .standard-card h3 {
        font-size: 20px;
    }

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

    .clarity-card {
        padding: 25px;
    }

    .methodology-card {
        padding: 15px 18px;
        gap: 15px;
    }

    /* .methodology-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    } */

    .methodology-icon i {
        font-size: 18px;
    }

    .methodology-text {
        font-size: 16px;
    }

    .our-methodology-section {
        padding: 30px 0px;
    }

    .our-methodology-section h2 {
        margin-bottom: 20px;
    }

    .resources-section {
        padding: 20px 0px;
    }

    .resources-section h2 {
        margin-bottom: 20px;
    }

    .resource-card h3 {
        margin-bottom: 30px;
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .about_box {
        width: 95%;
        padding: 20px;
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
        margin: 0px;
    }

    .resource-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 425px) {
    h1 {
        font-size: 42px;
    }

    .about_banner {
        background-image: url(../image/about/about_hero-responsive.png);
        background-repeat: no-repeat;
        background-position: center;
        padding: 100px;
        border-radius: 20px;
        background-size: cover;
    }

    .git-card {
        padding: 30px 25px;
    }

    p {
        font-size: 14px;
    }
}