@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: #FDFDFD;
}

header nav img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    vertical-align: middle;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    background-color: #3a3a3a;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 5px;
    padding-bottom: 7px;
    padding-left: 5%;
    padding-right: 5%;
    position: relative;
    z-index: 1000;
}

.logo-area {
    display: flex;
    height: 100%;
    align-items: center;
}

.logo {
    background-color: #42445A00;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0;
    font-weight: 700;
    max-height: 50px;
}

.mobile-toggle {
    display: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0 20px;
    height: 100%;
    align-items: center;
    border-left: 1px solid #555;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
}

.nav-links>li>a {
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #3a3a3a;
    min-width: 180px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 3px solid #00B213;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: white;
    border-bottom: 1px solid #4d4d4d;
}

@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
    
    .dropdown:hover .fa-chevron-down {
        transform: rotate(180deg);
    }
}

.right-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.right-actions img {
    max-width: 35px;
}

.right-actions li {
    list-style: none;
    color: #FFFFFF;
    
}

.profile__header__links__display {
    display: flex;
    align-items: center;
    border: 2px solid#39FF000A;
    padding: 8px;
    border-radius: 5px;
}

.profile__header__links__display img {
    margin: auto;
}

.search-btn {
    color: white;
    cursor: pointer;
}

.action-btn {
    padding: 8px 20px;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.btn-login {
    background: #00B213;
}

.btn-register {
    background: #1700B2;
}

.btn-logout {
    background: #B21B00;
}

@media (max-width: 768px) {
    header {
        padding: 0;
        /*justify-content: flex-start;*/
        justify-content: space-between;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-container {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #2c2c2c;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-container.active {
        max-height: 100vh;
        border-top: 1px solid #444;
    }
    
    .nav-links {
        flex-direction: column;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #444;
    }
    
    .nav-links a {
        padding: 15px 20px;
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-links>li {
        padding: 7px;
    }
    
    .dropdown-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        display: block;
        max-height: 0;
        overflow: hidden;
        background: #222;
        border-top: none;
        transition: max-height 0.35s ease-in-out;
    }
    
    .dropdown-menu.expanded {
        max-height: 200px;
    }
    
    .right-actions {
        margin-left: auto;
        padding-right: 15px;
    }
    
    .fa-chevron-down {
        transition: transform 0.3s;
    }
}










/* Login css */
.login__wrapper {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    font-family: 'Inter', sans-serif;
}

.login__div__uno__main {
    background: #EFEFEF;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login__div__uno__main img {
    max-width: 80px;
}

.login__div__uno__main h2 {
    color: #1a1a1a;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    /* text-align: left;*/
    text-transform: uppercase;
}

.login__div__uno__main .login__div__dos,
.login__div__tres {
    text-align: left;
    margin-bottom: 1.2rem;
}

.login__div__uno__main label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.login__div__uno__main input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.login__div__uno__main input:focus {
    outline: none;
    border-color: #28C600;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.login__div__uno__main button[type="submit"] {
    width: 100%;
    background-color: #28C600;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
}

.login__div__uno__main button[type="submit"]:hover {
    background-color: #1E9200;
    transform: translateY(-1px);
}

.login__div__uno__main button[type="submit"]:active {
    transform: translateY(0);
}

.login__div__uno__main .forgot__password__p,
.register__new__link {
    margin-top: 1.2rem;
    font-size: 0.85rem;
    color: #666;
}

.login__div__uno__main a {
    color: #28C600;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.login__div__uno__main a:hover {
    color: #209502;
    text-decoration: underline;
}

.login__div__uno__main .register__new__link {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.login__div__uno__main .login__div__tres {
    position: relative;
}

.login__div__uno__main .login__div__tres::after {
    content: "\f06e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 38px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.login__div__uno__main .login__div__tres:hover::after {
    color: #2BA50C;
}

.login__div__uno__main .login__div__tres.visible::after {
    content: "\f070";
}




/*register css*/
.register__main__wrapper__css {
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 85vh;
    background-color: #f4f7f6;
    font-family: 'Inter', sans-serif;
    color: #333;
}

.container__register__wrap {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 450px;
}

.container__register__wrap h1 {
    text-align: center;
    color: #00731C;
}

.container__register__wrap h2 {
    text-align: center;
    color: #2C2C2C;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.container__register__wrap .img__register__wrap {
    margin: auto;
    align-items: center;
    justify-content: center;
    max-width: 80%;
    margin-bottom: 1rem;
}

.container__register__wrap img {
    max-width: 80px;
    display: block;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: auto !important;
    margin-right: auto !important;
}

.container__register__wrap [class^="register__In"] {
    margin-bottom: 1.2rem;
    position: relative;
}

.container__register__wrap label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.container__register__wrap input[type="text"],
.container__register__wrap input[type="email"],
.container__register__wrap input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    font-size: 0.95rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.container__register__wrap input:focus {
    outline: none;
    border-color: #36E91C;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.container__register__wrap small {
    display: block;
    margin-top: 0.4rem;
    color: #888;
    font-size: 0.75rem;
}

.container__register__wrap .password-strength {
    height: 6px !important;
    background: #eee;
    margin-top: 8px !important;
    border-radius: 10px !important;
    overflow: hidden;
}

.container__register__wrap .strength-weak {
    background: #ff4d4d !important;
    width: 33% !important;
}

.container__register__wrap .strength-medium {
    background: #ffc107 !important;
    width: 66% !important;
}

.container__register__wrap .strength-strong {
    background: #36E91C !important;
    width: 100% !important;
}

.container__register__wrap #match-message {
    font-weight: 500;
    margin-top: 0.5rem;
}

.container__register__wrap .register__checkEmailVerification__wrap {
    background: #f9f9f9;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px dashed #ddd;
}

.container__register__wrap .register__checkEmailVerification__wrap label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 0;
}

.container__register__wrap .register__checkEmailVerification__wrap input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #36E91C;
}

