/* ========== GLOBAL STYLES ========== */
:root {
    --primary-green: #6DA34D;
    --light-green: #8CC574;
    --cream: #F5F7F0;
    --accent-blue: #3A6EA5;
    --light-blue: #D9E6F2;
    --dark-yellow: #E0B35F;
    --white: #FFFFFF;
    --black: #333333;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Nunito', sans-serif;
    color: var(--black);
    overflow-x: hidden;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  p {
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  a {
    text-decoration: none;
    color: var(--accent-blue);
    transition: all 0.3s ease;
  }
  
  a:hover {
    color: var(--primary-green);
  }
  
  .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
  }
  
  .btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
  }
  
  .btn-primary:hover {
    background-color: var(--accent-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .btn-secondary {
    background-color: var(--accent-blue);
    color: var(--white);
  }
  
  .btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-green);
  }
  
  /* ========== HEADER / NAVIGATION ========== */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--white) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    height: 60px;
  }
  
  .header-container.scrolled .logo {
    height: 50px;
  }
  
  .nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  .nav-link {
    font-weight: 600;
    color: var(--black);
    padding: 5px 0;
    position: relative;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
  }
  
  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    margin: 5px;
    transition: all 0.3s ease;
  }
  
  @media screen and (max-width: 768px) {
    .nav-list {
      position: absolute;
      top: 100%;
      right: 0;
      background: var(--white);
      width: 100%;
      flex-direction: column;
      align-items: center;
      gap: 0;
      transform: translateY(-150%);
      transition: transform 0.5s ease;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list.active {
      transform: translateY(0);
    }
    
    .nav-link {
      display: block;
      padding: 20px 0;
      width: 100%;
      text-align: center;
      border-bottom: 1px solid #eee;
    }
    
    .hamburger {
      display: block;
    }
    
    .hamburger.active div:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active div:nth-child(2) {
      opacity: 0;
    }
    
    .hamburger.active div:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }
  }
  
  /* ========== HERO SECTION ========== */
  .hero {
    height: 100vh;
    background: url('images/hero-bg.svg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
  }
  
  .hero-content {
    position: relative;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.5s;
  }
  
  .hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.8s;
  }
  
  .hero-btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 1.1s;
  }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ========== OM OSS SECTION ========== */
  .om-oss {
    position: relative;
    background: url('images/norsk-natur.svg') no-repeat fixed center center/cover;
    color: var(--white);
  }
  
  .om-oss::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .om-oss-content {
    position: relative;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    padding: 100px 20px;
  }
  
  .om-oss h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .om-oss p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
  }
  
  .fade-in.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ========== FORDELER SECTION ========== */
  .fordeler {
    background-color: var(--cream);
    padding: 100px 0;
  }
  
  .fordeler .section-title {
    color: var(--accent-blue);
  }
  
  .fordeler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .fordel-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .fordel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .fordel-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
  }
  
  .fordel-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-green);
  }
  
  .fordel-description {
    color: var(--black);
  }
  
  /* ========== HVORDAN SECTION ========== */
  .hvordan {
    padding: 120px 0;
    background-color: var(--white);
    background-image: url("images/hvor.jpg");
    background-size: cover;
  }
  
  .timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary-green);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 5px;
  }
  
  .timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 80px 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }
  
  .timeline-item.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  .timeline-item:nth-child(odd) {
    left: 0;
  }
  
  .timeline-item:nth-child(even) {
    left: 50%;
  }
  
  .timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: var(--white);
    border: 4px solid var(--primary-green);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
  }
  
  .timeline-item:nth-child(odd)::after {
    right: -13px;
  }
  
  .timeline-item:nth-child(even)::after {
    left: -13px;
  }
  
  .timeline-content {
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
  }
  
  .timeline-content:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .timeline-step {
    background-color: var(--primary-green);
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 20px;
    position: absolute;
    top: -10px;
    left: 20px;
  }
  
  .timeline-title {
    font-size: 1.4rem;
    color: var(--accent-blue);
    margin-top: 10px;
  }
  
  /* Mobile view for timeline */
  @media screen and (max-width: 768px) {
    .timeline::after {
      left: 40px;
    }
    
    .timeline-item {
      width: 100%;
      padding-left: 100px;
      padding-right: 20px;
    }
    
    .timeline-item:nth-child(even) {
      left: 0;
    }
    
    .timeline-item::after {
      left: 27px;
    }
    
    .timeline-item:nth-child(odd)::after {
      right: auto;
      left: 27px;
    }
  }
  
  /* ========== PAKKER SECTION ========== */
  .pakker {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    padding: 100px 0;
  }
  
  .pakker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
  }
  
  .pakke {
    background-color: var(--white);
    border-radius: 10px;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 40px 30px;
    text-align: center;
  }
  
  .pakke:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .pakke-start {
    border-color: #B2D6A4;
  }
  
  .pakke-pluss {
    border-color: var(--primary-green);
    position: relative;
    z-index: 1;
    transform: scale(1.05);
  }
  
  .pakke-premium {
    border-color: var(--accent-blue);
  }
  
  .pakke-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-green);
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
  }
  
  .pakke-title {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 10px;
  }
  
  .pakke-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
  }
  
  .pakke-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--black);
  }
  
  .pakke-feature {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
  
  .pakke-cta {
    margin-top: 30px;
  }
  
  /* Mobile adjustments for pricing */
  @media screen and (max-width: 768px) {
    .pakke-pluss {
      transform: scale(1);
    }
  }
  
  /* ========== KUNDEOMTALER SECTION ========== */
  .kundeomtaler {
    background-color: var(--cream);
    padding: 100px 0;
  }
  
  .kundeomtaler-slider {
    margin: 0 auto;
    max-width: 1000px;
    overflow: hidden;
    position: relative;
  }
  
  .kundeomtaler-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .kundeomtale {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 10px;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .kundeomtale-quote {
    font-size: 4rem;
    color: var(--primary-green);
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.2;
  }
  
  .kundeomtale-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-style: italic;
    padding-left: 20px;
  }
  
  .kundeomtale-author {
    display: flex;
    align-items: center;
  }
  
  .kundeomtale-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-green);
  }
  
  .kundeomtale-name {
    font-weight: 700;
    font-size: 1.1rem;
  }
  
  .kundeomtale-position {
    color: var(--accent-blue);
    font-size: 0.9rem;
  }
  
  .slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-bottom: 5px;
  }
  
  .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .slider-dot.active {
    background-color: var(--primary-green);
    transform: scale(1.3);
  }
  
  /* ========== NYHETSBREV SECTION ========== */
  .nyhetsbrev {
    background-color: var(--light-blue);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  
  .nyhetsbrev::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 150px;
    height: 150px;
    background-color: var(--primary-green);
    border-radius: 50%;
    opacity: 0.1;
  }
  
  .nyhetsbrev::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 200px;
    height: 200px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    opacity: 0.1;
  }
  
  .nyhetsbrev-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
  }
  
  .nyhetsbrev-title {
    font-size: 2.2rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
  }
  
  .nyhetsbrev-description {
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
  
  .nyhetsbrev-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .nyhetsbrev-input {
    padding: 15px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
  }
  
  .nyhetsbrev-btn {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 15px;
    border-radius: 30px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .nyhetsbrev-btn:hover {
    background-color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* ========== KONTAKT SECTION ========== */
  .kontakt {
    padding: 100px 0;
    background-color: var(--white);
  }
  
  .kontakt-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
  }
  
  .kontakt-form-container {
    padding: 40px;
    background-color: var(--cream);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-group {
    position: relative;
  }
  
  .form-input {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .form-input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px rgba(109, 163, 77, 0.2);
    outline: none;
  }
  
  .form-textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-height: 150px;
    resize: vertical;
  }
  
  .form-textarea:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px rgba(109, 163, 77, 0.2);
    outline: none;
  }
  
  .kontakt-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    min-height: 400px;
  }
  
  .map-iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .kontakt-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
  
  .kontakt-info-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
  }
  
  .kontakt-info-icon {
    color: var(--primary-green);
    margin-right: 10px;
    font-size: 1.2rem;
  }
  
  /* ========== DISCLAIMER SECTION ========== */
  .disclaimer {
    background-color: var(--cream);
    padding: 60px 0;
    border-top: 1px solid #e0e0e0;
  }
  
  .disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  .disclaimer-content h2 {
    color: var(--accent-blue);
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
  }
  
  .disclaimer-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-green);
  }
  
  .disclaimer-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 0.95rem;
    color: var(--black);
  }
  
  /* ========== FOOTER SECTION ========== */
  .footer {
    background-color: var(--dark-yellow);
    color: var(--white);
    padding: 60px 0 20px;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
  }
  
  .footer-logo {
    height: 70px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
  }
  
  .footer-description {
    opacity: 0.8;
    line-height: 1.6;
  }
  
  .footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--white);
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-link {
    margin-bottom: 15px;
  }
  
  .footer-link a {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
  }
  
  .footer-link a:hover {
    opacity: 1;
    padding-left: 5px;
  }
  
  .footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto 20px;
    max-width: 1200px;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-bottom-text {
    opacity: 0.7;
    font-size: 0.9rem;
  }
  
  .footer-bottom-links {
    display: flex;
    gap: 20px;
  }
  
  .footer-bottom-link {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }
  
  .footer-bottom-link:hover {
    opacity: 1;
    color: var(--white);
  }
  
  /* Responsive adjustments for footer */
  @media screen and (max-width: 768px) {
    .footer-bottom {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  }
  
  /* ========== COOKIE, PRIVACY, TERMS PAGES ========== */
  .page-header {
    height: 300px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
  }
  
  .page-title {
    color: var(--white);
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
  }
  
  .page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--white);
  }
  
  .page-content {
    max-width: 800px;
    margin: 0 auto 100px;
    padding: 0 20px;
  }
  
  .page-content h2 {
    color: var(--accent-blue);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  
  .page-content h3 {
    color: var(--primary-green);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
  
  .page-content p {
    margin-bottom: 15px;
    line-height: 1.7;
  }
  
  .page-content ul, .page-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
  }
  
  .page-content li {
    margin-bottom: 10px;
    line-height: 1.7;
  }
  
  /* ========== SUCCESS PAGE ========== */
  .success-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--cream);
  }
  
  .success-content {
    max-width: 600px;
    padding: 0 20px;
  }
  
  .success-icon {
    color: var(--primary-green);
    font-size: 5rem;
    margin-bottom: 20px;
  }
  
  .success-title {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
  }
  
  .success-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .success-btn {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .success-btn:hover {
    background-color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--white);
  }
  
  /* ========== ANIMATIONS & EFFECTS ========== */
  .reveal {
    position: relative;
    opacity: 0;
    transition: all 1s ease;
  }
  
  .reveal.active {
    opacity: 1;
  }
  
  .reveal.fade-bottom {
    transform: translateY(50px);
  }
  
  .reveal.fade-bottom.active {
    transform: translateY(0);
  }
  
  .reveal.fade-left {
    transform: translateX(-50px);
  }
  
  .reveal.fade-left.active {
    transform: translateX(0);
  }
  
  .reveal.fade-right {
    transform: translateX(50px);
  }
  
  .reveal.fade-right.active {
    transform: translateX(0);
  }

  .back-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    background-color: white;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #3A6EA5;
  }