/********** Template CSS **********/

:root {
    --primary: #05307a;
    --light: #fffaeb;
    --dark: #001f54;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.container {
    margin: 0 auto;
    padding: 20px;
}

.btn-primary {
    background-color: #05307a;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}

ul {
    /* list-style: none; */
    padding: 0;
}

ul li {
    font-size: 18px;
    margin: 10px 0;
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.social-links li {
    margin: 0 10px;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.btn-primary:hover {
    background-color: #f5ca88;
    transition: background-color 0.3s ease;
}

.detailsFlex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/

.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/

.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #d1bde1;
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}


/*** Header ***/

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, 0.7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/* Google Fonts - Poppins */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
@media (max-width: 700px) {
    .cookie-wrapper {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .contact-img {
        display: none;
    }
}

.cookie-wrapper {
    position: fixed;
    bottom: 0px;
    right: 0;
    width: 40%;
    background: #fff;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgb(0, 0, 0);
    z-index: 999;
    width: 100%;
    @media (max-width: 600px) {
        width: 100%;
    }
}

.cookie-wrapper h2 {
    font-size: 32px;
}

.cookie-wrapper .show {
    right: 20px;
}

.hidden {
    display: none;
}

header i {
    color: #05307a;
    font-size: 32px;
    text-align: center;
}

header h2 {
    color: #05307a;
    font-weight: 500;
    text-align: center;
}

.data {
    text-align: center;
}

.data p a {
    color: #05307a;
    text-decoration: none;
    text-align: center !important;
}

.data p a:hover {
    text-decoration: underline;
}

.buttons {
    padding: 20px 0px;
    text-align: center;
}

.buttons .cookie-button {
    border: 2px solid #05307a;
    color: #fff;
    padding: 8px 0;
    background: #05307a;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.5s ease;
    max-width: 150px;
    border-radius: 0;
}

.buttons #acceptBtn:hover {
    background-color: transparent;
    color: #05307a;
}

#declineBtn {
    background-color: #fff;
    color: #05307a;
}

#declineBtn:hover {
    background-color: #05307a;
    color: #fff;
}


/* Footer Style */

.title {
    color: #05307a;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}


/* new styles  */

:root {
    --primary: #005B96;
    --accent: #82C0FF;
    --background: #F4F6F8;
    --text: #2B2F38;
    --gray: #A9B1B7;
}


/* Стилі для блоку 1: Hero section */

.hero-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--background);
    overflow: hidden;
}

.hero-section h1 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: calc(1.8rem + 1.5vw);
    line-height: 1.2;
}

.hero-section p.lead {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-highlight {
    background-color: rgba(130, 192, 255, 0.15);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #004a7c;
    border-color: #004a7c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 91, 150, 0.2);
}

.btn-primary .material-icons {
    font-size: 1.2rem;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.date-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(0, 91, 150, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.date-badge .material-icons {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}


/* Декоративні круги */

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(0, 91, 150, 0.05);
    bottom: -150px;
    left: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    border: 25px solid rgba(130, 192, 255, 0.1);
    top: -50px;
    right: 15%;
}

.circle-3 {
    width: 100px;
    height: 100px;
    background-color: rgba(130, 192, 255, 0.1);
    bottom: 20%;
    right: 10%;
}

.hero-image-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 91, 150, 0.1);
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 4rem 0;
    }
    .hero-image-container {
        margin-top: 3rem;
    }
    .circle-2 {
        top: 50%;
        right: 5%;
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: calc(1.5rem + 1vw);
    }
    .hero-highlight {
        padding: 1rem;
    }
    .circle-1 {
        width: 200px;
        height: 200px;
        bottom: -100px;
        left: -100px;
    }
    .circle-3 {
        display: none;
    }
}


/* Стилі для блоку 2: Despre webinar (оновлений) */

.about-webinar {
    position: relative;
    padding: 6rem 0;
    background-color: white;
    overflow: hidden;
}

.about-webinar h2 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: calc(1.5rem + 0.8vw);
    position: relative;
}

.about-webinar h2::after {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.webinar-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 91, 150, 0.15);
    height: 100%;
}