.container__register__wrap button[type="submit"] {
    width: 100%;
    background-color: #30C81A;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(39, 174, 96, 0.2);
}

.container__register__wrap button[type="submit"]:hover:not(:disabled) {
    background-color: #8CFF7B;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(39, 174, 96, 0.3);
}

.container__register__wrap button[type="submit"]:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.container__register__wrap .register__backto__login__link {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.container__register__wrap .register__backto__login__link a {
    color: #36E91C;
    text-decoration: none;
    font-weight: 600;
}

.container__register__wrap .register__backto__login__link a:hover {
    text-decoration: underline;
}

/* verif email register */
.verifEmailMain__wrapper {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #f4f7f6;
    font-family: 'Inter', sans-serif;
}

.verifEmailMain__wrapper .verifEmailR__main__wrap {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 420px;
    text-align: center;
    box-sizing: border-box;
}

.verifEmailMain__wrapper h1 {
    color: #1a1a1a;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.verifEmailMain__wrapper p {
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.verifEmailMain__wrapper p strong {
    color: #4EBF13;
    font-weight: 600;
}

.verifEmailMain__wrapper .verifEmailR__codeIn__wrap {
    margin-bottom: 2rem;
    text-align: left;
}

.verifEmailMain__wrapper label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 0.8rem;
    text-align: center;
}

.verifEmailMain__wrapper input[name="code"] {
    width: 100%;
    padding: 15px;
    font-size: 2rem;
    letter-spacing: 12px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    font-weight: 600;
}

.verifEmailMain__wrapper input[name="code"]:focus {
    outline: none;
    border-color: #00F330;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.1);
}

.verifEmailMain__wrapper button[type="submit"] {
    width: 100%;
    background-color: #07DF0F;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-bottom: 1.5rem;
}

.verifEmailMain__wrapper button[type="submit"]:hover {
    background-color: #1DD716;
    transform: translateY(-1px);
}

.verifEmailMain__wrapper a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.verifEmailMain__wrapper a:hover {
    color: #39C20C;
    text-decoration: underline;
}

.verifEmailMain__wrapper .verifEmailR__main__wrap>p:last-of-type {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

/*dashboard*/
.dashboardUser__wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dashboardUser__wrapper h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.dashboardUser__wrapper p {
    color: #65676b;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.dashboardUser__wrapper strong {
    color: #44C607;
}

.dashboardUser__wrapper .dashboardUser__buttons__actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f2f5;
}

.dashboardUser__wrapper .dashboardUser__buttons__actions a {
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dashboardUser__wrapper .dashboardUser__buttons__createPost {
    background-color: #28C10C;
    color: white;
    box-shadow: 0 4px 14px rgba(39, 174, 96, 0.3);
}

.dashboardUser__wrapper .dashboardUser__buttons__createPost:hover {
    background-color: #219150;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.dashboardUser__wrapper .dashboardUser__buttons__editProfile {
    background-color: #F4F4F4;
    color: #4b4f56;
}

.dashboardUser__wrapper .dashboardUser__buttons__editProfile:hover {
    background-color: #e4e6eb;
    color: #1c1e21;
}

.dashboardUser__wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboardUser__wrapper h2::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: #f0f2f5;
}

.dashboardUser__alertEmail__notVerifief {
    background-color: #fff9eb;
    border: 1px solid #ffeeba;
    border-left: 5px solid #f1c40f;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: fadeInDownAlertDashNotEmail 0.5s ease;
}

.dashboardUser__alertEmail__notVerifief h3 {
    margin: 0;
    color: #856404;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboardUser__alertEmail__notVerifief h3::before {
    content: "⚠️";
    font-size: 1.2rem;
}

.dashboardUser__alertEmail__notVerifief p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.4;
}

