@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    /* Font Families */
    --font-primary: "Epilogue", serif;
    --font-secondary: "DM Sans", sans-serif;
    --font-placeholder: "Inter Placeholder", sans-serif;
    --font-default: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    --font-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

    /* Colors */
    --color-black: #000000;
    --color-green: #FF7300;
    --color-dark-blue: #171717;
    --color-grey: #BBBBBB;
    --color-dark-grey: #0F0F0F;
    --color-light-grey: #F2F2F2;

}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Epilogue", sans-serif;
}


/* Navigation Bar */

.navbar {
    position: sticky;
    top: 0;
    background: white;
    padding: 16px 0;
    z-index: 1000;
    width: 100%;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.logo {
    flex: 0;
}

.logo img {
    height: 45px;
    width: auto;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1002;
}

.profile-container {
    position: relative;
}

.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: var(--color-green) 2px;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 10px;
}

/* For desktop - show on hover and click */
@media (min-width: 769px) {
    .profile-container:hover .profile-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* For mobile - show on click only */
@media (max-width: 768px) {
    .profile-container.active .profile-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
}

.nav-and-profile {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1002;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 19px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-green);
}

.contact-btn {
    background: var(--color-green);
    color: white;
    padding: 10px 30px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
}

.contact-btn:hover {
    background: var(--color-dark-blue);
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1001;
}

.hamburger span {
    background: #333;
    height: 3px;
    width: 30px;
    margin: 5px 0;
    transition: all 0.3s ease;
    transform-origin: left center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, -2px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, 2px);
}

@media (max-width: 768px) {
    .nav-and-profile {
        gap: 0;
    }

    .right-section {
        order: -1;
        /* This ensures right-section stays at the top in mobile */
        margin-left: auto;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        background: white;
        width: 100%;
        height: 100vh;
        padding: 80px 20px 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: right 0.3s ease;
        justify-content: flex-start;
        gap: 20px;
        margin-left: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-link {
        font-size: 24px;
        padding: 15px 0;
    }

    .contact-btn {
        margin-top: 20px;
        padding: 15px 30px;
        font-size: 18px;
    }
}


/* Hero Section */


.hero-section {
    position: relative;
    padding: 120px 0;
    background-image: url('../images/hero-bg.webp');
    /* Replace with your image path */
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.portfolio-text {
    color: var(--color-green);
    text-underline-offset: 6px;
    -webkit-text-stroke: 0.5px black;
}

#dynamic-text {
    color: var(--color-green);
}


.cta-button {
    background-color: var(--color-green);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    border: 1px solid black;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
    border-bottom-width: 5px;
}

.cta-button:hover {
    background-color: #E66200;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    border: 1px solid black;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
    border-bottom-width: 5px;
}

/* Modal styling with unique class names */
.gs-modal-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }
  
  .gs-modal-box {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  }
  
  .gs-close-icon {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #6c757d;
  }
  
  .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(78, 115, 223, 0.25);
  }
  
  .gs-success-message {
    display: none;
    text-align: center;
    padding: 30px;
  }
  
  .gs-success-icon {
    color: #28a745;
    font-size: 60px;
    margin-bottom: 20px;
  }
  
  .gs-loading-indicator {
    display: none;
    text-align: center;
    padding: 20px;
  }
  
  .gs-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--color-green);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* About us section */

.about-section {
    padding: 40px 0;
}