.webinar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-list {
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.75rem;
    padding-left: 1rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-left-color: var(--accent);
    transform: translateX(5px);
}

.feature-item .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(0, 91, 150, 0.1);
    border-radius: 12px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-item .feature-icon .material-icons {
    color: var(--primary);
    font-size: 1.5rem;
}

.feature-item .feature-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature-item .feature-content p {
    color: var(--text);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.target-audience {
    background-color: rgba(130, 192, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.target-audience h3 {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.target-audience h3 .material-icons {
    margin-right: 0.75rem;
    color: var(--primary);
}


/* Декоративні круги для блоку 2 */

.about-circle-1 {
    width: 200px;
    height: 200px;
    background-color: rgba(0, 91, 150, 0.04);
    bottom: -100px;
    right: 15%;
    z-index: 0;
}

.about-circle-2 {
    width: 120px;
    height: 120px;
    border: 15px solid rgba(130, 192, 255, 0.1);
    top: 15%;
    left: 5%;
    z-index: 0;
}

@media (max-width: 991.98px) {
    .webinar-image {
        height: 350px;
        margin-bottom: 2.5rem;
    }
    .about-circle-1 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 767.98px) {
    .about-webinar {
        padding: 4rem 0;
    }
    .webinar-image {
        height: 250px;
    }
    .feature-item .feature-icon {
        width: 40px;
        height: 40px;
    }
    .feature-item .feature-icon .material-icons {
        font-size: 1.25rem;
    }
}


/* Стилі для блоку 3: Ce vei învăța */

.learning-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--background);
    overflow: hidden;
}

.learning-section h2 {
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
    font-size: calc(1.5rem + 0.8vw);
    position: relative;
}

.learning-section h2::after {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.learning-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 91, 150, 0.08);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.learning-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 91, 150, 0.15);
}

.learning-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(0, 91, 150, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.learning-card:hover .learning-icon {
    background-color: var(--primary);
}

.learning-icon .material-icons {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.learning-card:hover .learning-icon .material-icons {
    color: white;
}

.learning-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.learning-card p {
    color: var(--text);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.learning-card .number {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 91, 150, 0.05);
    line-height: 1;
}


/* Декоративні круги для блоку 3 */

.learning-circle-1 {
    width: 250px;
    height: 250px;
    background-color: rgba(0, 91, 150, 0.03);
    top: -100px;
    left: -100px;
}

.learning-circle-2 {
    width: 150px;
    height: 150px;
    border: 20px solid rgba(130, 192, 255, 0.08);
    bottom: -50px;
    right: 10%;
}


/* Стилі для блоку 4: Speakerii */

.speakers-section {
    position: relative;
    padding: 5rem 0;
    background-color: white;
    overflow: hidden;
}

.speakers-section h2 {
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
    font-size: calc(1.5rem + 0.8vw);
    position: relative;
}

.speakers-section h2::after {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.speaker-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 91, 150, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 91, 150, 0.15);
}

.speaker-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.speaker-card:hover .speaker-image img {
    transform: scale(1.05);
}

.speaker-info {
    padding: 1.5rem;
    position: relative;
}

.speaker-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.speaker-info h3::after {
    content: "";
    position: absolute;
    bottom: -0.35rem;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.speaker-card:hover .speaker-info h3::after {
    width: 100%;
}

.speaker-info p {
    color: var(--text);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* Декоративні круги для блоку 4 */

.speakers-circle-1 {
    width: 200px;
    height: 200px;
    background-color: rgba(0, 91, 150, 0.03);
    top: 20%;
    right: -100px;
}

.speakers-circle-2 {
    width: 120px;
    height: 120px;
    border: 15px solid rgba(130, 192, 255, 0.08);
    bottom: 10%;
    left: 5%;
}

@media (max-width: 991.98px) {
    .learning-card,
    .speaker-card {
        margin-bottom: 1.5rem;
    }
    .learning-icon {
        width: 60px;
        height: 60px;
    }
    .learning-icon .material-icons {
        font-size: 1.75rem;
    }
    .speaker-image {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .learning-section,
    .speakers-section {
        padding: 4rem 0;
    }
    .learning-card .number {
        font-size: 2.5rem;
    }
    .speaker-image {
        height: 180px;
    }
}


/* Стилі для блоку 5: Recenzii */

.testimonials-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--primary);
    color: white;
    overflow: hidden;
}

.testimonials-section h2 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    font-size: calc(1.5rem + 0.8vw);
    position: relative;
    color: white;
}

.testimonials-section h2::after {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.75rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.testimonial-content {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.25rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-info {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
}

.author-location {
    font-size: 0.85rem;
    opacity: 0.8;
}

.rating {
    color: #FFD700;
    letter-spacing: 0.15rem;
}


/* Декоративні круги для блоку 5 */

.testimonials-circle-1 {
    width: 280px;
    height: 280px;
    background-color: rgba(255, 255, 255, 0.03);
    top: -140px;
    left: -100px;
}

.testimonials-circle-2 {
    width: 200px;
    height: 200px;
    border: 30px solid rgba(255, 255, 255, 0.05);
    bottom: -100px;
    right: 10%;
}


/* Стилі для блоку 6: Ce ne diferențiază */

.differences-section {
    position: relative;
    padding: 5rem 0;
    background-color: white;
    overflow: hidden;
}

.differences-section h2 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: calc(1.5rem + 0.8vw);
    position: relative;
}

.differences-section h2::after {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.differences-content {
    margin-bottom: 2rem;
}

.differences-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.differences-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 91, 150, 0.15);
    height: 100%;
}

.differences-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-list {
    background-color: rgba(130, 192, 255, 0.1);
    border-radius: 12px;
    padding: 1.75rem;
}

.benefits-list h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.benefits-list h3::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
    border-radius: 1px;
}

