:root {
  --primary-color: #4db87a;
  --secondary-color: #1189ff;
  --accent-color: #02d88f;
  --text-dark: #111111;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  font-weight: 400;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.d-flex {
  display: flex !important;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.mr-auto {
  margin-right: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
    text-align: left !important;
}

.position-relative {
  position: relative !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.w-100 {
  width: 100% !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-md-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.d-none {
  display: none !important;
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  
  .d-lg-block {
    display: block !important;
  }
}

.site-logo {
  position: relative;
  font-weight: 800;
  font-size: 1.4rem;
}

.site-logo img {
  max-height: 52px;
}

.site-logo span {
  font-size: 2.1rem;
}

.site-logo a {
  color: var(--text-dark);
  text-decoration: none;
}

.site-navbar {
  margin-bottom: 0px;
  z-index: 1999;
  position: absolute;
  width: 100%;
  background: rgba(255,255,255,0.95);
}

.site-navbar .site-navigation .site-menu {
  margin-bottom: 0;
  list-style: none;
}

.site-navbar .site-navigation .site-menu .active > a {
  color: var(--primary-color);
  display: inline-block;
  padding: 6px 22px;
}

.site-navbar .site-navigation .site-menu a {
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s ease;
}

.site-navbar .site-navigation .site-menu > li {
  display: inline-block;
  position: relative;
}

.site-navbar .site-navigation .site-menu > li > a {
  padding: 22px 22px;
  color: var(--text-dark);
  display: inline-block;
  text-decoration: none !important;
  font-weight: 500;
}

.site-navbar .site-navigation .site-menu > li > a:hover {
  color: var(--primary-color);
}

.site-navbar .site-navigation .site-menu .has-children {
  position: relative;
}

.site-navbar .site-navigation .site-menu .has-children > a {
  position: relative;
  padding-right: 22px;
}

.site-navbar .site-navigation .site-menu .has-children > a:before {
  position: absolute;
  content: "\e313";
  font-size: 17px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  border-top: 2px solid var(--primary-color);
  box-shadow: 0 3px 12px -2px rgba(0, 0, 0, 0.12);
  border-left: 1px solid #eef2f7;
  border-right: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
  padding: 0px 0;
  margin-top: 22px;
  margin-left: 0px;
  background: var(--text-light);
  transition: 0.25s 0s;
  min-width: 200px;
}

.site-navbar .site-navigation .site-menu .has-children:hover .dropdown {
    visibility: visible;
    opacity: 1;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown li {
    list-style: none;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown li a {
    padding: 12px 22px;
    display: block;
    color: var(--text-dark);
}

.site-navbar .site-navigation .site-menu .has-children .dropdown li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.social-wrap a {
  display: inline-block;
  width: 42px;
  height: 42px;
  background: var(--primary-color);
  position: relative;
  margin-left: 8px;
  border-radius: 3px;
  text-decoration: none;
}

.social-wrap a > span {
  position: absolute;
  color: var(--text-light);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
}

.social-wrap a:hover {
  background: var(--text-dark);
}

.site-menu-toggle {
  color: var(--text-dark) !important;
  font-size: 28px !important;
}

@media (max-width: 991.98px) {
  .site-navbar .site-navigation .site-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .site-navbar .site-navigation .site-menu.active {
    display: block;
  }
  
  .site-navbar .site-navigation .site-menu > li {
    display: block;
    margin: 10px 0;
  }
}

.hero-wrap {
  width: 100%;
  height: 100%;
  position: inherit;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
}

.hero-wrap .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  opacity: 0.4;
  background: #000000;
}

.hero-wrap .slider-text h1 {
  font-size: 70px;
  color: var(--text-light);
  line-height: 1.2;
  font-weight: 800;
  font-family: 'Poppins', Arial, sans-serif;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .hero-wrap .slider-text h1 {
    font-size: 40px;
  }
}

.hero-wrap .slider-text h2 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-block;
  position: relative;
  letter-spacing: 4px;
}

.owl-carousel.home-slider {
  position: relative;
  height: 700px;
  z-index: 0;
}

.owl-carousel.home-slider .slider-item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 700px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.owl-carousel.home-slider .slider-item .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: #000000;
  opacity: 0.3;
  width: 100%;
  padding: 0;
  z-index: 0;
}

.owl-carousel.home-slider .slider-item .slider-text {
  height: 700px;
  position: relative;
}

.owl-carousel.home-slider .slider-item .slider-text .text {
  z-index: 0;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .owl-carousel.home-slider {
    height: 500px;
  }
  
  .owl-carousel.home-slider .slider-item {
    height: 500px;
  }
  
  .owl-carousel.home-slider .slider-item .slider-text {
    height: 500px;
  }
}

.ftco-animate {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-area {
  background: #1a1a1a;
  color: #e0e0e0;
  padding: 60px 0 0;
  margin-top: 80px;
}

.footer-main-content {
  margin-bottom: 40px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  margin-bottom: 50px;
}

.footer-col {
  padding: 0 15px;
  margin-bottom: 30px;
}

.footer-about {
  flex: 0 0 40%;
  max-width: 40%;
}

.footer-form-col {
  flex: 0 0 30%;
  max-width: 30%;
}

@media (max-width: 991.98px) {
  .footer-about,
  .footer-form-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #c0c0c0;
  margin-bottom: 20px;
}

.footer-contact-info {
  margin-top: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-item .material-icons {
  margin-right: 12px;
  color: var(--primary-color);
  font-size: 20px;
}

.footer-form {
  display: flex;
  flex-direction: column;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #333;
  background: #2a2a2a;
  color: var(--text-light);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 14px;
  border-radius: 3px;
}

.footer-form input:focus,
.footer-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.footer-form textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-submit {
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  border: none;
  cursor: pointer;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 500;
  font-size: 15px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #3da065;
  transform: translateY(-2px);
}

.footer-risk-warning {
  background: #252525;
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 40px;
  border-left: 4px solid #ff6b6b;
}

.footer-risk-warning h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ff6b6b;
  margin-bottom: 15px;
}

.footer-risk-warning p {
  font-size: 13px;
  line-height: 1.9;
  color: #b0b0b0;
  margin: 0;
}

.footer-links-row {
  padding: 20px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-links a {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid #333;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #888;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2a2a2a;
  padding: 20px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
  z-index: 9999;
  display: none;
}

.cookie-content {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  color: var(--text-light);
  font-size: 14px;
  flex: 1;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.btn-cookie {
  padding: 10px 25px;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.btn-cookie.accept {
  background: var(--primary-color);
  color: var(--text-light);
}

.btn-cookie.accept:hover {
  background: #3da065;
}

.btn-cookie.reject {
  background: #666;
  color: var(--text-light);
}

.btn-cookie.reject:hover {
  background: #555;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}











:root {
  --primary-color: #4db87a;
  --secondary-color: #1189ff;
  --accent-color: #02d88f;
  --text-dark: #111111;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  font-weight: 400;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.d-flex {
  display: flex !important;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.mr-auto {
  margin-right: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
    text-align: left !important;
}

.position-relative {
  position: relative !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.w-100 {
  width: 100% !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-md-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.d-none {
  display: none !important;
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  
  .d-lg-block {
    display: block !important;
  }
}

.site-logo {
  position: relative;
  font-weight: 800;
  font-size: 1.4rem;
}

.site-logo img {
  max-height: 52px;
}

.site-logo span {
  font-size: 2.1rem;
}

.site-logo a {
  color: var(--text-dark);
  text-decoration: none;
}

.site-navbar {
  margin-bottom: 0px;
  z-index: 1999;
  position: absolute;
  width: 100%;
  background: rgba(255,255,255,0.95);
}

.site-navbar .site-navigation .site-menu {
  margin-bottom: 0;
  list-style: none;
}

.site-navbar .site-navigation .site-menu .active > a {
  color: var(--primary-color);
  display: inline-block;
  padding: 6px 22px;
}

.site-navbar .site-navigation .site-menu a {
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s ease;
}

.site-navbar .site-navigation .site-menu > li {
  display: inline-block;
  position: relative;
}

.site-navbar .site-navigation .site-menu > li > a {
  padding: 22px 22px;
  color: var(--text-dark);
  display: inline-block;
  text-decoration: none !important;
  font-weight: 500;
}

.site-navbar .site-navigation .site-menu > li > a:hover {
  color: var(--primary-color);
}

.site-navbar .site-navigation .site-menu .has-children {
  position: relative;
}

.site-navbar .site-navigation .site-menu .has-children > a {
  position: relative;
  padding-right: 22px;
}

.site-navbar .site-navigation .site-menu .has-children > a:before {
  position: absolute;
  content: "\e313";
  font-size: 17px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  border-top: 2px solid var(--primary-color);
  box-shadow: 0 3px 12px -2px rgba(0, 0, 0, 0.12);
  border-left: 1px solid #eef2f7;
  border-right: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
  padding: 0px 0;
  margin-top: 22px;
  margin-left: 0px;
  background: var(--text-light);
  transition: 0.25s 0s;
  min-width: 200px;
}

.site-navbar .site-navigation .site-menu .has-children:hover .dropdown {
    visibility: visible;
    opacity: 1;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown li {
    list-style: none;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown li a {
    padding: 12px 22px;
    display: block;
    color: var(--text-dark);
}

.site-navbar .site-navigation .site-menu .has-children .dropdown li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.social-wrap a {
  display: inline-block;
  width: 42px;
  height: 42px;
  background: var(--primary-color);
  position: relative;
  margin-left: 8px;
  border-radius: 3px;
  text-decoration: none;
}

.social-wrap a > span {
  position: absolute;
  color: var(--text-light);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
}

.social-wrap a:hover {
  background: var(--text-dark);
}

.site-menu-toggle {
  color: var(--text-dark) !important;
  font-size: 28px !important;
}

@media (max-width: 991.98px) {
  .site-navbar .site-navigation .site-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .site-navbar .site-navigation .site-menu.active {
    display: block;
  }
  
  .site-navbar .site-navigation .site-menu > li {
    display: block;
    margin: 10px 0;
  }
}

.hero-wrap {
  width: 100%;
  height: 100%;
  position: inherit;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
}

.hero-wrap .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  opacity: 0.4;
  background: #000000;
}

.hero-wrap .slider-text h1 {
  font-size: 70px;
  color: var(--text-light);
  line-height: 1.2;
  font-weight: 800;
  font-family: 'Poppins', Arial, sans-serif;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .hero-wrap .slider-text h1 {
    font-size: 40px;
  }
}

.hero-wrap .slider-text h2 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-block;
  position: relative;
  letter-spacing: 4px;
}

.owl-carousel.home-slider {
  position: relative;
  height: 700px;
  z-index: 0;
}

.owl-carousel.home-slider .slider-item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 700px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.owl-carousel.home-slider .slider-item .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: #000000;
  opacity: 0.3;
  width: 100%;
  padding: 0;
  z-index: 0;
}

.owl-carousel.home-slider .slider-item .slider-text {
  height: 700px;
  position: relative;
}

.owl-carousel.home-slider .slider-item .slider-text .text {
  z-index: 0;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .owl-carousel.home-slider {
    height: 500px;
  }
  
  .owl-carousel.home-slider .slider-item {
    height: 500px;
  }
  
  .owl-carousel.home-slider .slider-item .slider-text {
    height: 500px;
  }
}

.ftco-animate {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-area {
  background: #1a1a1a;
  color: #e0e0e0;
  padding: 60px 0 0;
  margin-top: 80px;
}

.footer-main-content {
  margin-bottom: 40px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  margin-bottom: 50px;
}

.footer-col {
  padding: 0 15px;
  margin-bottom: 30px;
}

.footer-about {
  flex: 0 0 40%;
  max-width: 40%;
}

.footer-form-col {
  flex: 0 0 30%;
  max-width: 30%;
}

@media (max-width: 991.98px) {
  .footer-about,
  .footer-form-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #c0c0c0;
  margin-bottom: 20px;
}

.footer-contact-info {
  margin-top: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-item .material-icons {
  margin-right: 12px;
  color: var(--primary-color);
  font-size: 20px;
}

.footer-form {
  display: flex;
  flex-direction: column;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #333;
  background: #2a2a2a;
  color: var(--text-light);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 14px;
  border-radius: 3px;
}

.footer-form input:focus,
.footer-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.footer-form textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-submit {
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  border: none;
  cursor: pointer;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 500;
  font-size: 15px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #3da065;
  transform: translateY(-2px);
}

.footer-risk-warning {
  background: #252525;
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 40px;
  border-left: 4px solid #ff6b6b;
}

.footer-risk-warning h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ff6b6b;
  margin-bottom: 15px;
}

.footer-risk-warning p {
  font-size: 13px;
  line-height: 1.9;
  color: #b0b0b0;
  margin: 0;
}

.footer-links-row {
  padding: 20px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-links a {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid #333;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #888;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2a2a2a;
  padding: 20px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
  z-index: 9999;
  display: none;
}

.cookie-content {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  color: var(--text-light);
  font-size: 14px;
  flex: 1;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.btn-cookie {
  padding: 10px 25px;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.btn-cookie.accept {
  background: var(--primary-color);
  color: var(--text-light);
}

.btn-cookie.accept:hover {
  background: #3da065;
}

.btn-cookie.reject {
  background: #666;
  color: var(--text-light);
}

.btn-cookie.reject:hover {
  background: #555;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}












.portfolio-basics-section {
  padding: 85px 0;
  background: #ffffff;
}

.section-header-content {
  text-align: center;
  margin-bottom: 65px;
}

.section-subtitle {
  font-size: 13px;
  display: block;
  margin-bottom: 12px;
  color: #4db87a;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.section-main-title {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0;
}

@media (max-width: 767.98px) {
  .section-main-title {
    font-size: 26px;
  }
}

.content-layout-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.col-md-6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.text-content-block {
  padding-right: 25px;
}

@media (max-width: 767.98px) {
  .text-content-block {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.content-block-title {
  font-size: 26px;
  font-weight: 650;
  color: #2a2a2a;
  margin-bottom: 18px;
  margin-top: 32px;
}

.content-block-title:first-child {
  margin-top: 0;
}

.content-paragraph {
  font-size: 15.5px;
  line-height: 1.85;
  color: #4a4a4a;
  margin-bottom: 22px;
  text-align: justify;
}

.principle-item {
  margin-bottom: 28px;
  padding-left: 18px;
  border-left: 3px solid #4db87a;
}

.principle-heading {
  font-size: 19px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 12px;
}

.image-content-block {
  position: relative;
}

.content-main-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  margin-bottom: 35px;
}

.benefits-comparison-box {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.comparison-title {
  font-size: 22px;
  font-weight: 650;
  color: #1a1a1a;
  margin-bottom: 25px;
  text-align: center;
}

.comparison-content {
  margin-bottom: 28px;
}

.comparison-section {
  margin-bottom: 25px;
  padding: 22px;
  border-radius: 6px;
}

.individual-risk {
  background: #fff5f5;
  border-left: 4px solid #ff6b6b;
}

.portfolio-advantage {
  background: #f0f9f4;
  border-left: 4px solid #4db87a;
}

.risk-label {
  font-size: 17px;
  font-weight: 600;
  color: #c92a2a;
  margin-bottom: 14px;
}

.advantage-label {
  font-size: 17px;
  font-weight: 600;
  color: #2b8a3e;
  margin-bottom: 14px;
}

.risk-list,
.advantage-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.risk-list li,
.advantage-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 11px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #3a3a3a;
}

.risk-list li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ff6b6b;
  font-weight: 700;
  font-size: 16px;
}

.advantage-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4db87a;
  font-weight: 700;
  font-size: 16px;
}

.conclusion-note {
  background: #ffffff;
  padding: 22px;
  border-radius: 6px;
  border: 2px solid #4db87a;
}

.conclusion-note p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: #2a2a2a;
}

.conclusion-note strong {
  color: #4db87a;
  font-weight: 650;
}

@media (max-width: 767.98px) {
  .portfolio-basics-section {
    padding: 50px 0;
  }
  
  .section-header-content {
    margin-bottom: 40px;
  }
  
  .benefits-comparison-box {
    padding: 22px;
  }
  
  .comparison-section {
    padding: 18px;
  }
}















.investor-psychology-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.psychology-header-block {
  text-align: center;
  margin-bottom: 70px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.psychology-subtitle {
  font-size: 13.5px;
  display: block;
  margin-bottom: 14px;
  color: #ff6b6b;
  font-weight: 650;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.psychology-main-heading {
  font-size: 42px;
  font-weight: 750;
  color: #1a1a1a;
  line-height: 1.25;
  margin: 0 0 24px 0;
}

.psychology-intro-text {
  font-size: 17px;
  line-height: 1.8;
  color: #3a3a3a;
  font-weight: 450;
}

@media (max-width: 767.98px) {
  .psychology-main-heading {
    font-size: 28px;
  }
  
  .psychology-intro-text {
    font-size: 15.5px;
  }
}

.behavioral-patterns-row {
  margin-bottom: 65px;
}

.subsection-heading {
  font-size: 32px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 38px;
  text-align: center;
}

.behavior-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 32px;
  margin-bottom: 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.behavior-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
}

.fear-greed-card {
  border-top: 5px solid #ff6b6b;
}

.overconfidence-card {
  border-top: 5px solid #ffa94d;
}

.herd-mentality-card {
  border-top: 5px solid #748ffc;
}

.anchoring-card {
  border-top: 5px solid #20c997;
}

.card-icon-header {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
  gap: 15px;
}

.behavior-icon {
  font-size: 38px;
  line-height: 1;
}

.behavior-title {
  font-size: 22px;
  font-weight: 650;
  color: #2a2a2a;
  margin: 0;
}

.behavior-content {
  color: #4a4a4a;
}

.behavior-subsection {
  margin-bottom: 24px;
}

.behavior-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 12px;
}

.behavior-description {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
  text-align: justify;
}

.behavior-example {
  background: #f8f9fa;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14.5px;
  line-height: 1.7;
  border-left: 3px solid #ff6b6b;
  margin-top: 12px;
}

.overconfidence-symptoms {
  background: #fff9e6;
  padding: 20px;
  border-radius: 7px;
  margin: 18px 0;
}

.symptoms-heading {
  font-size: 16.5px;
  font-weight: 600;
  color: #e67700;
  margin-bottom: 14px;
}

.symptoms-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.symptoms-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #3a3a3a;
}

.symptoms-list li:before {
  content: "⚠";
  position: absolute;
  left: 0;
  color: #ffa94d;
  font-size: 16px;
}

.research-insight {
  background: #e7f5ff;
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 14.5px;
  line-height: 1.75;
  border-left: 3px solid #339af0;
  margin-top: 16px;
}

.herd-examples {
  margin-top: 20px;
}

.herd-quote {
  font-style: italic;
  font-size: 16px;
  color: #495057;
  padding: 18px 22px;
  background: #f1f3f5;
  border-left: 4px solid #748ffc;
  margin-bottom: 16px;
  border-radius: 5px;
}

.loss-aversion-fact {
  background: #d3f9d8;
  padding: 18px 22px;
  border-radius: 7px;
  margin-top: 18px;
  border-left: 3px solid #20c997;
}

.loss-aversion-fact p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: #2b8a3e;
}

.techniques-section-row {
  background: #ffffff;
  border-radius: 12px;
  padding: 50px 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.techniques-main-block {
  max-width: 100%;
}

.techniques-main-heading {
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-align: center;
}

.techniques-intro {
  font-size: 16.5px;
  line-height: 1.8;
  color: #3a3a3a;
  text-align: center;
  margin-bottom: 48px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.techniques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 50px;
}

@media (max-width: 767.98px) {
  .techniques-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.technique-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 28px;
  border-radius: 9px;
  border: 2px solid #e9ecef;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.technique-item:hover {
  border-color: #4db87a;
  box-shadow: 0 8px 24px rgba(77,184,122,0.15);
  transform: translateY(-3px);
}

.technique-number {
  position: absolute;
  top: -12px;
  right: 22px;
  font-size: 72px;
  font-weight: 800;
  color: rgba(77,184,122,0.08);
  line-height: 1;
}

.technique-heading {
  font-size: 20px;
  font-weight: 650;
  color: #2a2a2a;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.technique-text {
  font-size: 14.5px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 16px;
  text-align: justify;
}

.technique-action {
  background: #e7f5ff;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.7;
  border-left: 3px solid #4db87a;
}

.technique-action strong {
  color: #1971c2;
  font-weight: 600;
}

.final-wisdom-block {
  background: linear-gradient(135deg, #4db87a 0%, #3da065 100%);
  padding: 42px;
  border-radius: 10px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(77,184,122,0.25);
}

.wisdom-heading {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.wisdom-text {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.95);
}

.wisdom-conclusion {
  font-size: 17.5px;
  font-weight: 600;
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
  padding-top: 16px;
  border-top: 2px solid rgba(255,255,255,0.25);
}

@media (max-width: 767.98px) {
  .investor-psychology-section {
    padding: 55px 0;
  }
  
  .psychology-header-block {
    margin-bottom: 45px;
  }
  
  .subsection-heading {
    font-size: 26px;
  }
  
  .behavior-card {
    padding: 24px;
  }
  
  .techniques-section-row {
    padding: 35px 20px;
  }
  
  .techniques-main-heading {
    font-size: 26px;
  }
  
  .final-wisdom-block {
    padding: 28px;
  }
  
  .wisdom-heading {
    font-size: 22px;
  }
}













.first-portfolio-section {
  padding: 95px 0;
  background: #ffffff;
}

.portfolio-header-block {
  text-align: center;
  margin-bottom: 75px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-subtitle {
  font-size: 13px;
  display: block;
  margin-bottom: 15px;
  color: #4db87a;
  font-weight: 650;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.portfolio-main-heading {
  font-size: 44px;
  font-weight: 750;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0 0 26px 0;
}

.portfolio-intro-text {
  font-size: 17.5px;
  line-height: 1.85;
  color: #3a3a3a;
  font-weight: 450;
}

@media (max-width: 767.98px) {
  .portfolio-main-heading {
    font-size: 29px;
  }
  
  .portfolio-intro-text {
    font-size: 15.5px;
  }
}

.steps-container-row {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.step-block {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 45px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s ease;
}

.step-block:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

@media (max-width: 767.98px) {
  .step-block {
    padding: 28px;
  }
}

.step-header-section {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 3px solid #4db87a;
}

.step-number-badge {
  background: linear-gradient(135deg, #4db87a 0%, #3da065 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 12px rgba(77,184,122,0.3);
}

.step-main-title {
  font-size: 30px;
  font-weight: 700;
  color: #2a2a2a;
  margin: 0;
}

@media (max-width: 767.98px) {
  .step-header-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  
  .step-main-title {
    font-size: 24px;
  }
}

.step-content-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
}

.step-one .step-content-layout,
.step-three .step-content-layout {
  grid-template-columns: 1.2fr 0.8fr;
}

@media (max-width: 991.98px) {
  .step-one .step-content-layout,
  .step-three .step-content-layout {
    grid-template-columns: 1fr;
  }
}

.step-text-content {
  color: #4a4a4a;
}

.step-description {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 28px;
  text-align: justify;
}

.risk-assessment-box {
  background: #ffffff;
  padding: 32px;
  border-radius: 10px;
  margin-bottom: 32px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.assessment-title {
  font-size: 22px;
  font-weight: 650;
  color: #2a2a2a;
  margin-bottom: 26px;
  text-align: center;
}

.assessment-question {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e9ecef;
}

.assessment-question:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.question-text {
  font-size: 16.5px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 14px;
}

.question-options {
  list-style: none;
  padding: 0;
  margin: 0;
}

.question-options li {
  padding: 10px 15px;
  margin-bottom: 8px;
  background: #f8f9fa;
  border-radius: 6px;
  font-size: 14.5px;
  line-height: 1.6;
  transition: background 0.25s ease;
}

.question-options li:hover {
  background: #e7f5ff;
}

.option-label {
  font-weight: 600;
  color: #4db87a;
}

.risk-profiles-summary {
  background: #ffffff;
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.profiles-title {
  font-size: 22px;
  font-weight: 650;
  color: #2a2a2a;
  margin-bottom: 24px;
  text-align: center;
}

.profile-item {
  padding: 18px 22px;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 5px solid;
}

.profile-item:last-child {
  margin-bottom: 0;
}

.conservative {
  background: #fff5f5;
  border-left-color: #ff6b6b;
}

.moderate {
  background: #fff9db;
  border-left-color: #ffa94d;
}

.aggressive {
  background: #e7f5ff;
  border-left-color: #339af0;
}

.profile-name {
  font-size: 18px;
  font-weight: 650;
  margin-bottom: 10px;
}

.conservative .profile-name {
  color: #c92a2a;
}

.moderate .profile-name {
  color: #e67700;
}

.aggressive .profile-name {
  color: #1971c2;
}

.profile-description {
  font-size: 14.5px;
  line-height: 1.75;
  color: #495057;
  margin: 0;
}

.step-image-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.step-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  margin-bottom: 18px;
}

.image-caption {
  font-size: 13.5px;
  line-height: 1.7;
  color: #6c757d;
  font-style: italic;
  text-align: center;
  margin: 0;
}

.objectives-framework {
  background: #ffffff;
  padding: 32px;
  border-radius: 10px;
  margin-bottom: 32px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.framework-title {
  font-size: 22px;
  font-weight: 650;
  color: #2a2a2a;
  margin-bottom: 26px;
  text-align: center;
}

.smart-item {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
  padding: 18px;
  background: #f8f9fa;
  border-radius: 8px;
  align-items: flex-start;
}

.smart-letter {
  background: linear-gradient(135deg, #4db87a 0%, #3da065 100%);
  color: #ffffff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(77,184,122,0.25);
}

.smart-content {
  flex: 1;
}

.smart-heading {
  font-size: 17px;
  font-weight: 650;
  color: #333333;
  margin-bottom: 8px;
}

.smart-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: #495057;
  margin: 0;
}

.calculation-example {
  background: #e7f5ff;
  padding: 28px;
  border-radius: 10px;
  border-left: 4px solid #339af0;
}

.example-title {
  font-size: 20px;
  font-weight: 650;
  color: #1971c2;
  margin-bottom: 16px;
}

.example-scenario {
  font-size: 15.5px;
  margin-bottom: 18px;
  color: #495057;
}

.calculation-steps {
  background: #ffffff;
  padding: 18px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.calculation-steps p {
  margin: 8px 0;
  font-size: 14.5px;
  color: #495057;
}

.example-insight {
  font-size: 14.5px;
  line-height: 1.75;
  color: #495057;
  font-style: italic;
  margin: 0;
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.vehicle-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-top: 4px solid;
  transition: transform 0.3s ease;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.equity-vehicle {
  border-top-color: #339af0;
}

.bond-vehicle {
  border-top-color: #20c997;
}

.alternative-vehicle {
  border-top-color: #ffa94d;
}

.cash-vehicle {
  border-top-color: #748ffc;
}

.vehicle-title {
  font-size: 19px;
  font-weight: 650;
  color: #2a2a2a;
  margin-bottom: 18px;
}

.vehicle-details {
  font-size: 14.5px;
  line-height: 1.75;
  color: #495057;
}

.vehicle-description {
  font-weight: 600;
  margin-bottom: 10px;
  color: #333333;
}

.vehicle-examples {
  font-size: 13.5px;
  color: #6c757d;
  font-style: italic;
  margin-bottom: 14px;
}

.vehicle-characteristics {
  background: #f8f9fa;
  padding: 14px;
  border-radius: 6px;
  margin: 14px 0;
}

.vehicle-characteristics p {
  margin: 8px 0;
  font-size: 14px;
}

.vehicle-allocation {
  font-weight: 600;
  color: #4db87a;
  margin-top: 12px;
}

.etf-advantages-box {
  background: #d3f9d8;
  padding: 28px;
  border-radius: 10px;
  border-left: 4px solid #2b8a3e;
  margin-bottom: 32px;
}

.advantages-title {
  font-size: 20px;
  font-weight: 650;
  color: #2b8a3e;
  margin-bottom: 18px;
}

.advantages-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advantages-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 14.5px;
  line-height: 1.75;
  color: #2b8a3e;
}

.advantages-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2b8a3e;
  font-weight: 700;
  font-size: 20px;
}

.allocation-models {
  margin-bottom: 38px;
}

.models-title {
  font-size: 24px;
  font-weight: 650;
  color: #2a2a2a;
  margin-bottom: 28px;
  text-align: center;
}

.allocation-model {
  background: #ffffff;
  padding: 28px;
  border-radius: 10px;
  margin-bottom: 24px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.model-name {
  font-size: 20px;
  font-weight: 650;
  color: #2a2a2a;
  margin-bottom: 20px;
}

.model-chart {
  margin-bottom: 20px;
}

.chart-bar {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.chart-bar:hover {
  transform: scaleX(1.02);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.bar-label {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
}

.stocks-bar {
  background: linear-gradient(90deg, #339af0 0%, #228be6 100%);
}

.bonds-bar {
  background: linear-gradient(90deg, #20c997 0%, #12b886 100%);
}

.cash-bar {
  background: linear-gradient(90deg, #748ffc 0%, #5c7cfa 100%);
}

.alternatives-bar {
  background: linear-gradient(90deg, #ffa94d 0%, #ff922b 100%);
}

.model-details {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 6px;
}

.model-details p {
  margin: 8px 0;
  font-size: 14.5px;
  color: #495057;
}

.portfolio-example {
  background: #fff9e6;
  padding: 28px;
  border-radius: 10px;
  border-left: 4px solid #ffa94d;
}

.example-portfolio-title {
  font-size: 20px;
  font-weight: 650;
  color: #e67700;
  margin-bottom: 20px;
}

.concrete-allocation {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 18px;
}

.allocation-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 15px;
}

.allocation-line:last-child {
  border-bottom: none;
}

.allocation-amount {
  font-weight: 700;
  color: #4db87a;
  min-width: 90px;
}

.allocation-instrument {
  flex: 1;
  padding: 0 15px;
  color: #495057;
}

.allocation-percentage {
  font-weight: 650;
  color: #333333;
  min-width: 50px;
  text-align: right;
}

.allocation-rationale {
  font-size: 14.5px;
  line-height: 1.75;
  color: #495057;
  margin: 0;
}

.execution-checklist {
  margin-bottom: 38px;
}

.checklist-title {
  font-size: 24px;
  font-weight: 650;
  color: #2a2a2a;
  margin-bottom: 26px;
  text-align: center;
}

.checklist-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.checklist-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateX(5px);
}

.checkbox-icon {
  font-size: 28px;
  color: #4db87a;
  flex-shrink: 0;
}

.checklist-content {
  flex: 1;
}

.checklist-heading {
  font-size: 18px;
  font-weight: 650;
  color: #2a2a2a;
  margin-bottom: 10px;
}

.checklist-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: #495057;
  margin: 0;
}

.ongoing-maintenance {
  background: #ffffff;
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.maintenance-title {
  font-size: 22px;
  font-weight: 650;
  color: #2a2a2a;
  margin-bottom: 24px;
  text-align: center;
}

.maintenance-content {
  display: grid;
  gap: 20px;
}

.maintenance-item {
  padding: 18px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #4db87a;
}

.maintenance-heading {
  font-size: 17px;
  font-weight: 650;
  color: #333333;
  margin-bottom: 10px;
}

.maintenance-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: #495057;
  margin: 0;
}

.final-recommendations {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #ffffff;
}

.final-header {
  text-align: center;
  margin-bottom: 40px;
}

.final-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-bottom: 42px;
}

.recommendation-card {
  background: rgba(255,255,255,0.08);
  padding: 28px;
  border-radius: 10px;
  border: 2px solid rgba(77,184,122,0.3);
  transition: all 0.3s ease;
}

.recommendation-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: #4db87a;
  transform: translateY(-5px);
}

.recommendation-icon {
  font-size: 42px;
  margin-bottom: 16px;
  display: block;
}

.recommendation-heading {
  font-size: 19px;
  font-weight: 650;
  color: #4db87a;
  margin-bottom: 14px;
}

.recommendation-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.action-cta-box {
  background: linear-gradient(135deg, #4db87a 0%, #3da065 100%);
  padding: 38px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(77,184,122,0.4);
}

.cta-heading {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.cta-text {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.95);
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767.98px) {
  .first-portfolio-section {
    padding: 60px 0;
  }
  
  .portfolio-header-block {
    margin-bottom: 50px;
  }
  
  .steps-container-row {
    gap: 35px;
  }
  
  .smart-item {
    flex-direction: column;
    gap: 14px;
  }
  
  .vehicles-grid {
    grid-template-columns: 1fr;
  }
  
  .recommendations-grid {
    grid-template-columns: 1fr;
  }
  
  .allocation-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .allocation-instrument {
    padding: 0;
  }
}












/* Services Page Specific Styles */

.services-hero {
  position: relative;
  height: 450px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="rgba(77,184,122,0.1)"/></svg>') no-repeat bottom;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 0 20px;
}

.hero-subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4db87a;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  margin: 0 0 20px 0;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-description {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  opacity: 0.95;
}

@media (max-width: 767.98px) {
  .services-hero {
    height: 350px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-description {
    font-size: 16px;
  }
}

/* Main Content */
.rebalancing-main-section {
  padding: 80px 0;
  background: #ffffff;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Introduction */
.intro-block {
  margin-bottom: 70px;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
  line-height: 1.3;
}

.section-title.centered {
  text-align: center;
  margin-bottom: 45px;
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: #3a3a3a;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Problem Section */
.problem-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
  margin: 0 -15px 70px -15px;
}

@media (min-width: 768px) {
  .problem-section {
    margin: 0 0 70px 0;
    border-radius: 15px;
    padding: 60px 40px;
  }
}

.problem-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.portfolio-drift-animation {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 450px;
}

.drift-initial,
.drift-current {
  margin-bottom: 25px;
}

.drift-initial h4,
.drift-current h4 {
  font-size: 16px;
  font-weight: 650;
  color: #495057;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.allocation-bar {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.stocks-initial {
  background: linear-gradient(90deg, #339af0 0%, #228be6 100%);
}

.bonds-initial {
  background: linear-gradient(90deg, #20c997 0%, #12b886 100%);
}

.stocks-drifted {
  background: linear-gradient(90deg, #ff6b6b 0%, #fa5252 100%);
  animation: pulse 2s ease-in-out infinite;
}

.bonds-drifted {
  background: linear-gradient(90deg, #868e96 0%, #6c757d 100%);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.drift-arrow {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #ff6b6b;
  margin: 20px 0;
  padding: 10px;
}

.problem-explanation {
  padding: 20px;
}

.problem-title {
  font-size: 28px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 20px;
}

.problem-text {
  font-size: 16px;
  line-height: 1.85;
  color: #4a4a4a;
  margin-bottom: 30px;
  text-align: justify;
}

.danger-box {
  background: #fff5f5;
  border-left: 5px solid #ff6b6b;
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(255,107,107,0.15);
}

.danger-heading {
  font-size: 20px;
  font-weight: 700;
  color: #c92a2a;
  margin-bottom: 18px;
}

.danger-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.danger-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #495057;
}

.danger-list li:before {
  content: "⚠";
  position: absolute;
  left: 0;
  color: #ff6b6b;
  font-size: 18px;
}

.danger-list li strong {
  color: #c92a2a;
  font-weight: 650;
}

/* Example Section */
.example-section {
  margin-bottom: 80px;
}

.example-title {
  font-size: 32px;
  font-weight: 700;
  color: #2a2a2a;
  text-align: center;
  margin-bottom: 35px;
}

.example-story {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.story-scenario,
.story-evolution,
.story-consequence {
  padding: 35px;
  border-bottom: 2px solid #e9ecef;
}

.story-consequence {
  border-bottom: none;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
}

.story-scenario p,
.story-evolution p,
.story-consequence p {
  font-size: 17px;
  margin-bottom: 20px;
  color: #2a2a2a;
}

.scenario-breakdown {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 15px;
}

.scenario-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #dee2e6;
  font-size: 16px;
}

.scenario-item:last-child {
  border-bottom: none;
}

.scenario-item.changed {
  background: #fff9e6;
  padding: 12px 15px;
  margin: 5px -15px;
  border-radius: 5px;
}

.scenario-item.total {
  font-weight: 700;
  color: #2a2a2a;
  margin-top: 10px;
  padding-top: 15px;
  border-top: 2px solid #4db87a;
  border-bottom: none;
}

.scenario-label {
  font-weight: 600;
  color: #495057;
}

.scenario-value {
  font-weight: 700;
  color: #4db87a;
  font-size: 18px;
}

.loss-highlight {
  color: #ff6b6b;
  font-weight: 700;
  font-size: 18px;
}

.consequence-insight {
  font-style: italic;
  color: #6c757d;
  font-size: 15.5px;
  line-height: 1.7;
  margin-top: 15px;
  padding: 15px;
  background: rgba(255,255,255,0.7);
  border-radius: 6px;
}

/* Solution Section */
.solution-section {
  margin-bottom: 80px;
}

.solution-intro {
  font-size: 17px;
  line-height: 1.85;
  color: #3a3a3a;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #4db87a;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(77,184,122,0.2);
}

.benefit-icon {
  font-size: 50px;
  margin-bottom: 20px;
  display: block;
}

.benefit-title {
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 15px;
}

.benefit-text {
  font-size: 15px;
  line-height: 1.75;
  color: #495057;
  margin: 0;
}

/* Methods Section */
.methods-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 70px 0;
  margin: 0 -15px 80px -15px;
  border-radius: 0;
}

@media (min-width: 768px) {
  .methods-section {
    margin: 0 0 80px 0;
    border-radius: 15px;
    padding: 70px 40px;
  }
}

.methods-comparison {
  display: grid;
  gap: 35px;
  margin-top: 40px;
}

.method-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.method-header {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.method-name {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.method-badge {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.method-badge.recommended {
  background: #4db87a;
  color: #ffffff;
}

.method-badge.advanced {
  background: #ffa94d;
  color: #ffffff;
}

.method-badge.optimal {
  background: linear-gradient(135deg, #4db87a 0%, #339af0 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(77,184,122,0.4);
}

.method-content {
  padding: 30px;
}

.method-description {
  font-size: 16px;
  line-height: 1.75;
  color: #495057;
  margin-bottom: 25px;
}

.method-frequencies h4,
.threshold-examples h4,
.hybrid-rules h4 {
  font-size: 18px;
  font-weight: 650;
  color: #2a2a2a;
  margin-bottom: 18px;
}

.frequency-option,
.threshold-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.frequency-option:hover,
.threshold-item:hover {
  background: #e7f5ff;
  transform: translateX(5px);
}

.frequency-option.best {
  background: #d3f9d8;
  border-left: 4px solid #4db87a;
}

.frequency-label,
.threshold-percent {
  font-weight: 700;
  color: #4db87a;
  font-size: 16px;
}

.frequency-desc,
.threshold-desc {
  color: #6c757d;
  font-size: 14px;
}

.threshold-percent {
  font-size: 20px;
  min-width: 70px;
}

.hybrid-rules {
  margin: 25px 0;
}

.rule-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding: 18px;
  background: #f8f9fa;
  border-radius: 8px;
}

.rule-number {
  background: linear-gradient(135deg, #4db87a 0%, #3da065 100%);
  color: #ffffff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.rule-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #495057;
  padding-top: 8px;
}

.method-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 25px;
}

@media (max-width: 767.98px) {
  .method-pros-cons {
    grid-template-columns: 1fr;
  }
}

.pros,
.cons {
  padding: 20px;
  border-radius: 8px;
}

.pros {
  background: #d3f9d8;
  border-left: 4px solid #2b8a3e;
}

.cons {
  background: #fff5f5;
  border-left: 4px solid #ff6b6b;
}

.pros h5 {
  font-size: 16px;
  font-weight: 700;
  color: #2b8a3e;
  margin-bottom: 12px;
}

.cons h5 {
  font-size: 16px;
  font-weight: 700;
  color: #c92a2a;
  margin-bottom: 12px;
}

.pros ul,
.cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros li,
.cons li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #495057;
}

.pros li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2b8a3e;
  font-weight: 700;
  font-size: 16px;
}

.cons li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ff6b6b;
  font-weight: 700;
  font-size: 16px;
}

/* Implementation Section */
.implementation-section {
  margin-bottom: 80px;
}

.implementation-steps {
  max-width: 800px;
  margin: 0 auto;
}

.impl-step {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.impl-step:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(77,184,122,0.15);
}

.step-number {
  background: linear-gradient(135deg, #4db87a 0%, #3da065 100%);
  color: #ffffff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(77,184,122,0.3);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 10px;
}

.step-text {
  font-size: 15px;
  line-height: 1.75;
  color: #495057;
  margin: 0;
}

/* Costs Section */
.costs-section {
  background: linear-gradient(135deg, #e7f5ff 0%, #d0ebff 100%);
  padding: 60px 30px;
  border-radius: 15px;
  margin-bottom: 80px;
}

.costs-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 25px;
}

.costs-intro {
  font-size: 17px;
  line-height: 1.8;
  color: #2a2a2a;
  text-align: center;
  margin-bottom: 35px;
}

.cost-strategies {
  display: grid;
  gap: 25px;
}

.strategy-item {
  background: #ffffff;
  padding: 28px;
  border-radius: 10px;
  border-left: 5px solid #339af0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.strategy-heading {
  font-size: 18px;
  font-weight: 700;
  color: #1971c2;
  margin-bottom: 12px;
}

.strategy-text {
  font-size: 15px;
  line-height: 1.75;
  color: #495057;
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 70px 40px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(77,184,122,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto 35px auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #4db87a 0%, #3da065 100%);
  color: #ffffff;
  box-shadow: 0 5px 20px rgba(77,184,122,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(77,184,122,0.6);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #1a1a1a;
}

/* Responsive */
@media (max-width: 767.98px) {
  .rebalancing-main-section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .intro-text {
    font-size: 16px;
  }
  
  .portfolio-drift-animation {
    padding: 25px;
  }
  
  .problem-title {
    font-size: 22px;
  }
  
  .example-title {
    font-size: 26px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .impl-step {
    flex-direction: column;
    padding: 25px;
  }
  
  .cta-title {
    font-size: 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}














/* Contact Page Specific Styles */

.contacts-hero {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contacts-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(77,184,122,0.15), transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(17,137,255,0.15), transparent 50%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 700px;
  padding: 0 20px;
}

.hero-subtitle {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4db87a;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  margin: 0 0 18px 0;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-description {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  opacity: 0.95;
}

@media (max-width: 767.98px) {
  .contacts-hero {
    height: 320px;
  }
  
  .hero-title {
    font-size: 38px;
  }
  
  .hero-description {
    font-size: 16px;
  }
}

/* Main Section */
.contacts-main-section {
  padding: 80px 0;
  background: #ffffff;
}

/* Contact Information Section */
.contact-info-section {
  margin-bottom: 80px;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 17px;
  color: #6c757d;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 400;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-info-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #4db87a;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(77,184,122,0.2);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4db87a 0%, #3da065 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(77,184,122,0.3);
}

.card-icon svg {
  width: 40px;
  height: 40px;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 15px;
}

.card-content {
  font-size: 16px;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 10px;
}

.contact-link {
  color: #4db87a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #3da065;
  text-decoration: underline;
}

.card-info {
  font-size: 14px;
  color: #6c757d;
  font-style: italic;
  margin: 0;
}

/* Contact Form Section */
.contact-form-section {
  padding: 60px 0;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

@media (max-width: 767.98px) {
  .form-container {
    padding: 35px 25px;
  }
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-title {
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.form-description {
  font-size: 16px;
  color: #6c757d;
  margin: 0;
}

.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

@media (max-width: 767.98px) {
  .contact-form {
    padding: 30px 20px;
  }
}

.form-row {
  margin-bottom: 28px;
}

.form-group {
  width: 100%;
}

.form-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 10px;
}

.required {
  color: #ff6b6b;
  margin-left: 3px;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #4db87a;
  pointer-events: none;
  z-index: 1;
}

.textarea-icon {
  top: 18px;
  transform: none;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 15px 14px 48px;
  font-size: 15px;
  font-family: 'Poppins', Arial, sans-serif;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  background: #ffffff;
  color: #2a2a2a;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #4db87a;
  box-shadow: 0 0 0 4px rgba(77,184,122,0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #adb5bd;
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
  padding-top: 14px;
}

.submit-button {
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, #4db87a 0%, #3da065 100%);
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  font-family: 'Poppins', Arial, sans-serif;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 5px 20px rgba(77,184,122,0.3);
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(77,184,122,0.5);
}

.submit-button:active {
  transform: translateY(-1px);
}

.button-text {
  flex: 1;
}

.button-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
  transform: translateX(5px);
}

.form-privacy-note {
  font-size: 13px;
  line-height: 1.7;
  color: #6c757d;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
}

.privacy-link {
  color: #4db87a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: #3da065;
  text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-info-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.contact-info-card:nth-child(1) {
  animation-delay: 0.1s;
}

.contact-info-card:nth-child(2) {
  animation-delay: 0.2s;
}

.contact-info-card:nth-child(3) {
  animation-delay: 0.3s;
}

.contact-info-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 991.98px) {
  .contact-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 767.98px) {
  .contacts-main-section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 15px;
  }
  
  .contact-info-section {
    margin-bottom: 60px;
  }
  
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-title {
    font-size: 26px;
  }
  
  .form-description {
    font-size: 15px;
  }
}














/* Privacy Page Specific Styles */

.privacy-hero {
  position: relative;
  height: 450px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(77,184,122,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(77,184,122,0.1) 0%, transparent 50%);
  animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 0 20px;
}

.hero-icon {
  font-size: 80px;
  margin-bottom: 20px;
  display: block;
  animation: lockPulse 3s ease-in-out infinite;
}

@keyframes lockPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  margin: 0 0 15px 0;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 20px 0;
  opacity: 0.9;
}

.hero-date {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(77,184,122,0.2);
  border: 1px solid rgba(77,184,122,0.4);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #4db87a;
}

@media (max-width: 767.98px) {
  .privacy-hero {
    height: 380px;
  }
  
  .hero-icon {
    font-size: 60px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
}

/* Main Section */
.privacy-main-section {
  padding: 80px 0;
  background: #ffffff;
}

/* Introduction */
.privacy-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px auto;
}

.intro-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #4db87a 0%, #3da065 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(77,184,122,0.3);
}

.intro-title {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.3;
}

.intro-text {
  font-size: 17px;
  line-height: 1.8;
  color: #495057;
}

/* Timeline */
.privacy-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0 80px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 140px;
}

.timeline-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4db87a 0%, #3da065 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 15px;
  box-shadow: 0 5px 20px rgba(77,184,122,0.3);
  transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-icon {
  transform: scale(1.1);
}

.timeline-title {
  font-size: 16px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 5px;
}

.timeline-text {
  font-size: 13px;
  color: #6c757d;
}

.timeline-connector {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4db87a 0%, #3da065 100%);
  position: relative;
}

.timeline-connector::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: -10px;
  color: #4db87a;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .privacy-timeline {
    flex-direction: column;
    gap: 30px;
  }
  
  .timeline-connector {
    width: 3px;
    height: 40px;
  }
  
  .timeline-connector::after {
    content: '↓';
    right: -9px;
    top: auto;
    bottom: -15px;
  }
}

/* Content Sections */
.privacy-content {
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-section {
  display: flex;
  gap: 40px;
  margin-bottom: 70px;
  padding-bottom: 70px;
  border-bottom: 2px solid #e9ecef;
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 50px;
  padding-bottom: 0;
}

.section-number {
  font-size: 72px;
  font-weight: 800;
  color: rgba(77,184,122,0.15);
  line-height: 1;
  flex-shrink: 0;
  width: 100px;
}

.section-content {
  flex: 1;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  line-height: 1.3;
}

@media (max-width: 767.98px) {
  .privacy-section {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
    padding-bottom: 50px;
  }
  
  .section-number {
    font-size: 48px;
    width: auto;
  }
  
  .section-title {
    font-size: 24px;
  }
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

@media (max-width: 767.98px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
  border-left: 5px solid;
}

.info-card.voluntary {
  border-left-color: #4db87a;
  background: linear-gradient(135deg, #f0f9f4 0%, #ffffff 100%);
}

.info-card.automatic {
  border-left-color: #339af0;
  background: linear-gradient(135deg, #e7f5ff 0%, #ffffff 100%);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.card-icon {
  font-size: 32px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #2a2a2a;
  margin: 0;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #495057;
}

.card-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4db87a;
  font-weight: 700;
  font-size: 20px;
}

.card-list li strong {
  color: #2a2a2a;
  font-weight: 600;
}

.principle-box {
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
  border-left: 5px solid #ffa94d;
  padding: 20px 25px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.75;
  color: #495057;
}

.principle-box strong {
  color: #e67700;
  font-weight: 700;
}

/* Usage Blocks */
.usage-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.usage-block {
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.usage-block:hover {
  border-color: #4db87a;
  box-shadow: 0 8px 25px rgba(77,184,122,0.15);
  transform: translateY(-5px);
}

.usage-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

.usage-title {
  font-size: 18px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 12px;
}

.usage-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: #495057;
  margin: 0;
}

/* Never Box */
.never-box {
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  border: 2px solid #ff6b6b;
  border-radius: 12px;
  padding: 30px;
}

.never-title {
  font-size: 20px;
  font-weight: 700;
  color: #c92a2a;
  margin-bottom: 18px;
}

.never-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.never-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: #495057;
}

.never-list li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ff6b6b;
  font-weight: 700;
  font-size: 20px;
}

/* Rights Showcase */
.rights-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-bottom: 35px;
}

.right-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border-top: 4px solid #4db87a;
}

.right-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(77,184,122,0.2);
}

.right-icon {
  font-size: 42px;
  margin-bottom: 15px;
  display: block;
}

.right-name {
  font-size: 17px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 10px;
}

.right-description {
  font-size: 14px;
  line-height: 1.7;
  color: #495057;
  margin: 0;
}

.exercise-rights {
  background: linear-gradient(135deg, #d3f9d8 0%, #ffffff 100%);
  border-left: 5px solid #2b8a3e;
  padding: 25px;
  border-radius: 8px;
}

.exercise-title {
  font-size: 18px;
  font-weight: 700;
  color: #2b8a3e;
  margin-bottom: 12px;
}

.exercise-text {
  font-size: 15px;
  line-height: 1.75;
  color: #495057;
  margin: 0;
}

/* Cookies Section */
.cookies-explanation {
  display: grid;
  gap: 25px;
  margin-bottom: 30px;
}

.cookie-type {
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
}

.cookie-type:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.cookie-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.cookie-badge.essential {
  background: #4db87a;
  color: #ffffff;
}

.cookie-badge.analytics {
  background: #339af0;
  color: #ffffff;
}

.cookie-badge.preference {
  background: #ffa94d;
  color: #ffffff;
}

.cookie-type-title {
  font-size: 18px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 12px;
}

.cookie-type-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: #495057;
  margin: 0;
}

.cookie-control {
  background: #f8f9fa;
  padding: 20px 25px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.75;
  color: #495057;
}

.cookie-control strong {
  color: #2a2a2a;
  font-weight: 700;
}

/* Security Measures */
.security-measures {
  display: grid;
  gap: 20px;
}

.measure-item {
  display: flex;
  gap: 20px;
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
}

.measure-item:hover {
  border-color: #4db87a;
  box-shadow: 0 5px 20px rgba(77,184,122,0.12);
}

.measure-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.measure-content {
  flex: 1;
}

.measure-title {
  font-size: 17px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 8px;
}

.measure-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: #495057;
  margin: 0;
}

/* Retention Info */
.retention-info {
  background: linear-gradient(135deg, #e7f5ff 0%, #ffffff 100%);
  border: 2px solid #339af0;
  border-radius: 12px;
  padding: 30px;
}

.retention-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 30px;
}

.retention-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.retention-phase {
  text-align: center;
  min-width: 120px;
}

.phase-label {
  background: #4db87a;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
}

.phase-desc {
  font-size: 13px;
  color: #6c757d;
  margin: 0;
}

.retention-arrow {
  font-size: 28px;
  color: #4db87a;
  font-weight: 700;
}

.retention-note {
  font-size: 14px;
  line-height: 1.7;
  color: #495057;
  font-style: italic;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
}

@media (max-width: 767.98px) {
  .retention-timeline {
    flex-direction: column;
    gap: 20px;
  }
  
  .retention-arrow {
    transform: rotate(90deg);
  }
}

/* Changes Notice */
.changes-notice {
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
  border: 2px solid #ffa94d;
  border-radius: 15px;
  padding: 35px;
  display: flex;
  gap: 25px;
  margin-top: 60px;
  box-shadow: 0 6px 25px rgba(255,169,77,0.15);
}

.notice-icon {
  font-size: 50px;
  flex-shrink: 0;
}

.notice-content {
  flex: 1;
}

.notice-title {
  font-size: 24px;
  font-weight: 700;
  color: #e67700;
  margin-bottom: 15px;
}

.notice-text {
  font-size: 15px;
  line-height: 1.8;
  color: #495057;
  margin: 0;
}

@media (max-width: 767.98px) {
  .changes-notice {
    flex-direction: column;
    padding: 25px;
  }
  
  .notice-icon {
    font-size: 40px;
  }
  
  .notice-title {
    font-size: 20px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.privacy-section {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 767.98px) {
  .privacy-main-section {
    padding: 50px 0;
  }
  
  .intro-title {
    font-size: 28px;
  }
  
  .intro-text {
    font-size: 15px;
  }
  
  .usage-blocks,
  .rights-showcase {
    grid-template-columns: 1fr;
  }
  
  .measure-item {
    flex-direction: column;
    text-align: center;
  }
}













/* Terms and Conditions Page Styles */

.terms-hero {
  position: relative;
  height: 420px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(77,184,122,0.05) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(77,184,122,0.05) 50%, transparent 52%);
  background-size: 60px 60px;
  animation: decorationMove 30s linear infinite;
}

@keyframes decorationMove {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 750px;
  padding: 0 20px;
}

.hero-icon {
  font-size: 70px;
  margin-bottom: 18px;
  display: block;
  animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  margin: 0 0 14px 0;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 19px;
  font-weight: 400;
  margin: 0 0 18px 0;
  opacity: 0.92;
}

.hero-date {
  display: inline-block;
  padding: 8px 22px;
  background: rgba(77,184,122,0.2);
  border: 1px solid rgba(77,184,122,0.4);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #4db87a;
}

@media (max-width: 767.98px) {
  .terms-hero {
    height: 360px;
  }
  
  .hero-icon {
    font-size: 55px;
  }
  
  .hero-title {
    font-size: 34px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
}

/* Main Section */
.terms-main-section {
  padding: 75px 0;
  background: #ffffff;
}

/* Key Notice Banner */
.key-notice-banner {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
  border: 3px solid #ff6b6b;
  border-radius: 15px;
  padding: 35px;
  display: flex;
  gap: 25px;
  margin-bottom: 60px;
  box-shadow: 0 8px 30px rgba(255,107,107,0.2);
}

.notice-icon {
  font-size: 55px;
  flex-shrink: 0;
  animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.notice-content {
  flex: 1;
}

.notice-heading {
  font-size: 26px;
  font-weight: 700;
  color: #c92a2a;
  margin-bottom: 15px;
}

.notice-text {
  font-size: 16px;
  line-height: 1.8;
  color: #495057;
  margin: 0;
}

@media (max-width: 767.98px) {
  .key-notice-banner {
    flex-direction: column;
    padding: 28px;
    text-align: center;
  }
  
  .notice-icon {
    font-size: 45px;
  }
  
  .notice-heading {
    font-size: 22px;
  }
  
  .notice-text {
    font-size: 15px;
  }
}

/* Introduction */
.terms-intro {
  max-width: 900px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.intro-title {
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.intro-text {
  font-size: 17px;
  line-height: 1.8;
  color: #495057;
}

/* Terms Content */
.terms-content {
  max-width: 1000px;
  margin: 0 auto;
}

.terms-section {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.section-marker {
  flex-shrink: 0;
}

.marker-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4db87a 0%, #3da065 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 5px 20px rgba(77,184,122,0.3);
  transition: transform 0.3s ease;
}

.terms-section:hover .marker-icon {
  transform: scale(1.1) rotate(5deg);
}

.section-body {
  flex: 1;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
  line-height: 1.3;
}

.content-block {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
}

.content-text {
  font-size: 16px;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 25px;
}

@media (max-width: 767.98px) {
  .terms-section {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 45px;
  }
  
  .marker-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 22px;
    text-align: center;
  }
  
  .content-block {
    padding: 25px 20px;
  }
}

/* Emphasis Boxes */
.emphasis-box {
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
}

.emphasis-box:last-child {
  margin-bottom: 0;
}

.emphasis-box.educational {
  background: linear-gradient(135deg, #d3f9d8 0%, #ffffff 100%);
  border-left: 5px solid #2b8a3e;
}

.emphasis-box.disclaimer {
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  border-left: 5px solid #ff6b6b;
}

.emphasis-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.emphasis-box.educational .emphasis-title {
  color: #2b8a3e;
}

.emphasis-box.disclaimer .emphasis-title {
  color: #c92a2a;
}

.emphasis-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.emphasis-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: #495057;
}

.emphasis-box.educational .emphasis-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2b8a3e;
  font-weight: 700;
  font-size: 18px;
}

.emphasis-box.disclaimer .emphasis-list li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ff6b6b;
  font-weight: 700;
  font-size: 18px;
}

/* Responsibility Grid */
.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.responsibility-card {
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.responsibility-card:hover {
  border-color: #4db87a;
  box-shadow: 0 8px 25px rgba(77,184,122,0.15);
  transform: translateY(-5px);
}

.card-number {
  position: absolute;
  top: -10px;
  right: 15px;
  font-size: 80px;
  font-weight: 800;
  color: rgba(77,184,122,0.08);
  line-height: 1;
}

.card-content {
  position: relative;
  z-index: 1;
}

.card-heading {
  font-size: 17px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 12px;
}

.card-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: #495057;
  margin: 0;
}

/* Usage Rules */
.usage-rules {
  display: grid;
  gap: 25px;
  margin-top: 25px;
}

.rule-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  border-radius: 12px;
  align-items: flex-start;
}

.rule-item.allowed {
  background: linear-gradient(135deg, #d3f9d8 0%, #ffffff 100%);
  border: 2px solid #2b8a3e;
}

.rule-item.prohibited {
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  border: 2px solid #ff6b6b;
}

.rule-icon {
  font-size: 40px;
  font-weight: 700;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rule-item.allowed .rule-icon {
  background: #2b8a3e;
  color: #ffffff;
}

.rule-item.prohibited .rule-icon {
  background: #ff6b6b;
  color: #ffffff;
}

.rule-content {
  flex: 1;
}

.rule-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.rule-item.allowed .rule-title {
  color: #2b8a3e;
}

.rule-item.prohibited .rule-title {
  color: #c92a2a;
}

.rule-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rule-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #495057;
}

.rule-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 18px;
}

.rule-item.allowed .rule-list li:before {
  color: #2b8a3e;
}

.rule-item.prohibited .rule-list li:before {
  color: #ff6b6b;
}

@media (max-width: 767.98px) {
  .rule-item {
    flex-direction: column;
    text-align: center;
  }
  
  .rule-icon {
    margin: 0 auto;
  }
}

/* Intellectual Property Box */
.intellectual-property-box {
  background: #ffffff;
  border: 2px solid #4db87a;
  border-radius: 10px;
  padding: 25px;
  margin-top: 25px;
}

.ip-text {
  font-size: 15px;
  line-height: 1.8;
  color: #495057;
  margin-bottom: 15px;
}

.ip-text:last-child {
  margin-bottom: 0;
}

.ip-text strong {
  color: #2a2a2a;
  font-weight: 700;
}

/* Links Disclaimer */
.links-disclaimer {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  margin-top: 25px;
}

.disclaimer-point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.75;
  color: #495057;
}

.disclaimer-point:last-child {
  margin-bottom: 0;
}

.point-bullet {
  color: #4db87a;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

/* Modification Notice */
.modification-notice {
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
  border: 2px solid #ffa94d;
  border-radius: 10px;
  padding: 25px;
  margin-top: 25px;
}

.notice-badge {
  display: inline-block;
  background: #ffa94d;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.notice-paragraph {
  font-size: 15px;
  line-height: 1.8;
  color: #495057;
  margin: 0;
}

/* Final Warning Section */
.final-warning-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 15px;
  padding: 45px;
  margin-top: 70px;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.warning-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.warning-icon {
  font-size: 50px;
  animation: warningBlink 2s ease-in-out infinite;
}

@keyframes warningBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.warning-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.warning-content {
  color: rgba(255,255,255,0.9);
}

.warning-text {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.warning-text:last-child {
  margin-bottom: 0;
}

.warning-text.emphasis-strong {
  font-size: 17px;
  font-weight: 700;
  color: #ff6b6b;
  padding: 20px;
  background: rgba(255,107,107,0.15);
  border-left: 4px solid #ff6b6b;
  border-radius: 8px;
}

@media (max-width: 767.98px) {
  .final-warning-section {
    padding: 35px 25px;
  }
  
  .warning-header {
    flex-direction: column;
    text-align: center;
  }
  
  .warning-icon {
    font-size: 40px;
  }
  
  .warning-title {
    font-size: 24px;
  }
  
  .warning-text {
    font-size: 15px;
  }
}

/* Acceptance Box */
.acceptance-box {
  background: linear-gradient(135deg, #e7f5ff 0%, #d0ebff 100%);
  border: 3px solid #339af0;
  border-radius: 15px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(51,154,240,0.2);
}

.acceptance-title {
  font-size: 26px;
  font-weight: 700;
  color: #1971c2;
  margin-bottom: 18px;
}

.acceptance-text {
  font-size: 16px;
  line-height: 1.8;
  color: #495057;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767.98px) {
  .acceptance-box {
    padding: 28px 22px;
  }
  
  .acceptance-title {
    font-size: 22px;
  }
  
  .acceptance-text {
    font-size: 15px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.terms-section {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.terms-section:nth-child(1) { animation-delay: 0.1s; }
.terms-section:nth-child(2) { animation-delay: 0.2s; }
.terms-section:nth-child(3) { animation-delay: 0.3s; }
.terms-section:nth-child(4) { animation-delay: 0.4s; }
.terms-section:nth-child(5) { animation-delay: 0.5s; }
.terms-section:nth-child(6) { animation-delay: 0.6s; }
.terms-section:nth-child(7) { animation-delay: 0.7s; }

/* Responsive */
@media (max-width: 767.98px) {
  .terms-main-section {
    padding: 50px 0;
  }
  
  .terms-intro {
    margin-bottom: 45px;
  }
  
  .intro-title {
    font-size: 26px;
  }
  
  .intro-text {
    font-size: 15px;
  }
  
  .responsibility-grid {
    grid-template-columns: 1fr;
  }
}

/* Print Styles */
@media print {
  .site-navbar,
  .footer-area {
    display: none;
  }
  
  .terms-hero {
    height: auto;
    padding: 30px 0;
    background: #ffffff;
    color: #000000;
  }
  
  .hero-icon,
  .hero-decoration {
    display: none;
  }
  
  .terms-main-section {
    padding: 20px 0;
  }
  
  .key-notice-banner,
  .final-warning-section,
  .acceptance-box {
    background: #ffffff;
    border: 2px solid #000000;
    color: #000000;
  }
  
  .terms-section {
    page-break-inside: avoid;
  }
}













/* Thank You Page Styles */

.thankyou-main-section {
  min-height: 100vh;
  padding: 100px 0 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.thankyou-main-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(77,184,122,0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(77,184,122,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.thankyou-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Success Animation */
.success-animation {
  margin-bottom: 40px;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-circle {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  background: linear-gradient(135deg, #4db87a 0%, #3da065 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(77,184,122,0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 10px 40px rgba(77,184,122,0.4);
  }
  50% {
    box-shadow: 0 10px 60px rgba(77,184,122,0.6);
  }
}

.checkmark-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkmark {
  width: 80px;
  height: 80px;
  stroke-width: 3;
  stroke: #ffffff;
  stroke-miterlimit: 10;
  animation: fillCheckmark 0.4s ease-in-out 0.4s forwards, scaleCheckmark 0.3s ease-in-out 0.9s both;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke: rgba(255,255,255,0.3);
  fill: none;
  animation: strokeCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: strokeCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes strokeCircle {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes strokeCheck {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes fillCheckmark {
  100% {
    transform: scale(1.1);
  }
}

@keyframes scaleCheckmark {
  0%, 100% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
}

/* Main Message */
.thankyou-message {
  margin-bottom: 60px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.thankyou-title {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.2;
}

.thankyou-subtitle {
  font-size: 22px;
  color: #6c757d;
  font-weight: 400;
  margin: 0;
}

/* Info Cards */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #4db87a;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(77,184,122,0.2);
}

.card-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 12px;
}

.card-text {
  font-size: 15px;
  line-height: 1.7;
  color: #495057;
  margin: 0;
}

/* What's Next Section */
.whats-next-section {
  margin-bottom: 50px;
  animation: fadeInUp 0.6s ease-out 0.7s both;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.next-steps {
  display: grid;
  gap: 25px;
}

.step-item {
  display: flex;
  gap: 25px;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  text-align: left;
  transition: all 0.3s ease;
}

.step-item:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateX(10px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4db87a 0%, #3da065 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(77,184,122,0.3);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 10px;
}

.step-description {
  font-size: 15px;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 15px;
}

.step-link {
  color: #4db87a;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.step-link:hover {
  color: #3da065;
  transform: translateX(5px);
}

/* CTA Buttons */
.cta-buttons-section {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.9s both;
}

.btn-primary-cta,
.btn-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 35px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Poppins', Arial, sans-serif;
}

.btn-primary-cta {
  background: linear-gradient(135deg, #4db87a 0%, #3da065 100%);
  color: #ffffff;
  box-shadow: 0 5px 20px rgba(77,184,122,0.3);
}

.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(77,184,122,0.5);
}

.btn-secondary-cta {
  background: #ffffff;
  color: #4db87a;
  border: 2px solid #4db87a;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.btn-secondary-cta:hover {
  background: #4db87a;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(77,184,122,0.3);
}

.btn-primary-cta svg,
.btn-secondary-cta svg {
  transition: transform 0.3s ease;
}

.btn-primary-cta:hover svg {
  transform: scale(1.2);
}

.btn-secondary-cta:hover svg {
  transform: rotate(360deg);
}

/* Additional Note */
.additional-note {
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
  border: 2px solid #ffa94d;
  border-radius: 10px;
  padding: 25px;
  animation: fadeInUp 0.6s ease-out 1.1s both;
}

.note-text {
  font-size: 14px;
  line-height: 1.75;
  color: #495057;
  margin: 0;
}

.note-text strong {
  color: #e67700;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 767.98px) {
  .thankyou-main-section {
    padding: 60px 0 50px 0;
  }
  
  .success-circle {
    width: 120px;
    height: 120px;
  }
  
  .checkmark {
    width: 60px;
    height: 60px;
  }
  
  .thankyou-title {
    font-size: 32px;
  }
  
  .thankyou-subtitle {
    font-size: 18px;
  }
  
  .info-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
  
  .step-number {
    margin: 0 auto;
  }
  
  .step-item:hover {
    transform: translateY(-5px) translateX(0);
  }
  
  .cta-buttons-section {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary-cta,
  .btn-secondary-cta {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Tablet */
@media (max-width: 991.98px) and (min-width: 768px) {
  .info-cards-grid {
    grid-template-columns: 1fr;
  }
}