/********** Template CSS **********/
:root {
    --primary: #57476f;
    --light: #edebff;
    --dark: #2b1c4d;
    --background-color: #fcfcfc;
    --accent-color: #57476f;
    --accent-light: #8a7a9d;
    --text-color: #333333;
    --light-text: #ffffff;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}
.container {
  /* width: 80%; */
  margin: 0 auto;
  padding: 20px;
}

.btn-primary {
  background-color: #57476f;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
}

.btn-primary:hover {
  background-color: #f5e488;
  transition: background-color 0.3s ease;
}

.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;
}

/*** Footer ***/

/* 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;
    @media (max-width: 600px) {
        width: 100%;
    }
}
.cookie-wrapper .show {
    right: 20px;
}

.hidden {
    display: none;
}
header i {
    color: #57476f;
    font-size: 32px;
    text-align: center;
}
header h2 {
    color: #57476f;
    font-weight: 500;
    text-align: center;
}
.data {
    text-align: center;
}
.data p a {
    color: #57476f;
    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 #57476f;
    color: #fff;
    padding: 8px 0;
    background: #57476f;
    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: #57476f;
}
#declineBtn {
    background-color: #fff;
    color: #57476f;
}
#declineBtn:hover {
    background-color: #57476f;
    color: #fff;
}


  /* new styles  */

/* Загальні стилі */
:root {
    --primary: #57476f;
    --light: #edebff;
    --dark: #2b1c4d;
    --background-color: #fcfcfc;
    --accent-color: #57476f;
    --accent-light: #8a7a9d;
    --text-color: #333333;
    --light-text: #ffffff;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Стилі для головного екрану */
.hero-section {
    background-color: #edebff;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: var(--dark);
    font-weight: 700;
}

.hero-subtitle {
    color: var(--accent-color);
}

.hero-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(43, 28, 77, 0.15);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-5px);
}

.hero-btn {
    background-color: var(--primary);
    color: var(--light-text);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: var(--dark);
    color: var(--light-text);
    box-shadow: 0 5px 15px rgba(43, 28, 77, 0.2);
}

.hero-btn .material-icons {
    font-size: 18px;
    margin-left: 8px;
    vertical-align: middle;
}

@media (max-width: 767.98px) {
    .hero-image-container {
        margin-top: 2rem;
    }
}

