:root {
  --primary-color: #1B365D;  /* Dark navy blue from MGS logo */
  --secondary-color: #2B4B7E; /* Lighter shade of navy blue */
  --text-color: #333;
  --background-color: #fff;
  --border-color: #e0e0e0;
  --hover-bg: rgba(27, 54, 93, 0.1); /* Lighter version of primary color */
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  transition: var(--transition);
  flex-shrink: 0;
  padding: 10px 0;
  position: relative;
  display: block;
  width: 180px;
  height: 60px;
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  height: 60px;
  width: 180px;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
}

.logo-white {
  opacity: 1;
}

.logo-color {
  opacity: 0;
}

/* When header is scrolled */
.header.scrolled .logo-white {
  opacity: 0;
}

.header.scrolled .logo-color {
  opacity: 1;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  display: block;
  transition: var(--transition);
  border-radius: 6px;
  white-space: nowrap;
}

.header.scrolled .nav-list a {
  color: var(--text-color);
}

.nav-list a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.header.scrolled .nav-list a:hover {
  color: var(--primary-color);
  background: var(--hover-bg);
}

.dropdown {
  position: relative;
}

.dropdown > a::after {
  content: '';
  margin-left: 5px;
  font-size: 12px;
  transition: var(--transition);
}

.dropdown:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  margin-top: 10px;
  padding: 8px 0;
  border-radius: 8px;
  background: var(--primary-color);
  box-shadow: 0 8px 16px rgba(27, 54, 93, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  list-style: none;
}

.header.scrolled .dropdown-menu {
  background: var(--primary-color);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--primary-color);
}

.header.scrolled .dropdown-menu::before {
  border-bottom-color: var(--primary-color);
}

.dropdown-menu a {
  color: #fff !important;
  padding: 10px 16px;
  font-size: 15px;
  white-space: nowrap;
  display: block;
  transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.header.scrolled .dropdown-menu a {
  color: #fff !important;
}

.header.scrolled .dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.dropdown-menu::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.cta-button {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid #fff !important;
  padding: 10px 24px !important;
  border-radius: 25px;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

.cta-button:hover {
  background: #fff !important;
  color: var(--primary-color) !important;
}

.header.scrolled .cta-button {
  background: var(--primary-color) !important;
  color: #fff !important;
  border-color: var(--primary-color) !important;
}

.header.scrolled .cta-button:hover {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: var(--transition);
  color: #fff;
}

.header.scrolled .hamburger {
  color: var(--text-color);
}

.hamburger:hover {
  background: var(--hover-bg);
}

@media (max-width: 1200px) {
  .container {
    padding: 15px;
  }
  
  .nav-list {
    gap: 15px;
  }
  
  .nav-list a {
    font-size: 14px;
    padding: 6px 10px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-list {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--primary-color);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    gap: 10px;
    align-items: flex-start;
  }

  .nav-list a {
    width: 100%;
    text-align: left;
    padding: 12px 15px;
  }

  .header.scrolled .nav-list {
    background: var(--background-color);
  }

  .nav-list.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    margin: 5px 0;
    padding-left: 15px;
    min-width: 100%;
    box-shadow: none;
    display: none;
    background: rgba(27, 54, 93, 0.95);
  }

  .dropdown.active .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown > a::after {
    float: right;
    transform: rotate(-90deg);
  }

  .dropdown.active > a::after {
    transform: rotate(0);
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding-left: 30px;
  }

  .cta-button {
    margin: 10px 0;
    width: auto;
  }
}

/* Remove all scroll indicator styles */

/* About Organization Section Styles */
.about-organization {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-content {
  flex: 1;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #2B4B7E;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1B365D;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 35px;
}

.read-more-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #E52233;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #c41e2d;
}

.red-btn {
  background-color: #E52233 !important;
  color: white !important;
}

.red-btn:hover {
  background-color: #c41e2d !important;
}

/* Our Businesses Section Styles */
.our-businesses {
  padding: 100px 0;
  text-align: center;
}

.businesses-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.businesses-header {
  margin-bottom: 60px;
}

.businesses-title {
  font-size: 40px;
  font-weight: 700;
  color: #1B365D;
  margin-bottom: 20px;
}

.businesses-description {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.businesses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.business-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.business-card:hover {
  transform: translateY(-5px);
}

.business-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(27, 54, 93, 0.9), rgba(27, 54, 93, 0));
  padding: 20px;
  color: white;
  text-align: center;
}

