html, body {
    height: 100%; /* Устанавливаем высоту для html и body */
    margin: 0; /* Убираем отступы */
    padding: 0; /* Убираем внутренние отступы */
    /* background-color: #e5e7eb; */
}
h1{

    /* margin-top: 30px;
    color: #000000;
    font-weight: 700; */
}
h2, h3, h4, h5, h6 {
    /* color: #000000; */
    /* font-weight: 600; */
}
p {
    /* color: #333333; */
    /* font-weight: 400; */
}
.nav-link {
    cursor: pointer;
}

.wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

main {
    flex: 1;
    vertical-align: middle;
}

main .jumbotron {
    min-height: 100%; /* Задаем минимальную высоту 100% экрана */
    display: flex;
    justify-content: center; /* Горизонтальное центрирование */
    align-items: center; /* Вертикальное центрирование */
}

main .jumbotron>.container {
    /* Здесь могут быть другие стили для контейнера внутри jumbotron */
}
.text-left{
	margin: 30px 0px;
	text-align: left;
}
.page-content h1{
    /* text-align: center; */
    margin-bottom: 20px;
	text-align: left;
}
.page-content{
	text-align: left;
}
#top_menu_wrap .nav a{
    cursor: default;
}
#top_menu_wrap .nav a.text-white:hover, #profil_link:hover {
    color: #ffc107 !important;
    cursor: pointer;
}
a {
  transition: all 0.3s ease-in-out;
}

.social-icon {
    /* font-size: 1.5rem; */
    transition: color 0.3s ease;
}
.social-icon:hover {
    color: #217FF9; /* Primary blue */
}

/* Global Button Styles */
.btn-primary {
    background-color: #217FF9;
    border: 2px solid #217FF9;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(33, 127, 249, 0.3);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #1a6ad8;
    border-color: #1a6ad8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(33, 127, 249, 0.4);
}

.btn-secondary {
    background-color: #6C757D;
    border: 2px solid #6C757D;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(108, 117, 125, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: #5a6268;
    border-color: #545b62;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    z-index: 999999999;
    display: none; /* Initially hidden */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner a {
    color: #ffcc00;
    text-decoration: underline;
}

.cookie-banner button {
    background-color: #ffcc00;
    color: #333;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}
.blog_article_h4_link{
    text-decoration: none;
}
.blog_article_h4_link:hover{
    color: #0d6efd;
}
.blog_article_summary{
    text-align: justify;
}
.blog_content h2,h3,h4,h5,h6{
    color: #333;
}
.blog_img_right{
    float: right;
    margin-left: 20px;
    height: 250px;
}
@media screen and (max-width: 768px) {
    .blog_img_right{
        float: none;
        margin-left: 0;
        width: 100%;
        height: auto;
    }
}

/* Hero Section Button Hover Effects */
.hero-section .btn {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

/* White button hover (Get Started Free / Go to Dashboard) */
.hero-section .hero-btn-primary {
    transition: all 0.3s ease-in-out;
}

.hero-section .hero-btn-primary:hover {
    background-color: #f0f0f0 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Transparent button hover (Sign In) */
.hero-section .hero-btn-secondary {
    transition: all 0.3s ease-in-out;
}

.hero-section .hero-btn-secondary:hover {
    background-color: #fff !important;
    color: #2d3748 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive Styles for Hero Section */
@media screen and (max-width: 768px) {
    .hero-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .hero-section h1 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-section .lead {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-section .btn {
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .hero-section .btn:last-child {
        margin-bottom: 0;
    }
}

/* CTA Section Button Hover Effects */
.cta-section .btn {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

/* White button hover (Create Free Account / Open Dashboard) */
.cta-section .cta-btn-primary {
    transition: all 0.3s ease-in-out;
}

.cta-section .cta-btn-primary:hover {
    background-color: #f0f0f0 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Transparent button hover (Learn More) */
.cta-section .cta-btn-secondary {
    transition: all 0.3s ease-in-out;
}

.cta-section .cta-btn-secondary:hover {
    background-color: #fff !important;
    color: #2d3748 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive Styles for CTA Section */
@media screen and (max-width: 768px) {
    .cta-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .cta-section .card-body {
        padding: 2rem 1.5rem !important;
    }
    
    .cta-section .btn {
        width: 100%;
        margin-bottom: 0.75rem;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .cta-section .btn.me-3 {
        margin-right: 0 !important;
        margin-bottom: 0.75rem;
    }
    
    .cta-section .btn:last-child {
        margin-bottom: 0;
    }
    
    .cta-section h2 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
    }
    
    .cta-section .lead {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
}

/* Remove wrapper padding/margin on tablets and phones */
@media screen and (max-width: 1024px) {
    .wrapper {
        padding: 0 !important;
        margin: 0 !important;
    }
}

@media screen and (max-width: 768px) {
    .wrapper {
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* Override Bootstrap container max-width on tablets and phones only */
@media (max-width: 1199px) {
    .container, .container-md, .container-sm, .container-lg, .container-xl {
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}