/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #000;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background-color: #F4CE69;
  padding: 20px 0;
  position: relative;
  z-index: 100;
  border: 1px solid #000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 50px;
  width: auto;
}

/* Hamburger Menu Button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.hamburger:hover {
  transform: scale(1.1);
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger Animation to X */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Navigation Menu */
.nav-menu {
  position: fixed;
  top: 90px;
  right: -100%;
  width: 280px;
  height: calc(100vh - 90px);
  background-color: #F4CE69;
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  gap: 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
}

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

.nav-menu li a {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  transition: opacity 0.3s ease;
  display: block;
}

.nav-menu li a:hover {
  opacity: 0.7;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  background-image: url('../images/Jolo-Landing-Page-Image.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(176, 190, 197, 0.85) 0%, rgba(176, 190, 197, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  color: #000;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-subtitle {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 400;
}

.btn-primary {
  display: inline-block;
  background-color: #B3E5E0;
  color: #000;
  font-size: 32px;
  font-weight: 700;
  padding: 20px 60px;
  border-radius: 50px;
  border: 3px solid #000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #9DD9D3;
  transform: translateY(-2px);
}

.btn-nav {
  background-color: #B3E5E0;
  color: #000;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid #000;
  transition: all 0.3s ease;
}

.btn-nav:hover {
  background-color: #9DD9D3;
}

/* Mobile First - Base styles above are for mobile */

/* Tablet Styles */
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  /* Hamburger still visible on tablet */
  .nav-menu {
    width: 320px;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .header {
    padding: 25px 0;
  }

  .logo-image {
    height: 60px;
  }

  /* Hide hamburger on desktop */
  .hamburger {
    display: none;
  }

  /* Desktop horizontal menu */
  .nav-menu {
    position: static;
    flex-direction: row;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    box-shadow: none;
    gap: 40px;
    align-items: center;
  }

  .nav-menu li a {
    font-size: 20px;
  }

  .hero {
    min-height: calc(100vh - 105px);
  }

  .hero-content {
    padding: 80px 0;
  }

  .hero-title {
    font-size: 64px;
    margin-bottom: 35px;
  }

  .hero-subtitle {
    font-size: 22px;
    margin-bottom: 50px;
  }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
  .container {
    padding: 0 60px;
  }

  .hero-title {
    font-size: 72px;
  }

  .hero-subtitle {
    font-size: 24px;
  }
}

/* ========================================
   FEATURES PAGE STYLES
   ======================================== */

/* Features Section */
.features-section {
  position: relative;
  min-height: 100vh;
  background-color: #FFFFFF;
  padding: 60px 0 80px;
  overflow: hidden;
}

/* Background Decoration */
.features-bg-decoration {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  /* background-image: url('../images/jolo-web-image-2.png'); */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}

.features-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.features-content {
  flex: 1;
}

.features-label {
  font-size: 18px;
  font-weight: 400;
  color: #666;
  margin-bottom: 20px;
}

.features-title {
  font-size: 36px;
  font-weight: 900;
  color: #000;
  line-height: 1.2;
  margin-bottom: 30px;
}

.features-description {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 35px;
  font-weight: 400;
}

.features-list {
  list-style: none;
  margin-bottom: 40px;
  padding-left: 0;
}

.features-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #000;
}

.features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 24px;
  line-height: 1.2;
  color: #000;
}

.features-list li strong {
  font-weight: 700;
}

.features-quote {
  margin: 50px 0 0;
  padding: 0;
  border-left: none;
}

.features-quote p {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
  font-style: italic;
}

.features-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.phone-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  display: block;
}

/* Tablet Styles for Features */
@media (min-width: 768px) {
  .features-section {
    padding: 80px 0 100px;
  }

  .features-bg-decoration {
    width: 700px;
    height: 700px;
    top: -50px;
    right: -150px;
  }

  .features-title {
    font-size: 42px;
  }

  .features-description {
    font-size: 17px;
  }

  .features-list li {
    font-size: 16px;
  }

  .features-quote p {
    font-size: 32px;
  }

  .phone-image {
    max-width: 400px;
  }
}

