/* ============== ROOT VARIABLES ============== */
:root {
    --primary-color: #003f87;
    --primary-light: #0052cc;
    --text-color: #333;
    --gray-light: #f5f5f5;
    --gray-dark: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;

}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    animation: fadeIn 0.8s ease-in-out;
}

/* ============== ANIMATION KEYFRAMES ============== */
/* Simple fade-in animation for page load */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============== TOP HEADER ============== */
.top-header {
    background-color:#002d5f;
    color: white;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info i,
.search-section i {
    margin-right: 5px;
}

/* ============== MAIN HEADER ============== */
.main-header {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-section {
    flex-shrink: 0;
    margin-right: 20px;
}

.ghana-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.title-section {
    flex-grow: 1;
    text-align: center;
}

.main-title {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.subtitle {
    color: var(--gray-dark);
    font-size: 14px;
    letter-spacing: 0.3px;
}

.gifec-logo-section {
    flex-shrink: 0;
    margin-left: 20px;
}

.gifec-logo {
    width: 100px;
    height: auto;
    object-fit: contain;
}

/* ============== NAVIGATION BAR ============== */

/* Hamburger Button - Hidden by default (shows only on mobile) */

/* Hamburger Lines - Three horizontal bars */

/* Hamburger Animation - X shape when menu is open */

/* ============== ABOUT HERO SECTION ============== */
.about-hero-section {
    position: relative;
    min-height: 450px;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.about-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 600px;
}

.about-hero-title {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.about-hero-tagline {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-hero-description {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
}

.about-hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #002d5f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 63, 135, 0.2);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: #f0f4f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 63, 135, 0.1);
}

.about-hero-footer {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

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

.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-text {
    display: flex;
    flex-direction: column;
}

.footer-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    line-height: 1.3;
}

/* ============== VISION, MISSION, CORE VALUES SECTION ============== */
.vmv-section {
    background-color: var(--gray-light);
    padding: 60px 0;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vmv-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vmv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.vmv-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.vmv-title {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.vmv-icon {
    color: var(--primary-color);
    font-size: 24px;
}

.vmv-text {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}
/* Programme Highlights List */
.programme-highlights {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

/* Programme Highlight Item */
.programme-highlights li {
    font-size: 13px;
    color: var(--text-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Highlight Checkmark Icon */
.programme-highlights i {
    color: #c9a135;
    font-size: 16px;
}

/* ============== WHO WE ARE & WHAT WE DO SECTION ============== */
.who-what-section {
    background-color: white;
    padding: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* .who-what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
} */

/* .who-we-are {
    display: flex;
    flex-direction: column;
}

.section-title {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.who-content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.who-image-container {
    position: relative;
    flex: 0 0 300px;
}

.who-image-fade {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 40%);
    z-index: 2;
    border-radius: 8px;
    pointer-events: none;
}

.who-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.who-text-content {
    display: flex;
    flex-direction: column;
}

.who-text {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: left;
}

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

.what-we-do {
    display: flex;
    flex-direction: column;
} */

.what-grid {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}


.what-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* max-width: 250px; */
}

.what-item:hover {
    background-color: #f0f4f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 63, 135, 0.1);
}

.what-icon {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 15px;
}

.what-title {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* ============== STATS SECTION ============== */
.stats-section {
    background-color: var(--primary-color);
    padding: 20px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    color: white;
    font-size: 32px;
}

.stat-content {
    flex: 1;
}

.stat-number {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 5px 0 0 0;
}

/* ============== HISTORY SECTION ============== */
.history-section {
    background-color: white;
    padding: 60px 0;
}

.history-title {
    text-align: center;
    margin-bottom: 40px;
}

.history-content {
    max-width: 900px;
    margin: 0 auto;
}

.history-content p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.history-content p:last-child {
    margin-bottom: 0;
}

/* ============== LEADERSHIP SECTION ============== */
.leadership-section {
    background-color: var(--gray-light);
    padding: 60px 0;
}

.leadership-title {
    text-align: center;
    margin-bottom: 50px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.profile-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.profile-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #e0e0e0;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    padding: 20px;
    text-align: center;
}

.profile-name {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.profile-title {
    color: var(--gray-dark);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.read-more-link {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.read-more {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #002d5f;
}
/* ============== FOOTER SECTION ============== */
.footer {
    background-color: #003f87;
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Footer Logo and Info Section */
.footer-info {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-crest {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-org-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.footer-ministry {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-contact {
    font-size: 14px;
}

.footer-contact p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    width: 16px;
}

/* Footer Section Titles and Links */
.footer-section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Footer Bottom Section */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

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

.footer-policies {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
}

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

.footer-policies a:hover {
    color: white;
}

.divider {
    color: rgba(255, 255, 255, 0.4);
}

/* Social Links */
.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 14px;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffc107;
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

/* ============== RESPONSIVE DESIGN - TABLET (768px and below) ============== */
@media (max-width: 768px) {
        /* Header responsive styling */
    .about-hero-section {
        min-height: 350px;
        padding: 40px 0;
    }

    .about-hero-content {
        max-width: 100%;
    }

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

    .about-hero-tagline {
        font-size: 16px;
    }

    .about-hero-description {
        font-size: 14px;
        text-align: left;
        margin-bottom: 20px;
    }

    .about-hero-buttons {
        flex-direction: column;
    }

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

    .about-hero-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .about-hero-overlay {
        background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    }

    /* VMV Section */
    .vmv-section {
        padding: 40px 0;
    }

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

    .vmv-card {
        padding: 25px;
    }

    .vmv-title {
        font-size: 17px;
    }

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

    /* Who/What Section */
    .who-what-section {
        padding: 40px 0;
    }

    .who-what-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .who-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .who-image-container {
        flex: 1;
        min-width: auto;
        width: 100%;
    }

    .who-text {
        font-size: 14px;
    }

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

    .what-item {
        padding: 20px;
    }

    .what-icon {
        font-size: 28px;
    }

    .what-title {
        font-size: 14px;
    }

    /* Stats Section */
    .stats-section {
        padding: 30px 0;
    }

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

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

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

    .stat-label {
        font-size: 12px;
        margin-top: 3px;
    }

    /* History Section */
    .history-section {
        padding: 40px 0;
    }

    .history-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .history-content p {
        font-size: 14px;
        text-align: left;
        margin-bottom: 15px;
    }

    /* Leadership Section */
    .leadership-section {
        padding: 40px 0;
    }

    .leadership-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .profile-card {
        display: flex;
        flex-direction: row;
    }

    .profile-image {
        width: 150px;
        min-width: 150px;
        aspect-ratio: 1;
    }

    .profile-info {
        padding: 15px 20px;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .profile-name {
        font-size: 13px;
    }

    .profile-title {
        font-size: 11px;
    }
}

/* ============== RESPONSIVE DESIGN - TABLET (768px and below) ============== */
@media (max-width: 768px) {
    /* Header responsive styling */
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .logo-section,
    .gifec-logo-section {
        margin: 10px 0;
    }

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

    .subtitle {
        font-size: 12px;
    }

    .ghana-logo {
        width: 60px;
        height: 60px;
    }

    .gifec-logo {
        width: 70px;
    }

    .footer-item img{
        width: 30px;
        height: 30px;
    }
    /* Hero section responsive */
    .hero-section {
        height: 300px;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }


    /* Top Header adjustments for tablet */
    .top-header-content {
        gap: 10px;
    }

    /* Hide contact info and search section on mobile/tablet */
    .contact-info {
        display: none;
    }

    .search-section {
        margin-right: auto;
    }

   
    /* Footer responsive for tablet */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 30px;
    }

    .footer-info {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-right: 0;
        padding-bottom: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============== RESPONSIVE DESIGN - MOBILE PHONES (480px and below) ============== */
@media (max-width: 480px) {
     /* Header responsive styling */
    .header-content {
        padding: 10px;
    }

    .main-title {
        font-size: 16px;
    }
    .subtitle {
        font-size: 10px;
    }

    /* Top Header adjustments for mobile */
    .top-header-content {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    /* Contact info and search section already hidden at 768px */
    .contact-info {
        display: none;
    }

     .hamburger {
        flex-shrink: 0;
    }

    .hamburger-line {
        width: 22px;
        height: 2.5px;
    }

    

    /* About Hero Section */
    .about-hero-section {
        min-height: 300px;
        padding: 30px 0;
    }

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

    .about-hero-tagline {
        font-size: 15px;
    }

    .about-hero-description {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .about-hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

    .btn {
        width: 100%;
        padding: 10px 15px;
        font-size: 13px;
    }

    .about-hero-footer {
        gap: 10px;
        padding-top: 15px;
    }

    .footer-item {
        gap: 8px;
    }

    .footer-logo {
        width: 35px;
        height: 35px;
    }

    .footer-label {
        font-size: 11px;
    }

    .about-hero-overlay {
        background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 60%, rgba(255, 255, 255, 0) 100%);
    }

    /* VMV Section */
    .vmv-section {
        padding: 30px 0;
    }

    .vmv-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .vmv-card {
        padding: 18px;
    }

    .vmv-header {
        margin-bottom: 10px;
    }

    .vmv-title {
        font-size: 15px;
    }

    .vmv-icon {
        font-size: 20px;
    }

    .vmv-text {
        font-size: 12px;
        line-height: 1.5;
    }

    /* Who/What Section */
    .who-what-section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .who-content-wrapper {
        gap: 12px;
    }

    .who-image {
        max-height: 250px;
    }

    .who-text {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .what-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .what-item {
        padding: 15px;
    }

    .what-icon {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .what-title {
        font-size: 12px;
    }

    /* Stats Section */
    .stats-section {
        padding: 25px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-item {
        gap: 10px;
        padding: 10px 0;
    }

    .stat-icon {
        font-size: 26px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 11px;
        margin-top: 2px;
    }

    /* History Section */
    .history-section {
        padding: 30px 0;
    }

    .history-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .history-content {
        padding: 0 5px;
    }

    .history-content p {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    /* Leadership Section */
    .leadership-section {
        padding: 30px 0;
    }

    .leadership-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }

    .profile-card {
        flex-direction: column;
    }

    .profile-image {
        width: 100%;
        min-width: auto;
    }

    .profile-info {
        padding: 12px;
        text-align: center;
    }

    .profile-name {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .profile-title {
        font-size: 11px;
        line-height: 1.3;
    }

    .read-more {
        font-size: 13px;
    }

    /* Footer responsive for mobile */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 25px;
    }

    .footer-org-title {
        font-size: 16px;
    }

    .footer-ministry {
        font-size: 12px;
    }

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

    .footer-section-title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 12px;
    }

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

    .footer-policies {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 11px;
    }

    .footer-copyright {
        font-size: 11px;
    }

    .footer {
        padding: 30px 0 10px;
    }
}