.about-image-container {
    position: relative;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.heading-badge {
    display: inline-block;
    background-color: white;
    color: black;
    border: 3px solid black;
    border-bottom-width: 6px;
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.innovation-bar {
    height: 10px;
    background-color: #e9ecef;
    border-radius: 5px;
    margin: 15px 0;
}

.innovation-progress {
    height: 100%;
    width: 75%;
    background-color: var(--color-green);
    border-radius: 5px;
}

h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.text-highlight {
    color: var(--color-green);
}

.about-text {
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn-custom {
    background-color: #111111;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: var(--color-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(32, 201, 151, 0.2);
}

/* Features Section*/

.features-section {
    padding: 80px 0;
    position: relative;
    background-image: url('../images/servicesBg.webp');
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    background: white;
    color: black;
    padding: 8px 20px;
    border: 3px solid black;
    border-bottom-width: 6px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 800;
}

.features-section .section-header h2 {
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 0;
    color: #222;
}

.section-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}


.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 30px;
}

.icon-leadgen {
    background-color: #4ce0b3;
    color: #1a1a1a;
}

.icon-ecommerce {
    background-color: #ffd166;
    color: black
}

.icon-appdownload {
    background-color: #06d6a0;
    color: #1a1a1a;
}

.icon-social {
    background-color: #118ab2;
    color: black;
}

.icon-b2b {
    background-color: #ef476f;
    color: black;
}

.icon-brand {
    background-color: pink;
    color: black;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.decorative-dots {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.5;
}

.dot {
    width: 15px;
    height: 15px;
    margin: 5px;
    border-radius: 3px;
    display: inline-block;
    transform: rotate(45deg);
}

.dot-1 {
    background: #4ce0b3;
}

.dot-2 {
    background: #ffd166;
}

.dot-3 {
    background: #06d6a0;
}

@media screen and (max-width: 768px) {
    .decorative-dots {
        display: none;
    }
}


/* Services Section */

.services-section h2 {
    font-size: 2.5rem;
    color: #333;
}

.services-section h5 {
    font-size: 1rem;
    font-weight: bold;
    color: #666;
    margin-bottom: 0.5rem;
}

.service-card {
    background: var(--color-dark-blue);
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.service-text {
    font-size: 1rem;
    color: #d1d1d1 !important;
    /* More visible text */
    margin-bottom: 1rem;
}

.image-wrapper {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}

.service-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    margin: 0 0 !important;
    padding: 0 !important;
    display: block;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

/* */


/*  Testimonials Section */

  
  .section-header {
    margin-bottom: 60px;
  }
  
  .section-header .subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #777;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .testimonial-section h2 {
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 0;
    color: #222;
  }
  
  .testimonial-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 3px solid black;
    border-bottom-width: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }
  
  .quote-icon {
    font-size: 28px;
    color: #e0e0e0;
    margin-bottom: 20px;
  }
  
  .star-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
  }
  
  .star-rating i {
    color: #ffb547;
    font-size: 18px;
  }
  
  .testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
  }
  
  .client-info {
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
  }
  
  .client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: 600;
    color: #555;
  }
  
  .client-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
  }
  
  .client-company {
    font-size: 14px;
    color: #777;
    margin: 0;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .testimonial-section {
      padding: 70px 0;
    }
    
    .testimonial-section h2 {
      font-size: 32px;
    }
    
    .testimonial-card {
      padding: 30px;
    }
    
    .testimonial-text {
      font-size: 16px;
    }
  }

  /* Stats Section */

  .statistics-container {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    background-image: url('../images/servicesBg.webp');
    background-size: cover;
    background-position: center;
  }
  
  .stat-item {
    display: flex;
    align-items: center;
    text-align: left;
    margin-bottom: 30px;
  }
  
  .stat-icon-wrapper {
    background-color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
  }
  
  .stat-icon {
    font-size: 2rem;
    color: var(--color-green);
  }
  
  .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 3px;
    line-height: 1.2;
  }
  
  .stat-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
  }
  
  /* Mobile View Adjustments */
  @media (max-width: 767px) {
    .stat-item {
      flex-direction: row;
      justify-content: center;
      text-align: center;
    }
  
    .stat-icon-wrapper {
      width: 60px;
      height: 60px;
    }
  
    .stat-icon {
      font-size: 1.5rem;
    }
  
    .stat-number {
      font-size: 1.5rem;
    }
  
    .stat-text {
      font-size: 0.85rem;
    }
  }

/* Marquee Section */

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #ffffff;
}

.marquee-content {
    display: flex;
    width: fit-content;
    animation: scroll 10s linear infinite;
}