.business-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.business-description {
  font-size: 14px;
  opacity: 0.9;
  display: none; /* Hidden by default, shown on hover */
}

.business-card:hover .business-description {
  display: block;
}

.see-all-btn {
  display: inline-block;
  padding: 14px 40px;
  background-color: #E52233;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.see-all-btn:hover {
  background-color: #c41e2d;
}

.media-container .see-all-btn {
  display: block;
  margin: 40px auto 0;
  text-align: center;
  width: fit-content;
}

/* CEO Message Section Styles */
.ceo-message {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.ceo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.ceo-content {
  flex: 1;
}

.ceo-image {
  flex: 1;
  text-align: center;
}

.ceo-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.message-quote {
  font-size: 20px;
  font-style: italic;
  color: #2B4B7E;
  margin-bottom: 30px;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
  border-left: 3px solid #1B365D;
}

.ceo-name {
  font-size: 20px;
  font-weight: 600;
  color: #1B365D;
  margin-bottom: 5px;
}

.ceo-title {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

/* Sustainability Section Styles */
.sustainability-section {
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
}

.sustainability-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.4) 100%);
}

.sustainability-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  position: relative;
  z-index: 1;
}

.sustainability-content {
  flex: 1;
  max-width: 600px;
  padding-right: 50px;
}

.sustainability-label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0.9;
}

.sustainability-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.sustainability-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.sustainability-pillars {
  flex: 1;
  max-width: 600px;
}

.pillars-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pillar-item {
  text-align: center;
}

.pillar-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.pillar-icon i {
  font-size: 28px;
}