.benefits-list ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.benefits-list ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.benefits-list ul li:last-child {
    margin-bottom: 0;
}

.benefits-list ul li .material-icons {
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: var(--primary);
    font-size: 1.25rem;
}


/* Декоративні круги для блоку 6 */

.differences-circle-1 {
    width: 200px;
    height: 200px;
    background-color: rgba(0, 91, 150, 0.03);
    bottom: -100px;
    left: 10%;
}

.differences-circle-2 {
    width: 120px;
    height: 120px;
    border: 15px solid rgba(130, 192, 255, 0.1);
    top: 15%;
    right: -60px;
}

@media (max-width: 991.98px) {
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    .differences-image {
        height: 350px;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .testimonials-section,
    .differences-section {
        padding: 4rem 0;
    }
    .testimonial-content::before {
        font-size: 3rem;
    }
    .differences-image {
        height: 250px;
    }
}


/* Стилі для блоку 7: Înregistrează-te */

.register-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--background);
    overflow: hidden;
}

.register-section h2 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: calc(1.5rem + 0.8vw);
    position: relative;
}

.register-section h2::after {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.register-content {
    margin-bottom: 2rem;
}

.register-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
}

.register-form-container {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 91, 150, 0.1);
    position: relative;
    z-index: 1;
}

.form-floating {
    margin-bottom: 1.5rem;
}

.form-floating .form-control {
    border-color: rgba(0, 91, 150, 0.1);
    padding: 1rem 0.75rem;
}

.form-floating .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 91, 150, 0.25);
}

.form-floating label {
    color: var(--gray);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #004a7c;
    border-color: #004a7c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 91, 150, 0.2);
}

.register-image {
    position: relative;
    z-index: 1;
}

.register-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 91, 150, 0.15);
}

.benefits-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(0, 91, 150, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.benefits-badge .material-icons {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}


/* Декоративні круги для блоку 7 */

.register-circle-1 {
    width: 250px;
    height: 250px;
    background-color: rgba(0, 91, 150, 0.03);
    top: -100px;
    right: -100px;
}

.register-circle-2 {
    width: 150px;
    height: 150px;
    border: 20px solid rgba(130, 192, 255, 0.08);
    bottom: 10%;
    left: 5%;
}

.form-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 1.5rem;
    text-align: center;
}

@media (max-width: 991.98px) {
    .register-image {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .register-section {
        padding: 4rem 0;
    }
    .register-form-container {
        padding: 1.5rem;
    }
}


/* Стилі для блоку 7: Înregistrează-te */

.register-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--background);
    overflow: hidden;
}