.outlined-text {
    font-family: Arial, sans-serif;
    font-size: 6vw;
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px #333;
    text-stroke: 2px #333;
    white-space: nowrap;
    text-shadow:
        -1px -1px 0 #333,
        1px -1px 0 #333,
        -1px 1px 0 #333,
        1px 1px 0 #333;
    padding-right: 50px;
    /* Space between repetitions */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.separator {
    display: inline-block;
    margin: 0 2rem;
    font-size: 6vw;
    color: transparent;
    -webkit-text-stroke: 2px #333;
    text-stroke: 2px #333;
    text-shadow:
        -1px -1px 0 #333,
        1px -1px 0 #333,
        -1px 1px 0 #333,
        1px 1px 0 #333;
}

/* C2A Section */


.gradient-bg {
    background: white;
    border-radius: 12px;
    border: solid 1px;
    padding: 40px;
    color: 000;
}


.form-container {
    background: var(--color-light-grey);
    border: solid 1px var(--color-black);
    border-radius: 10px;
    padding: 30px;
}

.custom-input {
    background: white;
    border: solid 1px var(--color-black);
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: inherit !important;
}


.submit-btn {
    background: var(--color-green);
    border: none;
    color: white;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    font-weight: 500;
}

.submit-btn:hover {
    background: var(--color-green);
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.feature-list li i {
    color: black;
}

.c2a-icon {
    color: var(--color-black);
}


@media (max-width: 576px) {
    .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .feature-card {
        padding: 8px;
    }

    .feature-card .icon-wrapper svg {
        width: 40px;
        height: 40px;
    }

    .feature-title {
        font-size: 13px;
    }

    .feature-description {
        font-size: 11px;
    }
}

/* FAQ Section */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.faq-item {
    background-color: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.faq-item.active {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid #1a1a1a;
}

.faq-question {
    padding: 20px 30px;
    background-color: white;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    color: #333;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.faq-answer.show {
    max-height: 300px;
    /* Adjust based on your content */
}

.faq-answer-content {
    padding: 0 0 25px 0;
    color: #555;
    line-height: 1.6;
}

.faq-background {
    padding: 40px 20px;
    border-radius: 20px;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.faq-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.faq-item.active {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid #1a1a1a;
}

.faq-question {
    padding: 20px 30px;
    background-color: white;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    color: #333;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.faq-answer.show {
    max-height: 300px;
    /* Adjust based on your content */
}

.faq-answer-content {
    padding: 0 0 25px 0;
    color: #555;
    line-height: 1.6;
}

.faq-background {
    background-color: #f1f5f1;
    padding: 40px 20px;
    border-radius: 20px;
}

/* Footer Section */

footer {
    font-family: var(--font-primary);
    background-color: #111111; /* Dark background from the image */
    color: #999999; /* Grey text color */
    padding: 5rem 0 2rem 0;
}

footer h2 {
    color: white;
    font-weight: 700;
}

footer h5 {
    color: white;
    font-weight: 600;
}

footer p {
    font-size: 0.9rem;
    line-height: 1.6;
}

footer a {
    text-decoration: none;
    color: #999999;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

footer .social-icons a {
    color: white;
    transition: opacity 0.3s ease;
}

footer .social-icons a:hover {
    opacity: 0.8;
}

footer hr {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.2;
}

.email-input-container {
    background-color: transparent;
    border-color: #333333 !important;
}

.email-input-container input {
    color: white;
}

.email-input-container input::placeholder {
    color: #999999;
    font-size: 0.9rem;
}

.btn-subscribe {
    background-color: var(--color-green); /* Green color from the image */
    color: white;
    font-weight: 600;
    border: none;
    transition: opacity 0.3s ease;
}

.btn-subscribe:hover {
    background-color: var(--color-green);
    color: white;
    opacity: 0.9;
}


/* Styling for Privacy Policy Page */

.other-pages {
    color: var(--color-dark-grey);
    line-height: 1.6;
}

.other-pages h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.other-pages h2 {
    color: var(--color-dark-blue);
    font-weight: 600;
}

.other-pages h3 {
    color: var(--color-dark-blue);
    font-weight: 600;
}

.other-pages ul {
    padding-left: 1.5rem;
}

.other-pages ul li {
    margin-bottom: 0.5rem;
}

.other-pages a {
    text-decoration: none;
}

.other-pages a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .other-pages h1 {
        font-size: 2rem;
    }

    .other-pages {
        font-size: 0.95rem;
    }
}