/* Variables */
:root {
  --primary-color: #0056b3;
  --secondary-color: #004080;
  --accent-color: #ff9800;
  --text-color: #333;
  --text-light: #666;
  --text-white: #fff;
  --bg-light: #f5f5f5;
  --bg-white: #fff;
  --border-color: #ddd;
  --success-color: #28a745;
  --error-color: #dc3545;
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Montserrat", sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 4px;
}

/* Base Styles */
body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  font-size: 16px;
  background-color: var(--bg-white);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Custom Container (complementing Bootstrap) */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.section-header h2:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Custom Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: var(--text-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
}

/* Header Styles */
.site-header {
  position: relative;
  z-index: 100;
}

.top-bar {
  background-color: var(--secondary-color);
  padding: 10px 0;
  color: var(--text-white);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info a {
  color: var(--text-white);
  margin-right: 20px;
  font-size: 14px;
}

.contact-info a:hover {
  color: var(--accent-color);
}

.contact-info-form a {
  color: var(--text-light);
  margin-right: 20px;
  font-size: 14px;
}

.contact-info-form a:hover {
  color: var(--accent-color);
}

.social-links a {
  color: var(--text-white);
  margin-left: 15px;
  font-size: 14px;
}

.social-links a:hover {
  color: var(--accent-color);
}

.language-selector a {
  color: var(--text-white);
  margin-left: 10px;
  font-size: 14px;
  text-transform: uppercase;
}

.language-selector a.active {
  color: var(--accent-color);
  font-weight: 600;
}

.main-header {
  background-color: var(--bg-white);
  padding: 15px 0;
  box-shadow: var(--shadow);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 60px;
}

.main-nav .nav-menu {
  display: flex;
  margin: 0;
  padding: 0;
}

.main-nav .nav-menu li {
  margin-left: 30px;
  list-style: none;
}

.main-nav .nav-menu li a {
  color: var(--text-color);
  font-weight: 600;
  padding: 10px 0;
  position: relative;
}

.main-nav .nav-menu li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: var(--transition);
}

.main-nav .nav-menu li a:hover:after,
.main-nav .nav-menu li a.active:after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.slider-container {
  position: relative;
}

.slide {
  position: relative;
  height: 600px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--text-white);
  max-width: 800px;
  padding: 0 20px;
  z-index: 1;
}

.slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.slide-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
  font-size: 18px;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: var(--text-light);
}

/* Latest News */
.latest-news {
  padding: 80px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.news-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.news-card:hover {
  box-shadow: var(--shadow-lg);
}

.news-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 10px;
  text-align: center;
  border-radius: var(--border-radius);
  min-width: 60px;
}