.register-section h2 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: calc(1.5rem + 0.8vw);
    position: relative;
}

.register-section h2::after {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.register-content {
    margin-bottom: 2rem;
}

.register-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
}

.register-form-container {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 91, 150, 0.1);
    position: relative;
    z-index: 1;
}

.form-floating {
    margin-bottom: 1.5rem;
}

.form-floating .form-control {
    border-color: rgba(0, 91, 150, 0.1);
    padding: 1rem 0.75rem;
}

.form-floating .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 91, 150, 0.25);
}

.form-floating label {
    color: var(--gray);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #004a7c;
    border-color: #004a7c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 91, 150, 0.2);
}

.register-image {
    position: relative;
    z-index: 1;
}

.register-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 91, 150, 0.15);
}

.benefits-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(0, 91, 150, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.benefits-badge .material-icons {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}


/* Декоративні круги для блоку 7 */

.register-circle-1 {
    width: 250px;
    height: 250px;
    background-color: rgba(0, 91, 150, 0.03);
    top: -100px;
    right: -100px;
}

.register-circle-2 {
    width: 150px;
    height: 150px;
    border: 20px solid rgba(130, 192, 255, 0.08);
    bottom: 10%;
    left: 5%;
}

.form-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 1.5rem;
    text-align: center;
}

@media (max-width: 991.98px) {
    .register-image {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .register-section {
        padding: 4rem 0;
    }
    .register-form-container {
        padding: 1.5rem;
    }
}


/* Стилі для блоку 8: Contactează-ne */

.contact-section {
    position: relative;
    padding: 5rem 0;
    background-color: white;
}

.contact-section h2 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: calc(1.5rem + 0.8vw);
}

.contact-heading {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.2rem;
}

.contact-heading .material-icons {
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

.contact-text {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: var(--primary);
    font-weight: 600;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 91, 150, 0.1);
}

.map-container iframe {
    width: 100%;
    border: 0;
}

.map-heading {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.2rem;
}

.map-heading .material-icons {
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

.map-text {
    margin-bottom: 2rem;
    line-height: 1.7;
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 4rem 0;
    }
    .map-container {
        margin-top: 1rem;
    }
}


/* Стилі для блоку 8: Misiunea noastră */

.mission-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--primary);
    color: white;
    overflow: hidden;
}

.mission-section h2 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    font-size: calc(1.5rem + 0.8vw);
    position: relative;
    color: white;
}

.mission-section h2::after {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.mission-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    z-index: 1;
}

.mission-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.mission-card p strong {
    color: var(--accent);
}

.mission-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.mission-card h3 .material-icons {
    margin-right: 0.75rem;
    color: var(--accent);
    font-size: 1.75rem;
}

.values-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.values-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

.values-list li:last-child {
    margin-bottom: 0;
}

.values-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent);
}


/* Декоративні круги для блоку 8 */

.mission-circle-1 {
    width: 280px;
    height: 280px;
    background-color: rgba(255, 255, 255, 0.03);
    bottom: -140px;
    right: -100px;
}

.mission-circle-2 {
    width: 180px;
    height: 180px;
    border: 25px solid rgba(255, 255, 255, 0.05);
    top: -90px;
    left: 15%;
}


/* Стилі для блоку 9: Cine suntem */

.about-us-section {
    position: relative;
    padding: 5rem 0;
    background-color: white;
    overflow: hidden;
}

.about-us-section h2 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: calc(1.5rem + 0.8vw);
    position: relative;
}

.about-us-section h2::after {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.about-us-content {
    margin-bottom: 2rem;
}

.about-us-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.about-us-images {
    display: flex;
    gap: 1.5rem;
}

.about-us-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 91, 150, 0.15);
    position: relative;
}

.about-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.about-us-image:hover img {
    transform: scale(1.05);
}


/* Декоративні круги для блоку 9 */

.about-us-circle-1 {
    width: 200px;
    height: 200px;
    background-color: rgba(0, 91, 150, 0.03);
    top: 20%;
    left: -100px;
}

.about-us-circle-2 {
    width: 120px;
    height: 120px;
    border: 15px solid rgba(130, 192, 255, 0.08);
    bottom: -60px;
    right: 15%;
}


