



/* Reset */
* {
  box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #111;
}




#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 9999;
  background: #0d132d; 
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: opacity 0.8s ease;
}

#preloader video {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  pointer-events: none; 
}








/* ################################  Scroll to page header button STYLING  ###################### */

.page-up-btn {
  position: fixed;
  bottom: 20px;
  left: 90%;
  transform: translateX(-50%);
  z-index: 1500;
  display:none;
}

.page-up-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid white;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease,
              background-color 0.3s ease,
              box-shadow 0.3s ease;
}

.page-up-btn a:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  border: 1px solid white;
}

.page-up-btn a:active {
  transform: translateY(-2px);
}

.page-up-btn i {
  pointer-events: none;
}



@media (max-width: 700px){
  .page-up-btn{
    display: block;
  }
}







/* ################################  HEADER  STYLIING  ###################### */


header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
  background-color: white;
  border-bottom: 2px solid #000000;
  position: relative;
  flex-wrap: wrap; 
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 1000; 
  background-color: #ffffff; 
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.logo img {
  height: 80px;
  width: auto;
}

.logo span {
  font-family: 'Italianno', cursive;
  font-size: 2.1rem;
  font-weight: bold;
  color: #000;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Horizontal menu styling */
.horizontal-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.horizontal-menu ul li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.7s ease;
}

.horizontal-menu ul li a:hover {
  color: #ffffff;
  background-color: rgb(0, 0, 0);
  border-radius: 5px;
  padding: 10px 10px;
}











/* Languages menu styling */

/* Header language toggle button */


.header-lang-toggle {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #f5f5f5;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  margin-left: 15px;
}

.header-lang-toggle:hover {
  background: #111;
}

.header-lang-toggle i {
  color: #111;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.header-lang-toggle:hover i {
  color: #fff;
}

/* Dropdown menu exactly like main dropdown */
.header-lang-options {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;       /* hidden by default */
  flex-direction: column;
  background: white;
  border: 1px solid #000;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(13, 19, 45, 0.1);
  width: 220px;
  z-index: 1000;
  user-select: none;
  padding: 15px 0;
}

.header-lang-options ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-lang-options ul li {
  padding: 10px 20px;
}

.header-lang-options .lang-btn {
  position: relative;
  padding: 10px 20px;
  width: 100%;
  color: rgb(0, 0, 0);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
  font-size: 14px;
  font-family: arial;
  font-weight: 550;
}

.header-lang-options .lang-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: rgb(13, 19, 45);
  opacity: 0.9;
  transition: width 0.3s ease;
  z-index: -1;
  border-radius: 4px;
}

.header-lang-options .lang-btn:hover::before,
.header-lang-options .lang-btn:focus::before {
  width: 100%;
}

.header-lang-options .lang-btn:hover,
.header-lang-options .lang-btn:focus {
  color: white;
}

/* Show dropdown when active */
.header-lang-toggle.active .header-lang-options {
  display: flex;
  flex-direction: column;
}



/* ==================== Header Language Dropdown for Small Screens ==================== */


@media (max-width: 768px) {
  .header-lang-options {
    position: absolute; 
    top: 100%;          
    left: 0;
    width: 100%;        
    border: none;
    box-shadow: none;
    padding: 10px 0;
    flex-direction: column;
    background: white;
    display: none;      
    z-index: 1000;
  }

  .header-lang-options ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header-lang-options ul li {
    padding: 12px 30px; 
  }

  /* Show dropdown when toggle active */
  .header-lang-toggle.active .header-lang-options {
    display: flex;
  }
}











/* Hamburger icon styling */
.nav-icon {
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
}

.nav-icon div {
  height: 4px;
  background-color: black;
  border-radius: 2px;
}

/* Dropdown menu - hidden by default */
.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 50px;
  background: white;
  border: 1px solid #000000;
  box-shadow: 0 4px 8px rgba(13, 19, 45, 0.1);
  width: 220px;
  padding: 15px 0;
  display: none;
  flex-direction: column;
  z-index: 1000;
  border-radius: 5px;
  user-select: none;
}

.dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-menu ul li {
  padding: 10px 20px;
}

.dropdown-menu ul li a {
  position: relative;
  padding: 10px 20px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
  overflow: hidden;
}

/* Smooth text color change on hover */
.dropdown-menu ul li a:hover,
.dropdown-menu ul li a:focus {
  color: white;
  outline: none;
}

/* Creating a sliding highlight bar */
.dropdown-menu ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: rgb(13, 19, 45);
  opacity: 0.9;
  transition: width 0.3s ease;
  z-index: -1;
  border-radius: 4px;
}