/* Desktop Styles for Features */
@media (min-width: 1024px) {
  .features-section {
    padding: 100px 0 120px;
  }

  .features-bg-decoration {
    width: 900px;
    height: 900px;
    top: 50px;
    right: -100px;
  }

  .features-grid {
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
  }

  .features-content {
    flex: 1;
    max-width: 55%;
  }

  .features-image {
    flex: 1;
    max-width: 45%;
    position: sticky;
    top: 120px;
  }

  .features-label {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .features-title {
    font-size: 48px;
    margin-bottom: 35px;
  }

  .features-description {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 40px;
  }

  .features-list li {
    font-size: 17px;
    margin-bottom: 25px;
  }

  .features-quote {
    margin-top: 60px;
  }

  .features-quote p {
    font-size: 36px;
  }

  .phone-image {
    max-width: 450px;
  }
}

/* Large Desktop Styles for Features */
@media (min-width: 1440px) {
  .features-bg-decoration {
    width: 1000px;
    height: 1000px;
    top: 100px;
    right: 0;
  }

  .features-title {
    font-size: 56px;
  }

  .features-description {
    font-size: 19px;
  }

  .features-list li {
    font-size: 18px;
  }

  .features-quote p {
    font-size: 40px;
  }

  .phone-image {
    max-width: 500px;
  }
}

/* ========================================
   ABOUT US PAGE STYLES
   ======================================== */

/* About Section */
.about-section {
  position: relative;
  min-height: 100vh;
  background-color: #FFFFFF;
  padding: 60px 0 80px;
  overflow: hidden;
}

/* Background Decoration for About Page */
.about-bg-decoration {
  position: absolute;
  top: 100px;
  right: -200px;
  width: 600px;
  height: 800px;
  background-image: url('../images/jolo-web-image-2.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

.about-content {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.about-heading {
  font-size: 32px;
  font-weight: 900;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-text {
  font-size: 16px;
  line-height: 1.9;
  color: #000;
  font-weight: 400;
  max-width: 900px;
}

.about-text strong {
  font-weight: 700;
}

/* Team Section */
.team-section {
  position: relative;
  z-index: 2;
  margin-top: 80px;
}

.team-heading {
  font-size: 36px;
  font-weight: 900;
  color: #000;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 15%;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.team-name-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.team-name {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.team-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #0077B5;
  border-radius: 4px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.team-linkedin:hover {
  background-color: #005582;
  transform: scale(1.1);
}

.team-linkedin svg {
  width: 14px;
  height: 14px;
  color: #FFFFFF;
}

.team-title {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  margin: 0;
}

/* Tablet Styles for About */
@media (min-width: 768px) {
  .about-section {
    padding: 80px 0 100px;
  }

  .about-bg-decoration {
    width: 700px;
    height: 900px;
    top: 150px;
    right: -150px;
  }

  .about-heading {
    font-size: 38px;
    margin-bottom: 30px;
  }

  .about-text {
    font-size: 17px;
  }

  .team-heading {
    font-size: 42px;
    margin-bottom: 70px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }

  .team-photo {
    width: 200px;
    height: 200px;
  }

  .team-name-container {
    gap: 10px;
  }

  .team-name {
    font-size: 22px;
  }

  .team-linkedin {
    width: 26px;
    height: 26px;
  }

  .team-linkedin svg {
    width: 15px;
    height: 15px;
  }

  .team-title {
    font-size: 17px;
  }
}

/* Desktop Styles for About */
@media (min-width: 1024px) {
  .about-section {
    padding: 100px 0 120px;
  }

  .about-bg-decoration {
    width: 900px;
    height: 1100px;
    top: 200px;
    right: -100px;
  }

  .about-content {
    margin-bottom: 60px;
  }

  .about-heading {
    font-size: 42px;
    margin-bottom: 35px;
  }

  .about-text {
    font-size: 18px;
    line-height: 2;
  }

  .team-section {
    margin-top: 100px;
  }

  .team-heading {
    font-size: 48px;
    margin-bottom: 80px;
  }

  .team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }

  .team-photo {
    width: 220px;
    height: 220px;
    margin-bottom: 25px;
  }

  .team-name-container {
    gap: 12px;
    margin-bottom: 10px;
  }

  .team-name {
    font-size: 23px;
  }

  .team-linkedin {
    width: 28px;
    height: 28px;
  }

  .team-linkedin svg {
    width: 16px;
    height: 16px;
  }

  .team-title {
    font-size: 18px;
  }
}

/* Large Desktop Styles for About */
@media (min-width: 1440px) {
  .about-bg-decoration {
    width: 1000px;
    height: 1200px;
    top: 250px;
    right: 0;
  }

  .about-heading {
    font-size: 48px;
  }

  .about-text {
    font-size: 19px;
  }

  .team-heading {
    font-size: 52px;
  }

  .team-photo {
    width: 240px;
    height: 240px;
  }

  .team-name-container {
    gap: 14px;
  }

  .team-name {
    font-size: 24px;
  }

  .team-linkedin {
    width: 30px;
    height: 30px;
  }

  .team-linkedin svg {
    width: 17px;
    height: 17px;
  }

  .team-title {
    font-size: 19px;
  }
}

/* ========================================
   CONTACT US PAGE STYLES
   ======================================== */

/* Contact Section */
.contact-page {
  position: relative;
  min-height: 100vh;
  background-color: #FFFFFF;
}

.contact-section {
  position: relative;
  min-height: calc(100vh - 90px);
  padding: 60px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background Decorations - Mobile First */
.contact-bg-left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background-image: url('../images/jolo-contact-us-page-left-side.png');
  background-size: contain;
  background-repeat: repeat-y;
  background-position: left center;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.contact-bg-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background-image: url('../images/jolo-contact-us-page-right-side.png');
  background-size: contain;
  background-repeat: repeat-y;
  background-position: right center;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.contact-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.contact-title {
  font-size: 36px;
  font-weight: 900;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

/* Form Message (Success/Error) */
.form-message {
  padding: 16px 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-message-success {
  background-color: #D4EDDA;
  color: #155724;
  border: 2px solid #C3E6CB;
}

.form-message-error {
  background-color: #F8D7DA;
  color: #721C24;
  border: 2px solid #F5C6CB;
}

.contact-form-container {
  background-color: #FFFFFF;
  border: 3px solid #000;
  border-radius: 30px;
  padding: 40px 30px;
  margin-bottom: 30px;
}

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

.form-group {
  width: 100%;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 18px 24px;
  font-size: 16px;
  font-family: inherit;
  color: #000;
  background-color: #F5F5F5;
  border: none;
  border-radius: 15px;
  outline: none;
  transition: background-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #999;
  font-size: 16px;
}

.form-input:focus,
.form-textarea:focus {
  background-color: #EBEBEB;
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.btn-submit {
  background-color: #F4CE69;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 80px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn-submit:hover {
  background-color: #F0C555;
  transform: translateY(-2px);
}

.btn-submit:active {
  transform: translateY(0);
}

.contact-email-info {
  text-align: center;
  margin-top: 30px;
}

.contact-email-info p {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
}

.email-link {
  color: #4A90E2;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.email-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* Tablet Styles for Contact */
@media (min-width: 768px) {
  .contact-section {
    padding: 80px 0;
    min-height: calc(100vh - 90px);
  }

  .contact-bg-left,
  .contact-bg-right {
    width: 200px;
    opacity: 0.6;
  }

  .contact-title {
    font-size: 42px;
    margin-bottom: 50px;
  }

    .form-message {
      font-size: 17px;
      padding: 18px 28px;
    }

  .contact-form-container {
    padding: 50px 40px;
    margin-bottom: 35px;
  }

  .contact-form {
    gap: 25px;
  }

  .form-input,
  .form-textarea {
    padding: 20px 28px;
    font-size: 17px;
  }

  .form-input::placeholder,
  .form-textarea::placeholder {
    font-size: 17px;
  }

  .form-textarea {
    min-height: 160px;
  }

  .btn-submit {
    font-size: 22px;
    padding: 18px 90px;
  }

  .contact-email-info p {
    font-size: 20px;
  }
}

/* Desktop Styles for Contact */
@media (min-width: 1024px) {
  .contact-section {
    padding: 100px 0;
    min-height: calc(100vh - 105px);
  }

  .contact-bg-left,
  .contact-bg-right {
    width: 300px;
    opacity: 0.8;
  }

  .contact-wrapper {
    max-width: 800px;
  }

  .contact-title {
    font-size: 48px;
    margin-bottom: 60px;
  }

    .form-message {
      font-size: 18px;
      padding: 20px 32px;
    }

  .contact-form-container {
    padding: 60px 50px;
    margin-bottom: 40px;
  }

  .contact-form {
    gap: 28px;
  }

  .form-input,
  .form-textarea {
    padding: 22px 30px;
    font-size: 18px;
  }

  .form-input::placeholder,
  .form-textarea::placeholder {
    font-size: 18px;
  }

  .form-textarea {
    min-height: 170px;
  }

  .btn-submit {
    font-size: 24px;
    padding: 20px 100px;
  }

  .contact-email-info p {
    font-size: 22px;
  }
}

/* Large Desktop Styles for Contact */
@media (min-width: 1440px) {

  .contact-bg-left,
  .contact-bg-right {
    width: 400px;
    opacity: 1;
  }

  .contact-wrapper {
    max-width: 900px;
  }

  .contact-title {
    font-size: 52px;
    margin-bottom: 70px;
  }

    .form-message {
      font-size: 19px;
      padding: 22px 36px;
    }

  .contact-form-container {
    padding: 70px 60px;
  }

  .form-input,
  .form-textarea {
    padding: 24px 32px;
    font-size: 19px;
  }

  .form-input::placeholder,
  .form-textarea::placeholder {
    font-size: 19px;
  }

  .form-textarea {
    min-height: 180px;
  }

  .btn-submit {
    font-size: 26px;
    padding: 22px 110px;
  }

  .contact-email-info p {
    font-size: 24px;
  }
}

/* ========================================
                 FOOTER STYLES
   ======================================== */

/* Footer */
.footer {
  background-color: #F5F5F5;
  padding: 50px 0 20px;
    /* margin-top: 60px; */
  border-top: 3px solid #000;
}

.footer-content {
  display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer Sections */
.footer-section {
  display: flex;
  flex-direction: column;
}

/* Footer About Section */
.footer-about {
  max-width: 100%;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo-image {
  height: 50px;
  width: auto;
}

.footer-description {
  font-size: 14px;
    line-height: 1.8;
  color: #000;
  font-weight: 400;
}

/* Footer Headings */
.footer-heading {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

/* Footer Menu */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu li a {
  font-size: 14px;
  color: #000;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.footer-menu li a:hover {
  opacity: 0.7;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #333;
  transform: translateY(-3px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  color: #F4CE69;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 2px solid #000;
  padding-top: 20px;
  text-align: center;
}

.footer-copyright {
  font-size: 14px;
  color: #000;
  font-weight: 400;
  margin: 0;
}

/* Tablet Styles for Footer */
@media (min-width: 768px) {
  .footer {
    padding: 60px 0 25px;
      /* margin-top: 80px; */
  }

    .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
      margin-bottom: 50px;
  }

  .footer-about {
    grid-column: 1 / -1;
    max-width: 600px;
  }

  .footer-logo-image {
    height: 55px;
  }

  .footer-description {
    font-size: 15px;
  }

  .footer-heading {
    font-size: 19px;
  }

  .footer-menu li a {
    font-size: 15px;
  }

  .social-icon {
    width: 44px;
      height: 44px;
  }

  .social-icon svg {
    width: 22px;
      height: 22px;
  }

  .footer-copyright {
    font-size: 15px;
  }
}

/* Desktop Styles for Footer */
@media (min-width: 1024px) {
  .footer {
    padding: 80px 0 30px;
      /* margin-top: 100px; */
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
      margin-bottom: 60px;
  }

  .footer-about {
    grid-column: auto;
    max-width: 100%;
  }

  .footer-logo-image {
    height: 60px;
  }

  .footer-description {
    font-size: 16px;
    line-height: 1.9;
  }

  .footer-heading {
    font-size: 20px;
      margin-bottom: 24px;
  }

  .footer-menu li {
    margin-bottom: 14px;
  }

  .footer-menu li a {
    font-size: 16px;
  }

  .social-icons {
    gap: 18px;
  }

  .social-icon {
    width: 48px;
    height: 48px;
  }

  .social-icon svg {
    width: 24px;
    height: 24px;
  }

  .footer-bottom {
    padding-top: 25px;
  }

  .footer-copyright {
    font-size: 16px;
  }
}

/* Large Desktop Styles for Footer */
@media (min-width: 1440px) {
  .footer {
    padding: 100px 0 35px;
  }

  .footer-content {
    gap: 80px;
      margin-bottom: 70px;
  }

  .footer-logo-image {
    height: 65px;
  }

  .footer-description {
    font-size: 17px;
    line-height: 2;
  }

  .footer-heading {
    font-size: 21px;
  }

  .footer-menu li a {
    font-size: 17px;
  }

  .social-icons {
    gap: 20px;
  }

  .social-icon {
    width: 52px;
      height: 52px;
  }

  .social-icon svg {
    width: 26px;
      height: 26px;
  }

  .footer-copyright {
    font-size: 17px;
  }
}