/********** Template CSS **********/
:root {
    --primary: #4d4d4d;
    --light: #fffaeb;
    --dark: #4f4f4f;
    --background-color: #ffffff;
    --primary-color: #4d4d4d;
    --secondary-color: #a3a3a3;
    --text-color: #333333;
    --section-padding: 5rem 0;
    --footer-bg: #272727;
    --footer-text: #ffffff;
    --transition: all 0.3s ease;
}
.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}
.container {
  /* width: 80%; */
  margin: 0 auto;
  padding: 20px;
}


.subtitle {
  font-size: 24px;
  margin: 10px 0;
}

.btn-primary {
  background-color: #4d4d4d;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
}


.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 ***/


/* 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%;
    }
}


.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;
    @media (max-width: 600px) {
        width: 100%;
    }
}
.cookie-wrapper .show {
    right: 20px;
}

.hidden {
    display: none;
}
header i {
    color: #4d4d4d;
    font-size: 32px;
    text-align: center;
}
header h2 {
    color: #4d4d4d;
    font-weight: 500;
    text-align: center;
}
.data {
    text-align: center;
}
.data p a {
    color: #4d4d4d;
    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 #4d4d4d;
    color: #fff;
    padding: 8px 0;
    background: #4d4d4d;
    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: #4d4d4d;
}
#declineBtn {
    background-color: #fff;
    color: #4d4d4d;
}
#declineBtn:hover {
    background-color: #4d4d4d;
    color: #fff;
}
/* Footer Style */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 4rem 0 2rem;
}

.footer-logo {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    position: relative;
    display: inline-block;
    text-align: start;
}