.dashboardUser__alertEmail__notVerifief button {
    background-color: #f1c40f;
    color: #453505;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 5px;
}

.dashboardUser__alertEmail__notVerifief button:hover {
    background-color: #d4ac0d;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(241, 196, 15, 0.2);
}

.dashboardUser__alertEmail__notVerifief button:active {
    transform: translateY(0);
}

@keyframes fadeInDownAlertDashNotEmail {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cont Post*/
.dashboardUser__posts__list__wrapper {
    background: #ffffff;
    border: 1px solid #e4e6eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.dashboardUser__posts__list__wrapper:hover {
    border-color: #27ae60;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.dashboardUser__posts__list__status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.dashboardUser__posts__list__status h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #1a1a1a;
    font-weight: 600;
}

.dashboardUser__posts__list__status span {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}

.dashboardUser__posts__list__wrapper p {
    margin: 0 0 10px 0;
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.5;
}

.dashboardUser__posts__list__wrapper p strong {
    color: #1a1a1a;
}

.dashboardUsers__posts__cont {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f2f5;
    display: flex;
    gap: 10px;
}

.dashboardUsers__posts__cont button {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.dashboardUsers__posts__cont form:first-child button {
    background-color: #f0fdf4;
    color: #27ae60;
    border: 1px solid #27ae60;
}

.dashboardUsers__posts__cont form:first-child button:hover {
    background-color: #27ae60;
    color: #ffffff;
}

.dashboardUsers__posts__cont form:last-child button {
    background-color: #fff1f2;
    color: #e11d48;
    border: 1px solid #fda4af;
}

.dashboardUsers__posts__cont form:last-child button:hover {
    background-color: #e11d48;
    color: #ffffff;
    border-color: #e11d48;
}

/*forgot-password*/
.forgotPassword__general__Wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f7f6;
    font-family: 'Inter', sans-serif;
}

.forgotPassword__main__Wrapper {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.forgotPassword__main__Wrapper h1 {
    color: #1a1a1a;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.forgotPassword__main__Wrapper>p:first-of-type {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.forgotPassword__main__Wrapper label {
    display: block;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.forgotPassword__main__Wrapper input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.forgotPassword__main__Wrapper input[type="email"]:focus {
    outline: none;
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.forgotPassword__main__Wrapper button[type="submit"] {
    width: 100%;
    background-color: #2CDA00;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.forgotPassword__main__Wrapper button[type="submit"]:hover {
    background-color: #1EB81C;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.2);
}

.forgotPassword__backToLogin__link {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.forgotPassword__backToLogin__link {
    color: #A5A5A5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.forgotPassword__backToLogin__link a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.forgotPassword__backToLogin__link a:hover {
    color: #55AE27;
}







/* pie */
.site-footer {
    background-color: #1a1a1a;
    color: #adb5bd;
    padding: 60px 0 20px 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
}

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

.footer-column h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #09FF00;
    padding-left: 5px;
}

.footer-logo {
    color: #ffffff;
    font-size: 24px;
    margin: 0 0 15px 0;
}

.footer-logo img {
    color: #509700;
    max-width: 80px;
}

.footer-brand p {
    font-size: 14px;
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    margin-right: 15px;
    font-weight: bold;
}

.social-links a:hover {
    color: #007bff;
}


.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 20px;
    border-top: 1px solid #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-legal a {
    color: #adb5bd;
    margin-left: 20px;
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-legal a {
        margin: 0 10px;
    }
}
