/*

Cognxis - KI in der Bildung
Neuer moderner Design mit Grün und Dunkelviolett

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
    --white-color: #ffffff;
    --primary-color: #2d1b69;
    --secondary-color: #4caf50;
    --section-bg-color: #f8f9fa;
    --custom-btn-bg-color: #4caf50;
    --custom-btn-bg-hover-color: #45a049;
    --dark-color: #1a0d3a;
    --p-color: #5a6c7d;
    --border-color: #e8f5e8;
    --link-hover-color: #8bc34a;
    --accent-color: #4caf50;
    --gradient-primary: linear-gradient(135deg, #2d1b69 0%, #4caf50 100%);
    --gradient-secondary: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
    --shadow-color: rgba(76, 175, 80, 0.2);

    --body-font-family: "Inter", sans-serif;
    --title-font-family: "Inter", sans-serif;

    --h1-font-size: 58px;
    --h2-font-size: 46px;
    --h3-font-size: 32px;
    --h4-font-size: 28px;
    --h5-font-size: 24px;
    --h6-font-size: 22px;
    --p-font-size: 16px;
    --menu-font-size: 14px;

    --border-radius-large: 100px;
    --border-radius-medium: 20px;
    --border-radius-small: 10px;

    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

body {
    background-color: var(--white-color);
    font-family: var(--body-font-family);
    color: var(--dark-color);
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font-family);
    font-weight: var(--font-weight-semibold);
}

h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-bold);
}

h2 {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
}

h3 {
    font-size: var(--h3-font-size);
}

h4 {
    font-size: var(--h4-font-size);
}

h5 {
    font-size: var(--h5-font-size);
}

h6 {
    font-size: var(--h6-font-size);
}

p {
    font-size: var(--p-font-size);
    line-height: 1.7;
    color: var(--p-color);
}

ul li {
    font-size: var(--p-font-size);
    line-height: 1.7;
}

a,
button {
    font-size: var(--p-font-size);
    text-decoration: none;
}

a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

b,
strong {
    font-weight: var(--font-weight-bold);
}

::selection {
    background-color: var(--accent-color);
    color: var(--white-color);
}

::-moz-selection {
    background-color: var(--accent-color);
    color: var(--white-color);
}

.section-title-wrap {
    text-align: center;
}

.section-title-wrap::after {
    content: "";
    width: 80px;
    height: 3px;
    background: var(--gradient-secondary);
    display: block;
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-title {
    font-size: var(--h4-font-size);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 0;
}

.section-padding {
    padding: 100px 0;
}

main {
    background-color: var(--white-color);
}

.section-bg {
    background-color: var(--section-bg-color);
}

.section-overlay {
    background: var(--gradient-primary);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.section-overlay+.container {
    position: relative;
    z-index: 2;
}

.custom-icon {
    color: var(--accent-color);
}

.custom-btn {
    background: var(--gradient-secondary);
    border: none;
    color: var(--white-color);
    border-radius: var(--border-radius-small);
    padding: 15px 35px;
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.custom-btn:hover {
    background: var(--gradient-primary);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.custom-border-btn {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: var(--border-radius-small);
    padding: 13px 33px;
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
}

.custom-border-btn:hover {
    background: var(--gradient-secondary);
    color: var(--white-color);
    border-color: transparent;
    transform: translateY(-2px);
}

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

.site-header {
    background-color: var(--primary-color);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.site-header h2 {
    color: var(--white-color);
    margin: 0;
    font-weight: var(--font-weight-bold);
}

.navbar {
    background: var(--gradient-primary);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(45, 27, 105, 0.3);
}

.navbar .navbar-brand,
.navbar .navbar-nav .nav-link {
    color: var(--white-color);
}

.navbar .logo-image {
    max-height: 40px;
}

.logo-image {
    max-height: 40px;
}

.navbar-brand,
.navbar-brand:hover {
    color: var(--white-color);
    font-weight: var(--font-weight-bold);
}

.navbar-brand span {
    color: var(--accent-color);
}

.navbar-nav .nav-link {
    color: var(--white-color);
    font-weight: var(--font-weight-medium);
    padding: 10px 20px;
    transition: all 0.3s ease;
    border-radius: var(--border-radius-small);
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 20px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar .dropdown-menu {
    background-color: var(--white-color);
    border: none;
    border-radius: var(--border-radius-small);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 10px;
}

.navbar .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white-color);
}

.navbar .dropdown-item {
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:hover {
    background: var(--gradient-secondary);
    color: var(--white-color);
}

.navbar .dropdown-toggle::after {
    border-top: 4px solid var(--white-color);
    border-right: 4px solid transparent;
    border-bottom: 0;
    border-left: 4px solid transparent;
    margin-left: 5px;
    transition: all 0.3s ease;
}

@media screen and (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
    }
}

.navbar .custom-border-btn {
    border-color: var(--white-color);
    color: var(--white-color);
}

.navbar .custom-border-btn:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    background-color: var(--white-color);
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
    background-color: var(--white-color);
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--white-color);
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
    bottom: -8px;
}

.first-section {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.owl-carousel {
    margin-top: 50px;
}

.owl-carousel-image {
    border-radius: var(--border-radius-medium);
}

.owl-carousel .owl-item .owl-carousel-verified-image {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.verified-image {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.owl-carousel .owl-item {
    opacity: 0.5;
    transition: all 0.3s ease;
}

.owl-carousel .owl-item.active.center {
    opacity: 1;
}

.owl-carousel-info-wrap {
    background-color: var(--white-color);
    border-radius: var(--border-radius-medium);
    padding: 30px;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
}

.owl-carousel-info {
    text-align: center;
    color: var(--primary-color);
}

.badge {
    background: var(--gradient-secondary);
    color: var(--white-color);
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    padding: 6px 12px;
    border-radius: var(--border-radius-small);
    margin: 2px;
}

.owl-carousel-info-wrap .social-share,
.owl-carousel-info-wrap .social-icon {
    margin-top: 20px;
}

.owl-carousel-info-wrap .social-icon,
.owl-carousel-info-wrap .social-icon-item {
    display: inline-block;
    margin: 0 5px;
}

.owl-carousel .owl-item.active.center .owl-carousel-info-wrap:hover .social-icon,
.owl-carousel .owl-item.active.center .owl-carousel-info-wrap:hover .social-icon-item {
    transform: scale(1.1);
}

.owl-carousel-info-wrap .social-icon-item,
.owl-carousel-info-wrap .social-icon-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-secondary);
    color: var(--white-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.owl-carousel-info-wrap .social-icon-link {
    color: var(--white-color);
    text-decoration: none;
}

.owl-carousel .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--gradient-secondary);
}

.custom-block {
    background-color: var(--white-color);
    border-radius: var(--border-radius-medium);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.custom-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.custom-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-color);
    border-color: var(--accent-color);
}

.custom-block-info {
    padding: 20px 0;
}

.custom-block-image-wrap {
    border-radius: var(--border-radius-small);
    overflow: hidden;
    position: relative;
}

.custom-block-image-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.1), rgba(45, 27, 105, 0.1));
    opacity: 0;
    transition: all 0.3s ease;
}

.custom-block:hover .custom-block-image-wrap::after {
    opacity: 1;
}

.custom-block-image-wrap>a {
    display: block;
}

.custom-block-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.custom-block-image-detail-page .custom-block-image {
    height: 300px;
}

.custom-block .custom-block-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.custom-block-icon-wrap {
    text-align: center;
    margin-bottom: 30px;
}

.custom-block-icon-wrap .section-overlay {
    border-radius: var(--border-radius-medium);
}

.custom-block-btn-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.custom-block-btn-group .custom-block-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
}

.custom-block-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.custom-block-icon:hover {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.custom-block .custom-btn {
    margin-top: 15px;
}

.custom-block .custom-block-info+div .badge {
    background: var(--gradient-secondary);
    color: var(--white-color);
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    padding: 5px 10px;
    border-radius: var(--border-radius-small);
    margin: 2px;
    transition: all 0.3s ease;
}

.custom-block .custom-block-info+div .badge:hover {
    background: var(--gradient-primary);
}

.custom-block-full {
    background-color: var(--white-color);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
}

.custom-block-full::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.custom-block-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-color);
    border-color: var(--accent-color);
}

.custom-block-full .custom-block-info {
    padding: 30px;
}

.custom-block-full .custom-block-image {
    height: 250px;
}

.custom-block-full .social-share {
    margin-top: 20px;
    text-align: center;
}

.custom-block-top small {
    color: var(--p-color);
    font-size: 14px;
}

.custom-block-top .badge {
    background: var(--gradient-secondary);
    color: var(--white-color);
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    padding: 5px 10px;
    border-radius: var(--border-radius-small);
    margin: 2px;
}

.custom-block-bottom a:hover span {
    color: var(--accent-color);
}

.custom-block-bottom a span {
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
}

.custom-block-overlay {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-medium);
}

.custom-block-overlay .custom-block-image {
    transition: all 0.3s ease;
}

.custom-block-overlay:hover .custom-block-image {
    transform: scale(1.1);
}

.custom-block-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(45, 27, 105, 0.9));
    color: var(--white-color);
    padding: 30px;
}

.profile-block {
    display: flex;
    align-items: center;
}

.profile-block-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.profile-block p strong {
    color: var(--primary-color);
}

.profile-detail-block {
    margin-top: 30px;
}

.profile-detail-block p {
    margin-bottom: 10px;
}

.about-image {
    border-radius: var(--border-radius-small);
}

.team-thumb {
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
}

.team-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.team-thumb:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-color);
    border-color: var(--accent-color);
}

.team-info {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(45, 27, 105, 0.05));
}

.pagination {
    margin-top: 50px;
}

.page-link {
    color: var(--primary-color);
    border-color: var(--border-color);
    padding: 10px 15px;
    margin: 0 2px;
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link:focus {
    background: var(--gradient-secondary);
    border-color: var(--accent-color);
    color: var(--white-color);
}

.page-item:first-child .page-link {
    border-radius: var(--border-radius-small);
}

.active>.page-link,
.page-link.active {
    background: var(--gradient-secondary);
    border-color: var(--accent-color);
    color: var(--white-color);
}

.contact-info p strong {
    color: var(--primary-color);
}

.contact-info p a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-info p a:hover {
    color: var(--primary-color);
}

.google-map {
    border-radius: var(--border-radius-medium);
}

.contact-form .form-floating>textarea {
    min-height: 120px;
}

.subscribe-form-wrap {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(45, 27, 105, 0.1));
    border-radius: var(--border-radius-medium);
    padding: 40px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.subscribe-form-wrap h6 {
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    margin-bottom: 20px;
}

.subscribe-form #subscribe-email {
    border-radius: var(--border-radius-small);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.subscribe-form #subscribe-email:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem var(--shadow-color);
}

.subscribe-form #submit {
    background: var(--gradient-secondary);
    color: var(--white-color);
    border: none;
    border-radius: var(--border-radius-small);
    padding: 12px 30px;
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
}

.custom-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-small);
    padding: 15px;
    font-size: var(--p-font-size);
    transition: all 0.3s ease;
    background-color: var(--white-color);
    color: var(--primary-color);
}

.custom-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem var(--shadow-color);
}

.form-floating>label {
    color: var(--p-color);
}

.custom-form button[type="submit"] {
    background: var(--gradient-secondary);
    color: var(--white-color);
    border: none;
    border-radius: var(--border-radius-small);
    padding: 15px 30px;
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
    background: var(--gradient-primary);
    color: var(--white-color);
    transform: translateY(-2px);
}

.search-form .form-control {
    border-radius: var(--border-radius-small);
}

.search-form button[type="submit"] {
    background: var(--gradient-secondary);
    border: none;
    border-radius: var(--border-radius-small);
    color: var(--white-color);
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.search-form button[type="submit"]:hover {
    background: var(--gradient-primary);
}

.site-footer {
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 80px 0 40px;
    position: relative;
}

.site-footer>.container {
    position: relative;
    z-index: 2;
}

.site-footer-title,
.site-footer h6 {
    color: var(--white-color);
    font-weight: var(--font-weight-bold);
}

.site-footer p strong {
    color: var(--accent-color);
}

.site-footer p a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer p a:hover {
    color: var(--white-color);
}

.site-footer-thumb a img {
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
}

.site-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer-link-item {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px;
}

.site-footer-link {
    color: var(--white-color);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
}

.site-footer-link:hover {
    color: var(--accent-color);
}

.social-icon {
    margin-right: 15px;
}

.social-icon-item {
    display: inline-block;
    margin-right: 10px;
}

.social-icon-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-secondary);
    color: var(--white-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.social-icon-link:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

@media screen and (min-width: 2160px) {
    .first-section {
        padding: 200px 0 150px;
    }
}

@media screen and (min-width: 1600px) {
    .site-footer {
        padding: 120px 0 60px;
    }
}

@media screen and (max-width: 1240px) {
    .first-section {
        padding: 100px 0 60px;
    }
}

@media screen and (max-width: 991px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 20px;
    }

    h6 {
        font-size: 18px;
    }

    .first-section {
        padding: 80px 0 40px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .navbar-nav {
        background: var(--gradient-primary);
        padding: 20px;
        border-radius: var(--border-radius-small);
        margin-top: 20px;
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav .dropdown-menu {
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
    }

    .navbar-expand-lg .navbar-nav {
        margin-top: 20px;
    }

    .nav-tabs .nav-link:first-child {
        border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
    }

    .nav-tabs .nav-link {
        border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
    }

    .copyright-text {
        text-align: center;
    }

    .site-footer {
        padding: 60px 0 30px;
    }
}

@media screen and (max-width: 540px) {
    .first-section {
        padding: 60px 0 30px;
    }

    .custom-block .custom-block-top {
        flex-direction: column;
    }

    .custom-block .custom-block-top small:last-child {
        margin-top: 10px;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }
}

@media screen and (max-width: 414px) {
    .search-form {
        flex-direction: column;
    }
}

.cookie-wrapper {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--white-color);
    border-radius: var(--border-radius-medium);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    border: 2px solid var(--border-color);
}

.cookie-wrapper .show {
    display: block;
}

@media (max-width: 772px) {
    .cookie-wrapper {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}

.hidden {
    display: none;
}

header i {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

header h2 {
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    margin-bottom: 10px;
}

.data {
    margin: 15px 0;
}

.data p a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
}

.data p a:hover {
    color: var(--primary-color);
}

.buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.buttons .cookie-button {
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius-small);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.buttons #acceptBtn {
    background: var(--gradient-secondary);
    color: var(--white-color);
}

.buttons #acceptBtn:hover {
    background: var(--gradient-primary);
    color: var(--white-color);
    transform: translateY(-2px);
}

#declineBtn {
    background-color: var(--border-color);
    color: var(--primary-color);
}

#declineBtn:hover {
    background-color: var(--p-color);
    color: var(--white-color);
}

#result {
    margin-top: 10px;
    text-align: center;
    font-weight: var(--font-weight-medium);
}

.growth {
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 120px 0 80px;
    position: relative;
}

.lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--white-color);
}