/* Animating highlight bar on hover/focus */
.dropdown-menu ul li a:hover::before,
.dropdown-menu ul li a:focus::before {
  width: 100%;
}

/* Showing dropdown when active */
.dropdown-menu.active {
  display: flex;
}




/* =========================================================================== */
/* =========================================================================== */



/* Responsive Design adjustments */

@media (max-width: 768px) {
  .horizontal-menu {
    display: none;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    border: none;
    box-shadow: none;
    padding: 10px 0;
  }

  .dropdown-menu ul li {
    padding: 8px 30px;
  }

  header {
    padding: 15px 30px;
  }
}

@media (max-width: 768px) {
  .logo span {
    display: none;
  }
}










/* ################################  PAGE HEADER    STYILING  ###################### */




.blog-header {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #0d132d;
    color: #fff;
    font-family: 'Arial', sans-serif;
    border-bottom: 3px solid #fff;
}

.blog-header h3 {
    font-size: 2rem;
    margin: 0;
    font-weight: bold;
    letter-spacing: 1px;
}

.blog-header h3 u {
    text-decoration-color: #fff;
    text-decoration-thickness: 3px;
}

.blog-header-navigation{
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  gap:2rem;
  justify-content: center;
  align-items: center;
}

.blog-header-navigation-btn{
  text-decoration: none;
  color:rgb(0, 0, 0);
  padding: 6px 25px;
  border-radius: 24px;
  border: 1px solid rgb(255, 255, 255);
  background-color: white;
  transition: all 0.3s ease-in;
}

.blog-header-navigation-btn:hover{
  transform: translateY(-3px);
  color:rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
}









/* ################################  PAGE CONTENT WRAPPER (+BACKGROUND)  STYILING  ###################### */


.blog-overview {
    background: url('../../../assets/graphics/Bckground-about\ 2.png') no-repeat center center / cover;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: self-start;
    gap: 3rem;
    flex-wrap: wrap;
    font-family: 'Be Vietnam Pro', sans-serif;
    min-height: 935px;
    vertical-align: auto;
}




/* ################################  JOINT AND GENERAL STYLING  ###################### */

.blog-content-wrapper{
  display: block;
  max-width: 1600px;
  width: 100%;
  background-color: rgb(255, 255, 255);
  padding-bottom: 30px;
}


.section-header{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 60px 50px;
}

.section-title{
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 30px;
  font-style: italic;
  color:rgb(0, 0, 0);
  font-weight: 600;
  letter-spacing: 6px;
  position: relative;
}

.section-title::after{
  content:"";
  background-color: rgb(0, 0, 0);
  height:3px;
  width:60%;
  top:-20px;
  left:10px;
  position: absolute;
}

.section-button{
  text-decoration: none;
  color:rgb(255, 255, 255);
  background-color: #000000;
  padding:10px 14px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 12px;
  transition: all 0.3s ease-in;
  box-shadow: 0 3px 10px rgb(0, 0, 0);
}

.section-button:hover{
  color:rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(0, 0, 0);
  transform: translateY(-3px);
}


.section-default-layout{
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
  margin: 40px 50px;
  gap:3rem;
}


.news-section, .articles-section{
  display:block;
  scroll-margin-top: 250px;
}




/* ################################  SECTION  DEFAULT VIEW  STYILING  ###################### */


.entity{
  background-color: rgb(255, 255, 255);
  border: 1px solid black;
  padding:15px 10px;
  transition: all 0.3s ease-in;
}

.entity a{
  text-decoration: none;
}

.entity:hover{
  background-color: white;
  transform:scale(1.03);
  box-shadow: 0 0 8px black;

  .entity-button{
    color:rgb(255, 255, 255);
    background-color:#0d132d;
    border: 0px solid rgb(255, 255, 255);
  }
}

.entity-image{
  max-width: fit-content;
  width:300px;
  height: auto;
  border: 2px solid rgb(31, 29, 119);
}

.entity-info{
  text-align: center;
  display: block;
}

.entity-title{
  font-size: 24x;
  font-weight: 600;
  color: rgb(13, 19, 45);
  max-width: 300px;
  word-wrap: break-word;
}

.entity-actions{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content:space-between;
  align-items: center;
  margin-top: 30px;
}


.entity-tag{
  color:rgb(0, 0, 0);
  background-color: #ffffff;
  border: 1px solid rgb(0, 0, 0);
  padding:2px 8px;
  border-radius: 5px;
  position:relative;
}