.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.footer-nav-link {
    display: block;
    color: var(--footer-text);
    padding: 0.5rem 0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-nav-link:hover {
    color: var(--secondary-color);
    padding-left: 0.5rem;
}

.footer-nav-link:hover::before {
    width: 2rem;
}

.footer-policy-link {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-policy-link:hover {
    color: var(--secondary-color);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}


/* Стилі для About Hero Section */
.about-hero-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
}

.about-hero-container {
    position: relative;
    z-index: 1;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}


.about-hero-breadcrumb {
    margin-bottom: 3rem;
}

.about-hero-breadcrumb .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.about-hero-breadcrumb .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.about-hero-breadcrumb .breadcrumb-item.active {
    color: white;
}

.about-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* Медіа запити для адаптивності */
@media (max-width: 767.98px) {
    .about-hero-title {
        font-size: 2.25rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .about-hero-title {
        font-size: 1.75rem;
    }
    
    .about-hero-section {
        padding: 4rem 0;
    }
}

 /* new styles  */
/* Загальні стилі */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(77, 77, 77, 0.7), rgba(77, 77, 77, 0.4));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.hero-description {
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.btn-primary-custom {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;
}

.btn-primary-custom .material-icons {
    vertical-align: middle;
    margin-left: 0.5rem;
    font-size: 1.25rem;
}

/* Медіа запити для адаптивності */
@media (max-width: 767.98px) {
    .hero-content {
        margin: 0 15px;
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-content {
        padding: 1.25rem;
    }
}
/* Стилі для блоку Aspecte juridice */
.legal-aspects {
    padding: var(--section-padding);
    background-color: var(--background-color);
}

.legal-title {
    position: relative;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}
.legal-subtitle {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.legal-content {
    line-height: 1.8;
}

.legal-content p {
    margin-bottom: 1.5rem;
}

/* Стилі для блоку Privire generală */
.overview-section {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.overview-title {
    position: relative;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}


.overview-subtitle {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.category-title {
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.category-title .material-icons {
    margin-right: 0.5rem;
    color: var(--primary);
}

.overview-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.overview-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.overview-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
}

.highlight {
    font-weight: 700;
    color: var(--primary);
}

.overview-image {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
    overflow: hidden;
}

.overview-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.overview-image:hover img {
    transform: scale(1.03);
}
/* Стилі для блоку Oportunități strategice */
.opportunities-section {
    position: relative;
    padding: var(--section-padding);
    color: white;
}

.opportunities-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.opportunities-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.opportunities-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(77, 77, 77, 0.8));
    z-index: -1;
}

.opportunities-title {
    position: relative;
    margin-bottom: 2rem;
    color: white;
    font-weight: 600;
}


.opportunities-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.opportunity-category {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.opportunity-category:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.opportunity-category-title {
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: #fff;
}

.opportunity-category-title .material-icons {
    margin-right: 0.5rem;
}

.opportunity-list {
    list-style: none;
    padding-left: 0;
}

.opportunity-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.opportunity-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: white;
}

.opportunity-highlight {
    font-weight: 700;
    color: #fff;
}

/* Стилі для блоку Riscuri */
.risks-section {
    padding: var(--section-padding);
    background-color: var(--background-color);
}

.risks-title {
    position: relative;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}


.risks-subtitle {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.risk-category {
    border-left: 3px solid var(--primary);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.risk-category-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.risk-category-title .material-icons {
    margin-right: 0.5rem;
    color: var(--primary);
}

.risk-list {
    list-style: none;
    padding-left: 0;
}

.risk-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.risk-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
}

.risk-highlight {
    font-weight: 700;
    color: var(--primary);
}
/* Стилі для блоку FAQ */
.faq-section {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.faq-title {
    position: relative;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

.faq-subtitle {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
    text-align: center;
}

.faq-item {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
}

.faq-question-icon {
    margin-right: 0.75rem;
    font-size: 1.5rem;
    color: white;
}

.faq-answer {
    padding: 1.5rem;
    line-height: 1.7;
}

.faq-answer-icon {
    margin-right: 0.75rem;
    color: var(--primary);
    font-size: 1.25rem;
}

/* Стилі для блоку форми контакту */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--background-color);
}

.contact-title {
    position: relative;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-subtitle {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.form-floating {
    margin-bottom: 1.5rem;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(77, 77, 77, 0.25);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark);
    border-color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wow {
    visibility: visible;
}
/* Стилі для блоку Misiunea și viziunea */
.mission-section {
    padding: var(--section-padding);
    background-color: var(--background-color);
}

.mission-title {
    position: relative;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}


.mission-subtitle {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.mission-content {
    line-height: 1.8;
}

.mission-content p {
    margin-bottom: 1.5rem;
}

.mission-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mission-image:hover img {
    transform: scale(1.03);
}

/* Стилі для блоку Echipa și experții noștri */
.team-section {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.team-title {
    position: relative;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}


.team-subtitle {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.team-content {
    line-height: 1.8;
}

.team-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.team-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.team-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
}

.sources-list {
    list-style: none;
    padding-left: 0;
}

.sources-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.sources-list li::before {
    content: "\e3c9";
    font-family: 'Material Icons';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-size: 1.25rem;
}

.team-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-image:hover img {
    transform: scale(1.03);
}

.team-note {
    font-style: italic;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
/* Стилі для блоку Ultimele articole */
.articles-section {
    padding: var(--section-padding);
    background-color: var(--background-color);
}

.articles-title {
    position: relative;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}


.articles-subtitle {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 2rem;
    font-style: italic;
}

.article-card {
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.article-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.article-author {
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
}

.article-author .material-icons,
.article-date .material-icons {
    font-size: 1rem;
    margin-right: 0.25rem;
}

.article-content {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 0.75rem;
}

.article-link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.article-link:hover {
    color: var(--dark);
}

.article-link .material-icons {
    font-size: 1rem;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.article-link:hover .material-icons {
    transform: translateX(3px);
}

/* Стилі для блоку Știri din domeniu */
.news-section {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.news-title {
    position: relative;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

.news-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
}

.news-item-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.15rem;
}

.news-text {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--dark);
}

.news-link .material-icons {
    font-size: 1rem;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.news-link:hover .material-icons {
    transform: translateX(3px);
}

/* Стилі для блоку Principalii pași */
.steps-section {
    padding: var(--section-padding);
    background-color: var(--background-color);
}

.steps-title {
    position: relative;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}


.steps-subtitle {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 2.5rem;
    font-style: italic;
    text-align: center;
}

.steps-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--primary);
    transform: translateX(-50%);
}

.step-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.step-content {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 5rem;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
}

.step-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 1rem;
}

.step-text {
    line-height: 1.7;
}

@media (max-width: 767.98px) {
    .steps-container::before {
        left: 40px;
    }
    
    .step-number {
        left: 40px;
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .step-item {
        padding-left: 70px;
        padding-right: 0;
    }
}

/* Стилі для блоку Instituții și platforme */
.institutions-section {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.institutions-title {
    position: relative;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}


.institutions-subtitle {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 2.5rem;
    font-style: italic;
    text-align: center;
}

.institution-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.institution-card:hover {
    transform: translateY(-5px);
}

.institution-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.institution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.institution-card:hover .institution-image img {
    transform: scale(1.05);
}

.institution-content {
    padding: 1.5rem;
}

.institution-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.institution-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.15rem;
}

.institution-text {
    line-height: 1.6;
}

.institution-link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.institution-link:hover {
    color: var(--dark);
}

.institution-link .material-icons {
    font-size: 1rem;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.institution-link:hover .material-icons {
    transform: translateX(3px);
}

/* Стилі для блоку Informații de contact */
.contact-info-section {
    padding: var(--section-padding);
    background-color: var(--background-color);
}

.contact-info-title {
    position: relative;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}



.contact-info-description {
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-info-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-info-icon .material-icons {
    font-size: 1.5rem;
}

.contact-info-text {
    flex-grow: 1;
}

.contact-info-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.contact-info-value {
    line-height: 1.6;
}

.contact-info-value a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-value a:hover {
    color: var(--dark);
}

/* Стилі для блоку Formular de contact */
.contact-form-section {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.contact-form-title {
    position: relative;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}


.contact-form-description {
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-form-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    transition: transform 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
}

/* Використовуємо стилі форми з попередніх блоків */