/* Стилі для блоку 10: Energie-Devidende în cifre */

.stats-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--background);
    overflow: hidden;
}

.stats-section h2 {
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
    font-size: calc(1.5rem + 0.8vw);
    position: relative;
}

.stats-section h2::after {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.stats-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 91, 150, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 91, 150, 0.15);
}

.stats-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 91, 150, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.stats-card:hover .stats-icon {
    background-color: var(--primary);
}

.stats-icon .material-icons {
    font-size: 2.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.stats-card:hover .stats-icon .material-icons {
    color: white;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stats-text {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 0;
}


/* Декоративні круги для блоку 10 */

.stats-circle-1 {
    width: 250px;
    height: 250px;
    background-color: rgba(0, 91, 150, 0.03);
    bottom: -125px;
    left: -50px;
}

.stats-circle-2 {
    width: 150px;
    height: 150px;
    border: 20px solid rgba(130, 192, 255, 0.08);
    top: -75px;
    right: 10%;
}

@media (max-width: 991.98px) {
    .stats-card {
        margin-bottom: 1.5rem;
    }
    .about-us-images {
        margin-top: 2rem;
        flex-direction: column;
    }
    .about-us-image {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .mission-section,
    .about-us-section,
    .stats-section {
        padding: 4rem 0;
    }
    .mission-card {
        padding: 1.5rem;
    }
    .stats-icon {
        width: 60px;
        height: 60px;
    }
    .stats-icon .material-icons {
        font-size: 2rem;
    }
    .stats-number {
        font-size: 2rem;
    }
}


/* Стилі для блоку 11: Programul webinarului */

.program-section {
    position: relative;
    padding: 5rem 0;
    background-color: white;
    overflow: hidden;
}

.program-section h2 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: calc(1.5rem + 0.8vw);
    position: relative;
}

.program-section h2::after {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.program-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.program-timeline {
    position: relative;
    margin-top: 2rem;
}

.program-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 85px;
    width: 2px;
    background-color: rgba(0, 91, 150, 0.1);
}

.timeline-item {
    position: relative;
    padding-left: 120px;
    padding-bottom: 2rem;
    transition: all 0.3s ease;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item:hover {
    transform: translateX(5px);
}

.timeline-item .time-badge {
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.timeline-item .time-badge .material-icons {
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.timeline-item-content {
    background-color: rgba(130, 192, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
}

.timeline-item-content::before {
    content: "";
    position: absolute;
    top: 12px;
    left: -8px;
    width: 16px;
    height: 16px;
    background-color: rgba(130, 192, 255, 0.1);
    transform: rotate(45deg);
}

.timeline-item-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-item-content p {
    color: var(--text);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.program-images {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.program-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 91, 150, 0.15);
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.program-image:hover img {
    transform: scale(1.05);
}


/* Декоративні круги для блоку 11 */

.program-circle-1 {
    width: 200px;
    height: 200px;
    background-color: rgba(0, 91, 150, 0.03);
    top: -100px;
    right: 5%;
}

.program-circle-2 {
    width: 120px;
    height: 120px;
    border: 15px solid rgba(130, 192, 255, 0.08);
    bottom: 10%;
    left: -60px;
}


/* Стилі для блоку 12: Teme principale */

.themes-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--background);
    overflow: hidden;
}

.themes-section h2 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: calc(1.5rem + 0.8vw);
    position: relative;
}

.themes-section h2::after {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.themes-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 2.5rem;
}

.theme-card {
    background-color: white;
    border-radius: 12px;
    padding: 1.75rem;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 91, 150, 0.08);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 91, 150, 0.15);
}

.theme-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.theme-card h3::after {
    content: "";
    position: absolute;
    bottom: -0.35rem;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.theme-card:hover h3::after {
    width: 50%;
}

.theme-card p {
    color: var(--text);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.theme-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(0, 91, 150, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.theme-card:hover .theme-icon {
    background-color: var(--primary);
}

.theme-icon .material-icons {
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.theme-card:hover .theme-icon .material-icons {
    color: white;
}

.themes-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.themes-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 91, 150, 0.15);
}

.themes-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.themes-image:hover img {
    transform: scale(1.05);
}


/* Декоративні круги для блоку 12 */

.themes-circle-1 {
    width: 250px;
    height: 250px;
    background-color: rgba(0, 91, 150, 0.03);
    bottom: -125px;
    right: -50px;
}

.themes-circle-2 {
    width: 150px;
    height: 150px;
    border: 20px solid rgba(130, 192, 255, 0.08);
    top: 15%;
    left: -75px;
}

@media (max-width: 991.98px) {
    .program-timeline::before {
        left: 70px;
    }
    .timeline-item {
        padding-left: 100px;
    }
    .program-images,
    .themes-images {
        margin-top: 3rem;
        height: auto;
    }
    .program-image,
    .themes-image {
        height: 200px;
    }
    .theme-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .program-section,
    .themes-section {
        padding: 4rem 0;
    }
    .program-timeline::before {
        left: 30px;
    }
    .timeline-item {
        padding-left: 60px;
    }
    .timeline-item .time-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    .timeline-item-content {
        padding: 1.25rem;
    }
    .timeline-item-content h3 {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .timeline-item {
        padding-left: 0;
        padding-top: 40px;
    }
    .program-timeline::before {
        left: 12px;
    }
    .timeline-item .time-badge {
        top: 0;
        left: 0;
    }
    .timeline-item-content::before {
        display: none;
    }
}


/* Стилі для блоку 13: Întrebări frecvente */

.faq-section {
    position: relative;
    padding: 5rem 0;
    background-color: white;
    overflow: hidden;
}

.faq-section h2 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: calc(1.5rem + 0.8vw);
    position: relative;
}

.faq-section h2::after {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.faq-wrapper {
    margin-bottom: 3rem;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 91, 150, 0.1);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 91, 150, 0.1);
}

.faq-item:hover {
    transform: translateX(5px);
}

.faq-question {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.faq-question .question-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.faq-question .question-icon .material-icons {
    color: white;
    font-size: 0.9rem;
}

.faq-answer {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
    padding-left: 2.5rem;
}


/* Декоративні круги для блоку 13 */

.faq-circle-1 {
    width: 280px;
    height: 280px;
    background-color: rgba(0, 91, 150, 0.03);
    top: -140px;
    right: -140px;
}

.faq-circle-2 {
    width: 180px;
    height: 180px;
    border: 25px solid rgba(130, 192, 255, 0.08);
    bottom: -90px;
    left: 10%;
}

@media (max-width: 991.98px) {
    .faq-wrapper {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .faq-section {
        padding: 4rem 0;
    }
    .faq-item {
        padding: 1.25rem 0;
    }
    .faq-question {
        font-size: 1rem;
    }
    .faq-question .question-icon {
        width: 20px;
        height: 20px;
    }
    .faq-answer {
        padding-left: 2rem;
    }
}


/* Стилі для блоку 14: Ultimele noutăți */

.news-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--background);
    overflow: hidden;
}

.news-section h2 {
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
    font-size: calc(1.5rem + 0.8vw);
    position: relative;
}

.news-section h2::after {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.news-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 91, 150, 0.08);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 91, 150, 0.15);
}

.news-card:last-child {
    margin-bottom: 0;
}

.news-card-inner {
    display: flex;
    flex-direction: row;
}

.news-image {
    width: 35%;
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    width: 65%;
    padding: 1.75rem;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-text {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: auto;
}

.news-meta-item {
    display: flex;
    align-items: center;
}

.news-meta-item .material-icons {
    font-size: 1rem;
    margin-right: 0.35rem;
}


/* Декоративні круги для блоку 14 */

.news-circle-1 {
    width: 280px;
    height: 280px;
    background-color: rgba(0, 91, 150, 0.03);
    top: -140px;
    left: -140px;
}

.news-circle-2 {
    width: 180px;
    height: 180px;
    border: 25px solid rgba(130, 192, 255, 0.08);
    bottom: 10%;
    right: -90px;
}


/* Стилі для блоку 15: Analize de la experți */

.analysis-section {
    position: relative;
    padding: 5rem 0;
    background-color: white;
    overflow: hidden;
}

.analysis-section h2 {
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
    font-size: calc(1.5rem + 0.8vw);
    position: relative;
}

.analysis-section h2::after {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.analysis-card {
    background-color: rgba(130, 192, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.analysis-card:hover {
    transform: translateY(-5px);
    background-color: rgba(130, 192, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 91, 150, 0.1);
}

.analysis-card:last-child {
    margin-bottom: 0;
}

.analysis-icon {
    position: absolute;
    top: -20px;
    left: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 8px 15px rgba(0, 91, 150, 0.2);
    z-index: 1;
}

.analysis-icon .material-icons {
    font-size: 1.75rem;
    color: white;
}

.analysis-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-left: 3rem;
    line-height: 1.4;
}

.analysis-text {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}


/* Декоративні круги для блоку 15 */

.analysis-circle-1 {
    width: 250px;
    height: 250px;
    background-color: rgba(0, 91, 150, 0.03);
    bottom: -125px;
    right: -100px;
}

.analysis-circle-2 {
    width: 150px;
    height: 150px;
    border: 20px solid rgba(130, 192, 255, 0.08);
    top: 10%;
    left: -75px;
}

@media (max-width: 991.98px) {
    .news-card-inner {
        flex-direction: column;
    }
    .news-image {
        width: 100%;
        height: 200px;
    }
    .news-content {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .news-section,
    .analysis-section {
        padding: 4rem 0;
    }
    .news-image {
        height: 180px;
    }
    .news-title,
    .analysis-title {
        font-size: 1.1rem;
    }
    .analysis-icon {
        width: 50px;
        height: 50px;
        top: -15px;
    }
    .analysis-icon .material-icons {
        font-size: 1.5rem;
    }
    .analysis-title {
        padding-left: 2rem;
    }
    .analysis-card {
        padding: 1.5rem;
    }
}


/* Стилі для футера */

.footer {
    position: relative;
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, #003b63 100%);
    overflow: hidden;
    color: rgba(255, 255, 255, 0.9);
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 300px;
    opacity: 0.5;
    pointer-events: none;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-logo p {
    font-size: 1.5rem !important;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    position: relative;
    transition: all 0.3s ease;
}

.footer-logo p::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: all 0.3s ease;
}

.footer-logo:hover p::after {
    width: 100%;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.footer-contact p {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-contact p::before {
    content: "";
    font-family: "Material Icons";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 1.25rem;
}

.footer-contact p:nth-child(1)::before {
    content: "phone";
}

.footer-contact p:nth-child(2)::before {
    content: "email";
}

.footer-contact p:nth-child(3)::before {
    content: "location_on";
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    padding-left: 1rem;
}

.footer-links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-policy {
    margin-bottom: 1.5rem;
}

.footer-policy p {
    margin-bottom: 0.75rem;
}

.footer-policy a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.footer-policy a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: all 0.3s ease;
}

.footer-policy a:hover {
    color: var(--accent);
}

.footer-policy a:hover::after {
    width: 100%;
}

.footer-disclaimer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 0;
    line-height: 1.6;
}


/* Декоративні круги для футера */

.footer-circle-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.03);
    bottom: -150px;
    right: -150px;
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.footer-circle-2 {
    width: 200px;
    height: 200px;
    border: 25px solid rgba(255, 255, 255, 0.05);
    top: -100px;
    left: 10%;
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

@media (max-width: 991.98px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    .footer-section {
        margin-bottom: 2rem;
    }
}

.img-dn2 {
    display: block;
}

.img-dn {
    display: none;
}

@media (max-width: 767.98px) {
    .footer-logo p {
        font-size: 1.25rem !important;
    }
    .footer-contact p {
        font-size: 0.9rem;
    }
    .footer-disclaimer p {
        font-size: 0.8rem;
    }
    .img-dn {
        width: 100%;
        display: block;
        border-radius: 15px;
        margin-bottom: 15px;
    }
    .img-dn2 {
        display: none;
    }
}

.speakers-section .row {
    gap: 20px 0;
}

video {
    margin-bottom: 30px;
}

.row_24 p {
    margin-top: 30px;
}

.about-webinar2 {
    padding-bottom: 0;
}