.entity-tag::before {
  content: "\f05a"; 
  color: #233069;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transform: rotate(deg);
  position: absolute;
  font-size: 16px;
  left: -10px;
  top: -9px;
}

.entity-button{
  text-decoration: none;
  color:rgb(13, 19, 45);
  background-color: #ffffff;
  border: 1px solid rgb(0, 0, 0);

  padding: 3px 7px;
  text-wrap: break-word;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease-in;
}

.entity-button:hover{
  color:rgb(255, 255, 255);
  background-color:#0d132d;
  border: 0px solid rgb(255, 255, 255);
}




/* ################################  SECTION  LIST ("See All") VIEW  STYILING  ###################### */



/* Entity Button - same styling as in default view (see above)*/
/* Entity TAG - same styling as in default view (see above)*/


.section-list-layout{
  display: none; /*default state*/
  margin: 50px;
}

.list-layout-entity{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding:15px 25px;
  margin-top: 30px;
  background-color: white;
  border: 1px solid black;
  transition: all 0.3s ease-in;
}

.list-layout-entity:hover{
  box-shadow: 0 0px 10px rgb(0, 0, 0);
  transform: translateY(-3px);

  .entity-button{
    color:rgb(255, 255, 255);
    background-color:#0d132d;
    border: 0px solid rgb(255, 255, 255);
  }
}

.entity-list-layout-image{
  max-width: fit-content;
  width:250px;
  height: auto;
}



/* ################################  DEFAULT VIEW SETUP + "FOCUSED" STATE STYLINGS   ###################### */



.is-focused .section-default-layout {
  display: none;
}

.is-focused .section-list-layout {
  display: block;
}


/* optional: hide other section entirely when one is focused */
body.section-focused .news-section,
body.section-focused .articles-section {
  display: none;
}

body.section-focused .is-active {
  display: block !important;
}






/* ################################  RESPONSIVENESS - ADJUSTMENTS  ###################### */


/* DEFAULT VIEW */

@media (max-width: 600px){
  .section-header{
    display: block;
    margin-top:150px;
  }
  .section-title, .section-button{
    margin-bottom: 50px;
  }
}

@media (max-width: 487px){
  .entity-image, .entity-title{
    max-width:300px;
  }
}

@media (max-width: 440px){
  .entity-image, .entity-title{
    max-width:200px;
  }
  .section-title{
    font-size: 24px;
  }
}

@media (max-width: 390px){
  .entity-image, .entity-title{
    max-width:190px;
  }
  .section-title{
    font-size: 20px;
  }

  .entity-actions{
    display:flex;
    flex-direction: column;
  }
}



/* LIST VIEW */


@media (max-width: 975px){

  body:not(.section-focused) .section-list-layout {
    display: none;
  }

  body:not(.section-focused) .section-default-layout {
    display: flex;
  }

  body.section-focused .section-list-layout {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }

  body.section-focused .list-layout-entity {
    display: block;
    width: fit-content;
  }

  .list-layout-entity{
    display: block;
    width:fit-content;
  }
  .list-layout-entity .entity-tag{
    width:fit-content ;
  }
  .list-layout-entity .entity-title{
    margin-top: 25px;
    margin-bottom: 40px;
    max-width: 250px;
  }

  .list-layout-entity .entity-tag{
    margin-bottom: 20px; 
  }

}


@media (max-width: 465px){

  .entity-list-layout-image{
    max-width:200px ;
  }
  .list-layout-entity .entity-title{
    max-width: 200px;
  }

}


@media (max-width: 410px){

  .entity-list-layout-image{
    max-width:150px ;
  }
  .list-layout-entity .entity-title{
    max-width: 150px;
  }

}









/* ################################  NEWSLETTER SECTION   STYLING  ###################### */



.newsletter-section{
  background-color: #0d132d;
  margin: 10rem 3rem; 
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  font-feature-settings: "ss01" 1, "ss02" 1;
}