.pillar-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.pillar-item:hover .pillar-icon {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.pillar-link {
  color: white;
  text-decoration: none;
  display: block;
}

/* Impact Section Styles */
.impact-section {
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.impact-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-start;
}

.impact-content-box {
  background-color: white;
  padding: 50px;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.impact-title {
  color: #1B365D;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
}

.impact-description {
  color: #555;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.impact-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.stat-item {
  text-align: center;
  padding: 0 10px;
}

.stat-number {
  color: #1B365D;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-label {
  color: #555;
  font-size: 16px;
}

.impact-read-more {
  display: inline-block;
  color: #E52233;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding-bottom: 5px;
  position: relative;
}

.impact-read-more:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #E52233;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.impact-read-more:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Media and News Section Styles */
.media-news-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.media-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.news-room-title {
  font-size: 36px;
  font-weight: 700;
  color: #1B365D;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.news-room-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: #2B4B7E;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  grid-gap: 30px;
  grid-template-areas: 
    "card1 card1 card2"
    "card3 card3 card3";
}

.news-card:nth-child(1) {
  grid-area: card1;
}

.news-card:nth-child(2) {
  grid-area: card2;
}

.news-card:nth-child(3) {
  grid-area: card3;
}

.news-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.news-card {
  background-color: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover,
.news-card-link:hover .news-card {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.news-image {
  height: 280px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image img,
.news-card-link:hover .news-card .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-label {
  font-size: 12px;
  font-weight: 600;
  color: #2B4B7E;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.news-title {
  font-size: 18px;
  font-weight: 600;
  color: #1B365D;
  margin-bottom: 15px;
  line-height: 1.4;
}

.news-preview {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.news-preview p {
  margin: 0;
}

.news-date {
  font-size: 12px;
  font-weight: 500;
  color: #888;
  margin-top: auto;
  padding-top: 10px;
}

/* Dark card style */
.dark-card {
  background-color: #1B365D;
}

.dark-card .news-label {
  color: #ffffff;
  opacity: 0.9;
}

.dark-card .news-title {
  color: #ffffff;
}

.dark-card .news-date {
  color: #cccccc;
}

/* Video card style */
.video-card {
  position: relative;
}

.video-thumbnail {
  height: 100%;
  position: relative;
}

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

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-button i {
  color: #ffffff;
  font-size: 24px;
}

.video-card:hover .play-button {
  background-color: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Investor Relations Section Styles */
.investor-relations-section {
  padding: 100px 0;
  background-color: #f8f9fa;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.investor-relations-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(27, 54, 93, 0.85) 0%, rgba(43, 75, 126, 0.75) 100%);
  z-index: 1;
}

.investor-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.investor-content-wrapper {
  text-align: center;
}

.investor-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 60px;
  text-align: center;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.investor-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.investor-info-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.investor-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 1);
}

.info-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1B365D 0%, #2B4B7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.investor-info-card:hover .info-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(27, 54, 93, 0.4);
}

.info-icon i {
  font-size: 32px;
  color: #ffffff;
}

.info-title {
  font-size: 24px;
  font-weight: 600;
  color: #1B365D;
  margin-bottom: 15px;
  line-height: 1.3;
}

.info-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.read-more-btn {
  display: inline-block;
  background: linear-gradient(135deg, #E52233 0%, #c71e2d 100%);
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(229, 34, 51, 0.3);
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 34, 51, 0.4);
  background: linear-gradient(135deg, #c71e2d 0%, #a01926 100%);
}

/* Legacy styles for backward compatibility */
.investor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
}

.investor-card {
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
}

.investor-card:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.stock-card {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

.investor-card:last-child {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.investor-image {
  height: 180px;
  overflow: hidden;
}

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

.investor-content {
  padding: 25px;
}

.right-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.investor-label {
  font-size: 12px;
  font-weight: 600;
  color: #2B4B7E;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.investor-heading {
  font-size: 18px;
  font-weight: 600;
  color: #1B365D;
  margin-bottom: 15px;
  line-height: 1.4;
}

.investor-preview {
  display: flex;
  position: relative;
  padding-left: 15px;
}

.preview-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #2B4B7E;
}

.investor-preview p {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Stock Card Styles */
.stock-content {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
}

.stock-company {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.company-logo {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.company-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.company-info {
  flex: 1;
}

.company-name {
  font-size: 16px;
  font-weight: 600;
  color: #1B365D;
  margin-bottom: 5px;
}

.stock-change {
  font-size: 14px;
  color: #777;
}

.stock-change.positive {
  color: #2ecc71;
}

.stock-change.negative {
  color: #e74c3c;
}

.stock-price {
  margin-bottom: 20px;
  text-align: center;
}

.price-value {
  font-size: 42px;
  font-weight: 700;
  color: #1B365D;
}

.currency {
  font-size: 16px;
  font-weight: 400;
  margin-left: 5px;
}

.stock-details {
  display: flex;
  flex-direction: column;
}

.stock-metrics {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.metric {
  text-align: center;
  flex: 1;
}

.metric-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 5px;
}

.metric-value {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.stock-indicators {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
}

.indicator.active {
  background-color: #E52233;
}

/* Contact Us Section Styles */
.contact-section {
  padding: 100px 0;
  background-color: #1B365D;
  color: white;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.contact-info {
  flex: 1;
  max-width: 500px;
}

.contact-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 20px;
  color: white;
}

.contact-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-text p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-socials {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #2B4B7E;
  transform: translateY(-3px);
}

.contact-form-wrapper {
  flex: 1;
  max-width: 550px;
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2B4B7E;
  box-shadow: 0 0 0 2px rgba(43, 75, 126, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background-color: #1B365D;
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #2B4B7E;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .sustainability-title {
    font-size: 40px;
  }
  
  .pillars-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .about-container, .ceo-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-content, .about-image, .ceo-content, .ceo-image {
    flex: none;
    width: 100%;
  }
  
  .businesses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sustainability-container {
    flex-direction: column;
  }
  
  .sustainability-content {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 60px;
  }
  
  .sustainability-pillars {
    max-width: 100%;
  }
  
  .impact-container {
    justify-content: center;
  }
  
  .impact-content-box {
    max-width: 100%;
  }
  
  .news-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
      "card1 card1"
      "card2 card3";
  }
  
  .news-image {
    height: 220px;
  }
  
  .investor-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .investor-card:first-child,
  .stock-card,
  .investor-card:last-child {
    grid-column: 1 / 2;
    grid-row: auto;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .contact-info,
  .contact-form-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .businesses-grid {
    grid-template-columns: 1fr;
  }
  
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .sustainability-section {
    padding: 80px 0;
  }
  
  .sustainability-title {
    font-size: 36px;
  }
  
  .impact-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .impact-section {
    min-height: auto;
  }
  
  .impact-content-box {
    padding: 30px;
  }
  
  .media-news-section {
    padding: 60px 0;
  }
  
  .news-room-title {
    font-size: 30px;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "card1"
      "card2"
      "card3";
  }
  
  .investor-relations-section {
    padding: 60px 0;
    background-attachment: scroll;
  }
  
  .investor-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .investor-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .investor-info-card {
    padding: 30px 20px;
  }
  
  .info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .info-icon i {
    font-size: 24px;
  }
  
  .info-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .info-description {
    font-size: 14px;
  }
  
  .read-more-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .investor-info-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .investor-info-card {
    padding: 25px 15px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 70px 0;
  }
  
  .contact-title {
    font-size: 30px;
  }
  
  .contact-form-wrapper {
    padding: 30px;
  }
}

/* Careers card style */
.careers-card {
  background-color: #f8f9fa;
  border-left: 4px solid #E52233;
}

.careers-card .news-label {
  color: #E52233;
}

.careers-link {
  display: inline-block;
  color: #E52233;
  font-weight: 600;
  text-decoration: none;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.careers-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.careers-link:hover {
  color: #1B365D;
}

.careers-link:hover i {
  transform: translateX(5px);
}

/* Careers Section */
.careers-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.careers-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.careers-header {
  text-align: center;
  margin-bottom: 60px;
}

.careers-title {
  font-size: 36px;
  font-weight: 700;
  color: #1B365D;
  margin-bottom: 15px;
}

.careers-subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 400;
}

.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.careers-info {
  padding-right: 20px;
}

.info-title {
  font-size: 28px;
  font-weight: 600;
  color: #1B365D;
  margin-bottom: 20px;
}

.info-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.careers-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.benefit-item i {
  color: #2B4B7E;
  font-size: 16px;
  width: 20px;
}

.careers-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.careers-btn {
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.careers-btn.primary {
  background-color: #2B4B7E;
  color: white;
  border: 2px solid #2B4B7E;
}

.careers-btn.primary:hover {
  background-color: #1B365D;
  border-color: #1B365D;
}

.careers-btn.secondary {
  background-color: transparent;
  color: #2B4B7E;
  border: 2px solid #2B4B7E;
}

.careers-btn.secondary:hover {
  background-color: #2B4B7E;
  color: white;
}

.careers-image {
  text-align: center;
}

.careers-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Careers Section */
@media (max-width: 768px) {
  .careers-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .careers-info {
    padding-right: 0;
    text-align: center;
  }
  
  .careers-benefits {
    grid-template-columns: 1fr;
  }
  
  .careers-title {
    font-size: 28px;
  }
  
  .info-title {
    font-size: 24px;
  }
  
  .careers-actions {
    justify-content: center;
  }
}

/* Partners Section */
.partners-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.partners-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.partners-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.partner-item {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.partner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: inherit;
}

.partner-logo {
  max-width: 120px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.partner-item:hover .partner-logo {
  transform: scale(1.05);
}

.partner-name {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.4;
}

/* Responsive Design for Partners */
@media (max-width: 768px) {
  .partners-section {
    padding: 60px 0;
  }
  
  .partners-title {
    font-size: 2rem;
  }
  
  .partners-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .partner-item {
    padding: 25px 15px;
    min-height: 180px;
  }
  
  .partner-logo {
    max-width: 100px;
    max-height: 70px;
  }
  
  .partner-name {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .partner-item {
    padding: 20px 15px;
    min-height: 160px;
  }
  
  .partner-logo {
    max-width: 90px;
    max-height: 60px;
  }
}