/* Стилі для блоку "De ce este important" */
.why-important-card {
    border-radius: 10px;
    background-color: var(--light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.why-important-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(43, 28, 77, 0.1);
}

.card-icon {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Стилі для блоку "Formate de curs" */
.course-format-section {
    background-color: var(--background-color);
}

.course-item {
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 5px 15px rgba(43, 28, 77, 0.05);
    border-bottom: 3px solid transparent;
}

.course-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(43, 28, 77, 0.1);
}

.course-icon {
    background-color: var(--light);
    color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
/* Стилі для блоку "Cui se adresează" */
.audience-section {
    background-color: var(--light);
}

.audience-item {
    background-color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(43, 28, 77, 0.05);
}

.audience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(43, 28, 77, 0.1);
}

.audience-icon {
    color: var(--primary);
    background-color: rgba(87, 71, 111, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Стилі для блоку "Blog și resurse" */
.resource-card {
    border-radius: 10px;
    background-color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(43, 28, 77, 0.05);
    border-top: 3px solid transparent;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(43, 28, 77, 0.1);
}

.resource-icon {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
/* Стилі для блоку CTA */
.cta-section {
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-btn {
    background-color: var(--light);
    color: var(--primary);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--light);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: transparent;
    color: var(--light);
}

.cta-btn .material-icons {
    font-size: 18px;
    margin-left: 8px;
    vertical-align: middle;
}

.cta-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Стилі для блоку відгуків */
.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(43, 28, 77, 0.05);
    position: relative;
    margin-top: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(43, 28, 77, 0.1);
}


.testimonial-author {
    font-style: italic;
    color: var(--accent-color);
}

.testimonials-btn {
    background-color: var(--primary);
    color: var(--light-text);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.testimonials-btn:hover {
    background-color: var(--dark);
    box-shadow: 0 5px 15px rgba(43, 28, 77, 0.2);
}

.testimonials-btn .material-icons {
    font-size: 18px;
    margin-left: 8px;
    vertical-align: middle;
}
/* Стилі для блоку "Misiunea proiectului" */
.mission-section {
    background-color: var(--light);
    border-left: 5px solid var(--primary);
}

.mission-quote {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.5rem;
}

/* Стилі для блоку "Echipa de experți" */
.expert-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(43, 28, 77, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.expert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(43, 28, 77, 0.1);
}

.expert-image-container {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.expert-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.expert-card:hover .expert-image {
    transform: scale(1.05);
}

.expert-info {
    padding: 1.5rem;
}

.expert-name {
    color: var(--dark);
    border-bottom: 2px solid var(--accent-light);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Стилі для блоку "Valorile noastre" */
.values-section {
    background-color: var(--background-color);
}

.value-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(43, 28, 77, 0.05);
}

.value-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(43, 28, 77, 0.1);
}

.value-icon {
    background-color: rgba(87, 71, 111, 0.1);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.value-title {
    color: var(--dark);
    margin-bottom: 0.5rem;
}
/* Стилі для блоку "Catalogul cursurilor" */
.course-card {
    border-radius: 10px;
    background-color: white;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(43, 28, 77, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(43, 28, 77, 0.1);
}

.course-image-container {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-image {
    transform: scale(1.05);
}

.course-level {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-content {
    padding: 1.5rem;
}

.course-duration {
    display: inline-block;
    background-color: rgba(87, 71, 111, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.course-title {
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.courses-btn {
    background-color: var(--primary);
    color: var(--light-text);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.courses-btn:hover {
    background-color: var(--dark);
    box-shadow: 0 5px 15px rgba(43, 28, 77, 0.2);
}

.courses-btn .material-icons {
    font-size: 18px;
    margin-left: 8px;
    vertical-align: middle;
}

/* Стилі для блоку "Metodologia de învățare" */
.methodology-section {
    background-color: var(--light);
}

.methodology-item {
    display: flex;
    align-items: flex-start;
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(43, 28, 77, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.methodology-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(43, 28, 77, 0.1);
}

.methodology-icon {
    background-color: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.methodology-title {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* Стилі для блоку "Analiza pieței" */
.analysis-section {
    background-color: var(--background-color);
}

.analysis-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(43, 28, 77, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid transparent;
}

.analysis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(43, 28, 77, 0.1);
    border-top: 4px solid var(--primary);
}

.analysis-title {
    color: var(--dark);
    font-weight: 700;
    border-bottom: 1px solid rgba(87, 71, 111, 0.2);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.analysis-meta {
    display: inline-block;
    background-color: rgba(87, 71, 111, 0.1);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.analysis-read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.analysis-read-more:hover {
    color: var(--dark);
}

.analysis-read-more .material-icons {
    font-size: 16px;
    margin-left: 5px;
}

/* Стилі для блоку "Știri" */
.news-section {
    background-color: var(--light);
}

.news-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(43, 28, 77, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(43, 28, 77, 0.1);
}

.news-image-container {
    height: 200px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.news-title {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.news-read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.news-read-more:hover {
    color: var(--dark);
}

.news-read-more .material-icons {
    font-size: 16px;
    margin-left: 5px;
}
/* Стилі для блоку "Experiența participanților" */
.testimonials-carousel-section {
    background-color: var(--background-color);
    padding: 5rem 0;
}

.testimonial-carousel-item {
    background-color: white;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(43, 28, 77, 0.08);
    margin: 1rem;
    height: 100%;
    border-left: 4px solid var(--primary);
    position: relative;
}

.testimonial-quote {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--accent-light);
    opacity: 0.5;
    line-height: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.testimonial-position {
    font-style: italic;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars .material-icons {
    font-size: 1.2rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -1.5rem;
}

.carousel-control-next {
    right: -1.5rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.carousel-indicators {
    bottom: -3rem;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

@media (max-width: 991.98px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}
/* Стилі для блоків контактів */
.contact-section {
    background-color: var(--light);
}

.contact-info-card {
    background-color: white;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(43, 28, 77, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(43, 28, 77, 0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    background-color: rgba(87, 71, 111, 0.1);
    color: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background-color: var(--primary);
    color: white;
}

.contact-text {
    font-size: 1.1rem;
}

.contact-label {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

/* Стилі для форми */
.contact-form-card {
    background-color: white;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(43, 28, 77, 0.05);
    height: 100%;
}

.form-floating {
    margin-bottom: 1.5rem;
}

.form-floating label {
    color: #777;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(87, 71, 111, 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);
    box-shadow: 0 5px 15px rgba(43, 28, 77, 0.2);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    background-color: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--dark);
    transform: translateY(-3px);
}

/* Стилі для футера */
.footer {
    background-color: var(--dark) !important;
    color: var(--light-text);
    padding-top: 4rem;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--light-text);
    text-decoration: none;
    display: inline-block;
    position: relative;
    margin-bottom: 1.5rem;
}

.footer-logo::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background-color: var(--accent-light);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-icon {
    color: var(--accent-light);
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.footer-contact-text {
    font-size: 0.95rem;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    color: var(--light-text);
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--accent-light);
}

.footer-link {
    color: var(--light);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-light);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-light);
    transform: translateX(5px);
}

.footer-link:hover::before {
    background-color: var(--light);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    margin-top: 3rem;
}

.footer-bottom-text {
    font-size: 0.9rem;
    margin-bottom: 0;
}