.newsletter-section::before{
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.newsletter-section a, .agreement{
  color:#f0f0f0;
}

.newsletter-section-title{
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 3px;
  position:relative;
  margin-bottom: 30px;
  margin-top: 35px;
}

.newsletter-section-title::after{
  content: "";
  height:2px;
  width: 80%;
  position: absolute;
  top:55px;
  left: 10%;
  background-color: white;
}


.newsletter-section-subtitle{
   font-size: 18px;
  font-style: italic;
  margin-top: -10px;
  max-width: 300px;
}


.newsletter-section-content{
  display: flex;
  flex-direction: column;
  gap:1rem;
  color:#f0f0f0;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
}

.newsletter-sections{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
  width: min(1200px, 95%);
  margin: 2rem auto;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: none;
}

.newsletter-section-left{
  flex: 1;
  padding: 2rem;
  background: linear-gradient(135deg, #0d132d 0%, #141e44 40%, #0a0f22 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  line-height: 2;
  text-align: left;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.newsletter-form{
  width: 100%;
  max-width: 450px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.newsletter-form-description{
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  text-align: center;
  max-width: 320px;
}

.newsletter-section-left-header{
 position: relative;
 margin-bottom: 30px;
}

.newsletter-section-left-header::after{
  content: "";
  height: 2px;
  width: 60%;
  position: absolute;
  top:38px;
  left: 0;
  background-color: white;
}

.newsletter-section-left span{
  padding-right: 6px;
}


.newsletter-section-right{
  flex: 1;
  padding: 2rem;
  border: 1px solid rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  color: #000000;
}


.newsletter-section-right label{
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 6px;
  display: inline-block;
}

.newsletter-section-right input[type="email"]{
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 1rem;
  border: 1px solid #000;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: all 0.2s ease;
}

.newsletter-section-right input[type="email"]:focus{
  border-color: #141e44;
  box-shadow: 0 0 0 3px rgba(20,30,68,0.2);
}

.agreement{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.3;
  max-width: 350px;
  margin: 1rem 0;
  color: #0d132d;
  padding: 10px 0;
}

.agreement-text{
  font-size: 15px !important;
  font-weight: 100 !important;
}

.agreement-text a{
  color: inherit;
}

.agreement input{
  margin-top: 3px;
}

.newsletter-section-right button{
  width: 100%;
  padding: 14px 20px;

  background: linear-gradient(
      135deg,
      #0d132d 0%,
      #141e44 40%,
      #0a0f22 100%
  );

  color: white;

  border: none;
  border-radius: 8px;

  font-size: 15px;
  font-weight: 700;

  margin-bottom: 25px;

  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 10px 25px rgba(13,19,45,0.25);
}


.newsletter-section-right button:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(13,19,45,0.35);
}

.unsubscribe-notice{
  display: block;
  margin-bottom: -25px !important;
  font-style: italic;
  font-size: 13px !important;
  color: #000000;
  text-align: center;
  font-weight: 100 !important;
}

.newsletter-form-description{
  margin-bottom: 14px;
}

.feature-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.feature-item:hover{
  background: rgba(255,255,255,0.05);
}


.feature-item span.fa{
  color: #7dd3fc;
  font-size: 14px;
}

.newsletter-section-right button:active{
  transform: translateY(0px);
  box-shadow: 0 6px 15px rgba(13,19,45,0.25);
}

.unsubscribe-notice{
  color: white;
  text-align: left;
  margin-top: 30px;
  padding: 0 15px;
}



/* ################################  RESPONSIVE DESIGN ADJUSTMENTS ###################### */


@media(max-width: 914px){
  .newsletter-sections{
    border-radius: 16px;
    box-shadow: none;
    background: transparent;
    flex-direction: column;
  }

  .newsletter-section-left{
    background: transparent;
    padding: 1.5rem 1rem;
  
  }

  .newsletter-section-left-header{
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 12px;
  }

  .newsletter-section-left-header::after{
    left: 50%;
    transform: translateX(-50%);
    width: 25%;
  }

  .feature-item{
    padding: 0;
    background: none;
  }

  .feature-item span.fa{
    font-size: 12px;
  }

  .newsletter-section-right{
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    order: -1;
  }

  .newsletter-section{
    margin: 4rem 1rem;
  }

  .newsletter-section-content{
    gap: 0.5rem;
  }

  .agreement{
    margin: 1.25rem 0;
  }

  .newsletter-section-right button{
    margin-top: 8px;
  }

  .newsletter-section-subtitle,
  .newsletter-form-description{
    max-width: 32ch;
    margin-left: auto;
    margin-right: auto;
  }

  .newsletter-section-title{
    margin-bottom: 10px;
  }

  .newsletter-section-subtitle{
    margin-top: 0;
  }

  .unsubscribe-notice{
    text-align: center;
  }

    
}

@media(max-width: 815px){
  .newsletter-section-right, .newsletter-section-left{
    text-align: left;
    align-items: flex-start;
  }

  .newsletter-section-left-header::after{
    left: 50%;
    width: 100%;
  }

  .newsletter-section-title, .newsletter-section-subtitle{
    align-self: flex-start;
    text-align: left;
    margin-left: 20px;;
  }

  .newsletter-section-title{
    letter-spacing: 2px;
  }

  .newsletter-section-title::after{
    left: 0px;
  }

  .newsletter-section-right input[type="email"]{
    max-width: 80%;
  }
  
}



@media(max-width: 765px){
  .newsletter-section-title::after,
  .newsletter-section-left-header::after{
    display: none;
  }
  
}


@media(max-width: 665px){

  .newsletter-section-title{
    margin-top: 60px;
    letter-spacing: normal;
  }

}

@media(max-width: 510px){

  .newsletter-section-title{
    font-size: 24px;
    margin-top: 70px;
  }

  .newsletter-section-subtitle{
    font-size: 18px;
  }

  .newsletter-section-title::after, .newsletter-section-left-header::after{
    height: 1px;
  }

}




@media(max-width: 475px){

  .newsletter-section{
    margin: 6rem 1rem 20px;
  }

  .newsletter-section::before{
    font-size: 10px;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
  }

  .newsletter-sections{
    width: 95%;
    gap: 0;
  }

  .newsletter-section-content{
    gap: 0.5rem;
  }

  .newsletter-section-title{
    font-size: 22px;
    margin-top: 50px;
    margin-bottom: 15px;
    letter-spacing: normal;
    width: calc(100% - 30px);
  }

  .newsletter-section-subtitle{
    font-size: 15px;
    max-width: 100%;
    width: calc(100% - 30px);
    margin-top: 0;
    margin-right: 0;
  }


  .newsletter-section-left,
  .newsletter-section-right{
    padding: 20px 15px;
  }

  .newsletter-section-left{
    font-size: 15px;
    line-height: 1.7;
  }

  .newsletter-section-left-header{
    margin-bottom: 15px;
  }

  .newsletter-section-right{
    align-items: stretch;
  }

  .newsletter-section-right label{
    font-size: 18px;
  }

  .newsletter-section-right input[type="email"]{
    width: 100%;
    max-width: none;
  }

  .agreement{
    max-width: 100%;
    font-size: 14px;
  }

  .agreement-text{
    font-size: 13px !important;
  }

  .newsletter-section-right button{
    width: 100%;
    margin-bottom: 20px;
  }

  .unsubscribe-notice{
    font-size: 12px !important;
    margin-bottom: 0 !important;
  }
}

















/* ################################    FORM ALERT BOX      STYLING  ###################### */


.form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;

    opacity: 0;
    transition: opacity 0.2s ease;
}

.form-overlay.visible {
    opacity: 1;
}

.form-overlay-box {
    width: min(420px, 92vw);

    background: rgba(13, 19, 45, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;

    padding: 22px 22px 18px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(13, 19, 45, 0.4);

    backdrop-filter: blur(12px);

    transform: translateY(10px) scale(0.98);
    transition: transform 0.2s ease, box-shadow 0.2s ease;

    text-align: center;
}

.form-overlay.visible .form-overlay-box {
    transform: translateY(0) scale(1);
}

/* TITLE */
.form-overlay-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: #ffffff;
    margin-bottom: 12px;

    opacity: 0.9;
}

/* BODY TEXT */
.form-overlay-text {
    font-size: 14px;
    line-height: 1.55;

    color: rgba(255, 255, 255, 0.92);

    padding: 0 4px;
}

/* HINT */
.form-overlay-hint {
    margin-top: 16px;

    font-size: 11px;
    letter-spacing: 0.08em;

    color: rgba(255, 255, 255, 0.55);
}

.form-overlay-box::before {
    content: "";
    display: block;
    height: 2px;
    width: 42px;
    margin: 0 auto 14px auto;

    background: rgb(13, 19, 45);
    opacity: 0.9;
    border-radius: 2px;
}















/* ################################  PAGE FOOTER     STYLING  ###################### */


footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 5%; 
  background-color: #f8f8f8;
  color: rgb(0, 0, 0);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 1rem;
  border-top: 2px solid black;
  flex-wrap: wrap; 
}

.footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Contact links styling */
.left-contact, .right-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 4px;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
  cursor: pointer;
  flex-shrink: 0; 
}

/* Hover effects */
.left-contact:hover, .right-contact:hover {
  background-color: rgb(13, 19, 45);
  color: #f0f0f0;
}

.left-contact:hover i, .right-contact:hover i {
  color: #f0f0f0;
}

/* Footer headings */
footer h5 {
  margin: 0;
  font-weight: 400;
  font-size: 1rem;
}

/* RESPONSIVE: For screens smaller than 768px */
@media (max-width: 768px) {
  .lang-toggle {
    display: none;
  }
}