html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.mn-footer {
    background: #0f0f0f;
    color: white;
    margin-top: 80px;
}

.newsletter-section {
    text-align: center;
    padding: 70px 20px;
    background: #151515;
}

    .newsletter-section h3 {
        font-size: 34px;
        font-weight: 900;
        margin-bottom: 15px;
    }

    .newsletter-section p {
        color: #aaa;
        margin-bottom: 25px;
    }

.newsletter-form {
    max-width: 700px;
    margin: auto;
    display: flex;
    gap: 15px;
}

    .newsletter-form input {
        flex: 1;
        height: 60px;
        border-radius: 12px;
        border: 1px solid #333;
        padding: 0 20px;
        background: #111;
        color: white;
    }

    .newsletter-form button {
        background: #ffc107;
        color: #111;
        border: none;
        padding: 0 30px;
        border-radius: 12px;
        font-weight: 800;
    }

.footer-cards {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.footer-card {
    display: flex;
    gap: 20px;
    padding: 35px;
    border-right: 1px solid #222;
}

    .footer-card:last-child {
        border-right: none;
    }

.footer-icon {
    font-size: 34px;
}

.footer-card h5 {
    font-weight: 800;
}

.footer-card p {
    color: #aaa;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    padding: 60px;
}

    .footer-links h5 {
        margin-bottom: 25px;
        font-weight: 800;
    }

    .footer-links a {
        display: block;
        color: #aaa;
        text-decoration: none;
        margin-bottom: 12px;
    }

        .footer-links a:hover {
            color: #ffc107;
        }

.footer-bottom {
    border-top: 1px solid #222;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

    .social-links a {
        width: 50px;
        height: 50px;
        background: #1a1a1a;
        border: 1px solid #333;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 22px;
        text-decoration: none;
        transition: .3s;
    }

        .social-links a:hover {
            transform: translateY(-5px);
        }

        .social-links a:nth-child(1):hover {
            background: #1877F2;
            border-color: #1877F2;
        }

        .social-links a:nth-child(2):hover {
            background: #E4405F;
            border-color: #E4405F;
        }

        .social-links a:nth-child(3):hover {
            background: #000;
            border-color: #fff;
        }

        .social-links a:nth-child(4):hover {
            background: #FF0000;
            border-color: #FF0000;
        }

.info-page {
    background: #111;
    color: white;
    padding: 70px 20px;
    min-height: 70vh;
}

    .info-page h1 {
        font-size: 48px;
        font-weight: 900;
        text-align: center;
        margin-bottom: 35px;
    }

.info-card {
    max-width: 900px;
    margin: auto;
    background: #1c1c1c;
    border: 1px solid #333;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 45px rgba(0,0,0,.35);
}

    .info-card h3 {
        color: #ffc107;
        font-weight: 800;
        margin-top: 25px;
    }

    .info-card p {
        color: #ccc;
        font-size: 18px;
        line-height: 1.7;
    }

.newsletter-box {
    background: #111;
    color: white;
    padding: 35px 20px;
    text-align: center;
    margin-top: 40px;
}

    .newsletter-box h4 {
        font-size: 24px;
        margin-bottom: 10px;
        color: #d4af37;
    }

    .newsletter-box p {
        margin-bottom: 20px;
        color: #ddd;
    }

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

    .newsletter-form input {
        padding: 12px 15px;
        width: 280px;
        border: none;
        border-radius: 6px;
    }

    .newsletter-form button {
        padding: 12px 20px;
        border: none;
        background: #d4af37;
        color: #111;
        font-weight: bold;
        border-radius: 6px;
        cursor: pointer;
    }

        .newsletter-form button:hover {
            background: #b8942e;
        }

.newsletter-ok {
    margin-top: 15px;
    color: #4ade80;
    font-weight: bold;
}

.newsletter-error {
    margin-top: 15px;
    color: #f87171;
    font-weight: bold;
}