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;
}

/* Custom styles for Telegram Quiz Creation Service landing page */
.hero-section {
    background: linear-gradient(135deg, #4f8cff 0%, #6ee7b7 100%);
    color: #fff;
    min-height: 350px;
}

.step-circle {
    width: 48px;
    height: 48px;
    background: #4f8cff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem auto;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(79,140,255,0.15);
}

.features-section .feature-card {
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    min-height: 120px;
    font-weight: 500;
    font-size: 1rem;
}

.feature-icon {
    font-size: 2rem;
    color: #4f8cff;
    display: block;
}

.pricing-card {
    border-width: 2px !important;
    border-radius: 1rem;
    transition: transform 0.2s;
}
.pricing-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(79,140,255,0.12);
}

.why-choose-section .choose-icon {
    font-size: 2rem;
    color: #4f8cff;
    display: block;
}

.contact-section {
    background: linear-gradient(135deg, #4f8cff 0%, #6ee7b7 100%);
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .features-section .feature-card,
    .why-choose-section .card {
        font-size: 0.95rem;
        padding: 1rem !important;
    }
    .pricing-card {
        margin-bottom: 1.5rem;
    }
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f8f9fa;
    color: #212529;
    padding: 15px 20px;
    font-size: 0.9rem;
    border-top: 1px solid #dee2e6;
    z-index: 1050;
    display: none; /* hidden by default */
}

    .cookie-consent a {
        color: #0d6efd;
        text-decoration: underline;
    }