.news-date .day {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.news-date .month {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
}

.news-content {
  padding: 20px;
}

.news-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.news-content h3 a {
  color: var(--text-color);
}

.news-content h3 a:hover {
  color: var(--primary-color);
}

.news-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.read-more {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
}

.read-more i {
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover i {
  transform: translateX(5px);
}

.view-all {
  text-align: center;
  margin-top: 40px;
}

/* Upcoming Events */
.upcoming-events {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.events-grid {
  display: grid;
  gap: 30px;
}

.event-card {
  display: flex;
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.event-card:hover {
  box-shadow: var(--shadow-lg);
}

.event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 20px;
  min-width: 100px;
  text-align: center;
}

.event-date .day {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 16px;
  text-transform: uppercase;
}

.event-content {
  padding: 20px;
  flex: 1;
}

.event-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.event-content h3 a {
  color: var(--text-color);
}

.event-content h3 a:hover {
  color: var(--primary-color);
}

.event-meta {
  display: flex;
  margin-bottom: 15px;
}

.event-meta span {
  display: flex;
  align-items: center;
  color: var(--text-light);
  margin-right: 20px;
  font-size: 14px;
}

.event-meta span i {
  margin-right: 5px;
  color: var(--primary-color);
}

.event-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-white);
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 18px;
}

/* Page Header */
.page-header {
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  margin-bottom: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
  color: var(--text-white);
}

.breadcrumb-item.active {
  color: var(--accent-color);
}

/* News Listing */
.news-listing {
  padding: 80px 0;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  margin: 0 5px;
  border-radius: var(--border-radius);
  background-color: var(--bg-white);
  color: var(--text-color);
  font-weight: 600;
  box-shadow: var(--shadow);
}

.page-link.current {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.page-link:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.page-link.prev i,
.page-link.next i {
  margin: 0 5px;
}

/* Single News */
.single-news {
  padding: 80px 0;
}

.news-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.news-meta {
  display: flex;
  margin-bottom: 20px;
}

.news-meta span {
  display: flex;
  align-items: center;
  color: var(--text-light);
  margin-right: 20px;
  font-size: 14px;
}

.news-meta span i {
  margin-right: 5px;
  color: var(--primary-color);
}

.featured-image {
  margin-bottom: 30px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.news-text {
  margin-bottom: 30px;
}

.news-text p {
  margin-bottom: 20px;
}

.news-share {
  display: flex;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.news-share span {
  margin-right: 15px;
  font-weight: 600;
}

.news-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  color: var(--text-white);
}

.news-share a.facebook {
  background-color: #3b5998;
}

.news-share a.twitter {
  background-color: #1da1f2;
}

.news-share a.whatsapp {
  background-color: #25d366;
}

.sidebar-widget {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

.sidebar-widget h3 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.sidebar-widget ul li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-widget ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-news li a {
  display: flex;
  align-items: center;
}

.recent-news .thumb {
  width: 80px;
  height: 60px;
  margin-right: 15px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.recent-news .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-news .content h4 {
  font-size: 16px;
  margin-bottom: 5px;
  transition: var(--transition);
}

.recent-news li a:hover .content h4 {
  color: var(--primary-color);
}

.recent-news .content .date {
  font-size: 12px;
  color: var(--text-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 80px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.related-news {
  padding: 80px 0;
  background-color: var(--bg-light);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.info-items {
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  margin-bottom: 20px;
}

.info-item .icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 20px;
}

.info-item .content h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.info-item .content p {
  color: var(--text-light);
}

.social-links h3 {
  margin-bottom: 15px;
}

.social-links .links {
  display: flex;
}

.social-links .links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--text-white);
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition);
}

.social-links .links a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

.contact-form-wrapper {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.alert {
  padding: 15px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.alert i {
  margin-right: 10px;
  font-size: 20px;
}

.alert-success {
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--success-color);
}

.alert-danger {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--error-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.form-group .required {
  color: var(--error-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.map-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  text-align: center;
}

.map-container {
  position: relative;
  height: 500px;
  margin-top: 30px;
}

#map {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.directions-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

/* Footer */
.site-footer {
  background-color: var(--secondary-color);
  color: var(--text-white);
}

.footer-top {
  padding: 80px 0 40px;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.widget h3 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.widget h3:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

.contact-widget ul li {
  display: flex;
  margin-bottom: 15px;
}

.contact-widget ul li i {
  margin-right: 10px;
  color: var(--accent-color);
}

.contact-widget ul li a {
  color: var(--text-white);
}

.contact-widget ul li a:hover {
  color: var(--accent-color);
}

.links-widget ul li {
  margin-bottom: 10px;
}

.links-widget ul li a {
  color: var(--text-white);
  transition: var(--transition);
}

.links-widget ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.social-widget .social-links {
  display: flex;
}

.social-widget .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition);
}

.social-widget .social-links a:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin-right: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

/* Slick Slider Customization */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-prev {
  left: 20px;
}

.slick-next {
  right: 20px;
}

.slick-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  font-size: 0;
  cursor: pointer;
  padding: 0;
}

.slick-dots li.slick-active button {
  background-color: white;
}

/* Bootstrap Overrides */
.row {
  margin-right: -15px;
  margin-left: -15px;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  padding-right: 15px;
  padding-left: 15px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .slide-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 992px) {
  .section-header h2 {
    font-size: 30px;
  }

  .slide {
    height: 500px;
  }

  .slide-content h2 {
    font-size: 36px;
  }

  .news-content-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 80px 20px 20px;
    transition: var(--transition);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .main-nav .nav-menu.active {
    right: 0;
  }

  .main-nav .nav-menu li {
    margin: 0 0 20px;
  }

  .slide {
    height: 400px;
  }

  .slide-content h2 {
    font-size: 30px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content p {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .top-bar .container {
    flex-direction: column;
    gap: 10px;
  }

  .slide {
    height: 350px;
  }

  .slide-content h2 {
    font-size: 24px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .event-card {
    flex-direction: column;
  }

  .event-date {
    width: 100%;
    padding: 10px;
    flex-direction: row;
    justify-content: center;
  }

  .event-date .day {
    margin-right: 5px;
  }

  .news-meta {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .slide-content h2 {
    font-size: 20px;
  }

  .slide {
    height: 300px;
  }

  .top-bar .container {
    flex-direction: column;
    align-items: center;
  }

  .contact-info,
  .social-links,
  .language-selector {
    margin-bottom: 5px;
  }

  .main-header .container {
    flex-direction: column;
  }

  .logo {
    margin-bottom: 10px;
  }
}



.user-login .login-icon {
  color: var(--text-white);
  font-size: 20px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.user-login .login-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--accent-color);
}