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

body{
    font-family: "Montserrat", sans-serif;
    padding-top: 70px;
    background-color: rgb(19, 21, 44);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    background: rgba(3,6,23,0.9);
  }
  header a{
    text-decoration: none;
  }
  .logo {
    font-size: 0.6rem;
    letter-spacing: 5px;
    color: white;
    text-align: center;
    font-family: "Source Code Pro", sans-serif;
    font-weight: bold;
    line-height: 1.2;
}
.logo span{
    display: block;
}
.menu-btn {
  position: relative;
  width: 35px;
  height: 35px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  z-index: 1100;
  perspective: 600px; /* enables 3D flipping */
  transition: transform 0.3s ease;
}
button{
  font-family: "Source Code Pro" , sans-serif;
}

/* The icon itself (we’ll use pseudo-elements for flip sides) */
.menu-btn::before {
  content: "☰";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(0deg);
  backface-visibility: hidden;
  transition: transform 0.4s ease;
}

.menu-btn::after {
  content: "✕";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(180deg);
  backface-visibility: hidden;
  transition: transform 0.4s ease;
}

/* When sidebar is open, flip to the X */
.menu-btn.open::before {
  transform: rotateY(180deg);
}
.menu-btn.open::after {
  transform: rotateY(360deg);
}

/* SIDEBAR (MOBILE) */
.sidebar {
  position: fixed;
  top: 60px; /* Sidebar starts below the header */
  left: -100%;
  width: 100%;
  height: calc(100vh - 60px); /* Fill remaining height */
  box-shadow: 2px 0 8px rgba(0,0,0,0.2);
  transition: left 0.3s ease;
  padding: 1.5rem 1rem;
  z-index: 900; /* Below header */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: black;
}

.sidebar.active {
  left: 0;
}

.sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.sidebar a {
  font-size: 0.8rem;
  margin: 1.5rem 0;
  cursor: pointer;
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.header-cta .btn-primary {
  display:inline-block;
  background: linear-gradient(90deg,#892ED0,#00C6FF);
  color: white;
  padding: 1em 2em;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(137,46,208,0.12);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.header-cta{
  align-self: center;
}
.header-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(137,46,208,0.16);
}

/* Main sections */
main{
  border-bottom: 1px solid gray;
}

.hero-section{
  background-image: url("images/hero.png");
  background-size: cover;
  height: 250px;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2em;
  color: white;
}
.hero-section h1, .hero-section h2{
  background: linear-gradient(90deg, #00ccff, #ff00cc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  filter: brightness(1.2);
  text-align: center;
}

section.welcome-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  padding: 3em;
  gap: 2em;
  margin-top: 3em;
}
section.welcome-section > p{
  line-height: 1.5;
  max-width: 400px;
  margin-bottom: 0px;
}
section.welcome-section > img{
  border-radius: 10px;
  width: 250px;
  margin-top: 0px;
}

section.mid-section{
  position: relative;
  height: 350px;
  background-image: url("images/byblos.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  padding: 1em;
  gap: 1em;
  margin-block: 2em;
  overflow: hidden;
  border-radius: 10px;
}
.mid-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.mid-section .content {
  position: relative;
  z-index: 2;
}
.content > h1{
  font-size: 1.85rem;
}
.content > P{
  font-weight: 200;
  margin-block: 1em;
}

section.services-section{
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em;
  background-color: rgb(19, 21, 44);
}
.services-section > h1{
  font-size: 1.85rem;
  margin-top: 1em;
  margin-bottom: 10px;
}
.services-section > p{
  font-weight: 400;
  padding: 1em;
  margin-bottom: 0px;
  line-height: 1.5;
  font-size: 1.2rem;
}
.services-flex {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  overflow: hidden;
}
.services-slider {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  max-width: 430px;
}
.slide {
  min-width: 100%;
  text-align: center;
  color: white;
  transition: transform 0.8s ease, box-shadow 0.8s ease;
  background-color: #0A0C1D;
  padding: 1em;
  border: none;
  border-radius: 10px;
}
.slide:hover{
  transform: scale(1.5);
}
.slide h2 {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.slide img {
  width: 170px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}
.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(19, 21, 44);
  background: white;
  border: none;
  font-size: 1.5rem;
  padding: 0.2em;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}
.arrow.left {
  left: 15%;
}
.arrow.right {
  right: 15%;
}

.industries-section {
  margin-top: 0px;
  color: white;
  background: rgb(19, 21, 44);
  padding: 2rem 1rem;
  overflow: hidden;
  position: relative;
  padding: 2em;
}
.industries-section p {
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
/* Stack vertically in mobile */
.industries-flex {
  position: relative;
  width: 100%;
  height: auto;
}

.industrie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.industrie.active {
  opacity: 1;
  transform: scale(1);
  position: relative;
}

.industrie h1 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.industrie img{
  border-radius: 10px;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.switch-btns {
  margin-top: 1.5rem;
  display: flex;
  /* justify-content: center; */
  gap: 1rem;
}

.switch-btns button {
  background: transparent;
  border: 2px solid #fff;
  color: white;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.switch-btns button.active {
  background: linear-gradient(135deg, #ff0080, #00ffff);
  border: none;
  transform: scale(1.2);
}

.switch-btns button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.final-section {
  color: white;
  grid-area: intro;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-block: 3em;
  gap: 1em;

}
.final-section h1{
  font-size: 1.5rem;
}
.final-section button{
  padding: 1.5em 2em;
  background-color: darkslateblue;
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
}
.final-section button:hover{
  background-color: #892ED0;
}
.final-section a{
  text-decoration: none;
  color: white;
}


footer {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding: 1em;
  margin-top: 2em;
  background-color: rgb(19, 21, 44);
}

footer div {
  display: flex;
  flex-direction: column;
}

/* FOOTER INTRO */
.footer-intro {
  gap: 1em;
}

.footer-intro h1 {
  font-size: 1.5rem;
}

/* FOOTER LINKS */
.footer-links {
  display: flex;
  gap: 1em;
}

.footer-links a {
  color: #00C6FF;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* FOOTER END */
.footer-end {
  gap: 1.5em;
}

/* FOOTER TEXT */
footer p {
  font-size: 0.7rem;
}


/* services page */
/* GENERAL PAGE STYLE */
body {
    margin: 0;
    padding: 0;
    background-color: rgb(19, 21, 44);
    font-family: 'Poppins', sans-serif;
    color: white;
}

/* ===== HERO SECTION ===== */
.services-hero {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(90deg,#892ED0,#00C6FF);
    color: white;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.services-hero h1 {
    margin: 0;
    font-size: 3rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.services-hero h2 {
    margin-top: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

/* ===== WELCOME SECTION ===== */
.services-welcome {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-welcome p {
    font-size: 1.2rem;
    opacity: 0.75;
    line-height: 1.7;
}

/* ===== SERVICES LIST ===== */
.services-list {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* SERVICE CARD */
.service-container {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(5px);
    transition: 0.3s ease;
}

.service-container:hover {
    transform: translateY(-6px);
    border-color: #00C6FF;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.3);
}

.service-container h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: #00C6FF;
}

.service-container p {
    margin: 0;
    line-height: 1.6;
    opacity: 0.75;
}

/* pricing page */
.pricing-hero {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(90deg,#892ED0,#00C6FF);
    color: white;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.pricing-hero h1 {
    margin: 0;
    font-size: 3rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.pricing-hero h2 {
    margin-top: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* ===== WELCOME SECTION ===== */
.pricing-welcome {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-welcome p {
    opacity: 0.75;
    line-height: 1.7;
    font-size: 1.2rem;
}

/* ===== PRICING CARDS GRID ===== */
.pricing-cards {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* ===== INDIVIDUAL CARD STYLING ===== */
.pricing-cards .card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
    text-align: center;
}

.pricing-cards .card:hover {
    transform: translateY(-6px);
    border-color: #00C6FF;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.25);
}

/* Card Title */
.pricing-cards h3 {
    margin: 0 0 1.2rem 0;
    font-size: 1.5rem;
    color: #00C6FF;
}

/* Features List */
.pricing-cards ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.pricing-cards ul li {
    margin: 0.5rem 0;
    opacity: 0.8;
    font-size: 1rem;
}

/* Price Text */
.pricing-cards p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* CTA BUTTON */
.pricing-cards .cta {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(90deg, #892ED0, #00C6FF);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.pricing-cards .cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(0, 198, 255, 0.4);
}
/* privacy.html */
/* ===== HERO SECTION ===== */
.privacy-hero {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(90deg,#892ED0,#00C6FF);
    color: white;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.privacy-hero h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 700;
}

.privacy-hero h2 {
    margin-top: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* ===== PRIVACY CONTENT ===== */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    color: white;
}

.privacy-content p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1.2rem;
}

.privacy-content h3 {
    color: #00C6FF;
    margin-top: 2rem;
    margin-bottom: 0.6rem;
}

.privacy-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-content ul li {
    margin: 0.4rem 0;
    opacity: 0.85;
}

.contact-info {
    font-size: 1.1rem;
    color: #00C6FF;
}
/* faq page */
/* ===== HERO SECTION ===== */
.faq-hero {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(90deg,#892ED0,#00C6FF);
    color: white;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.faq-hero h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 700;
}

.faq-hero h2 {
    margin-top: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* ===== WELCOME TEXT ===== */
.faq-welcome {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.faq-welcome p {
    opacity: 0.75;
    line-height: 1.6;
    font-size: 1.2rem;
}

/* ===== FAQ LIST ===== */
.faq-list {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

/* FAQ ITEM */
.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.8rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    transition: 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: #00C6FF;
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.25);
}

.faq-item h3 {
    margin: 0 0 0.8rem 0;
    color: #00C6FF;
    font-size: 1.3rem;
}

.faq-item p,
.faq-item ul li {
    opacity: 0.85;
    line-height: 1.6;
}

.faq-item ul {
    margin-left: 1.5rem;
}
/* about page */
.about-hero {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(90deg,#892ED0,#00C6FF);
    color: white;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.about-hero h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 700;
}

.about-hero h2 {
    margin-top: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* ===== WELCOME / INTRO SECTION ===== */
.about-welcome {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.about-welcome p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* ===== ABOUT DETAILS ===== */
.about-details {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.about-details h3 {
    color: #00C6FF;
    margin-top: 2rem;
    margin-bottom: 0.6rem;
}

.about-details p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}
/* contact page */
.contact-hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(90deg,#892ED0,#00C6FF);
  color: white;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.contact-hero h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
}

.contact-hero h2 {
  margin-top: 1rem;
  opacity: 0.9;
  font-weight: 400;
}

/* ===== CONTACT SECTION ===== */
/* CONTACT INFO */
.contact-info {
  text-align: center;
}

.contact-info h3 {
  color: #00C6FF;
  margin-bottom: 1rem;
}

.contact-info p {
  opacity: 0.85;
  margin: 0.5rem 0;
}

.contact-info a {
  color: #00C6FF;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}
.contact-section {
  padding: 3rem 1.5rem;
  color: white;
  display: flex;
  justify-content: center;
}

.contact-container {
  width: 100%;
  max-width: 600px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.contact-desc {
  text-align: center;
  opacity: 0.7;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

input,
textarea {
  padding: 0.9rem;
  border-radius: 8px;
  border: 1px solid #444;
  background-color: rgb(19, 21, 44);
  color: white;
  outline: none;
  transition: 0.2s;
}

input:focus,
textarea:focus {
  border-color: #892ed0;
}

.error-msg {
  color: #ff4f4f;
  font-size: 0.8rem;
  display: none;
  margin-top: 0.3rem;
}

.success-message,
.error-message {
  display: none;
  text-align: center;
  margin-top: 1rem;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

.success-message {
  background-color: #2ecc71;
}

.error-message {
  background-color: #e74c3c;
}

/* Button */
#sendBtn {
  width: 100%;
  padding: 1rem;
  margin-top: 0.5rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #892ed0, #00c6ff);
  color: white;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

/* Spinner Hidden by default */
.spinner {
  width: 18px;
  height: 18px;
  border: 3px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  display: none;
  animation: spin 0.8s linear infinite;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Shake animation */
.shake {
  animation: shakeAnim 0.3s;
}

@keyframes shakeAnim {
  0% { transform: translateX(0px); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0px); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }
    .about-hero h2 {
        font-size: 1.2rem;
    }
    .about-welcome p,
    .about-details p {
        font-size: 1rem;
    }
}
/* DESKTOP STYLES */
@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }

  .sidebar {
    position: static;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    display: flex;
    padding: 0;
  }

  .sidebar ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .menu-item {
    position: relative;
    font-size: 1rem;
  }

  .submenu {
    display: none;
    position: absolute;
    background: black;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    border-radius: 5px;
    padding: 0.5rem 1rem;
    color: white;
  }

  li:hover .submenu {
    display: flex;
    flex-direction: column;
    padding: 1em;
  }

  .submenu a {
    white-space: nowrap;
    font-weight: bold;
    font-size: 0.85rem;
  }
  .menu-item:hover , .submenu a:hover{
    transition: transform 0.3s ease;
    color: #892ED0;
  }
  header {
    height: 10%;
    justify-content: flex-start;
    gap: 5em;
    padding-left: 3em;
  }

  .logo {
    order: 1;
  }

  .sidebar {
    order: 2;
  }
  .sidebar .login-section{
    display: none;
  }
   /* Main sections */
   .hero-section{
    height: 600px;
    font-size: 2rem;
   }
   section.welcome-section{
    flex-direction: row;
    justify-content: space-evenly;
   }
   section.welcome-section > p{
    font-size: 1.5rem;
    max-width: 500px;
   }
   section.welcome-section > img{
    width: 350px;
   }   

   .content > h1{
    font-size: 3rem;
   }
   .content > p{
    font-size: 1.5em;
   }

   .services-section h1{
    font-size: 3rem;
   }
   .services-section p{
    font-size: 1.5rem;
    max-width: 80%;
   }
   .services-slider{
    width: 90%;
   }
   .slide img{
    width: 300px;
   }
   .services-slider{
    max-width: 900px;
   }
   .industries-section{
    display: flex;
    justify-content: space-evenly;
   }
   .industries-section p{
    font-size: 2rem;
    align-self: center;
    font-weight: bold;
   }
   .industrie h1{
     font-size: 3rem;
   }
   .industrie img {
    min-width: 500px;
   }
  .final-section{
    width: 100%;
    margin-bottom: 0px;
    justify-content: center;
    align-items: center;
    margin-bottom: 1em;
  }
  .final-section h1{
    font-size: 3rem;
  }
  .final-section button{
    padding: 1.8em 2.5em;
    font-size: 1rem;
  }

footer {
    flex-direction: row;
    justify-content: space-between;
    padding: 3em;
    align-items: center;
  }

  .footer-end {
    align-items: flex-end;
  }

  .footer-intro h1 {
    font-size: 2rem;
  }

  footer p {
    font-size: 0.8rem;
  }

  .footer-links a {
    font-size: 1rem;
  }
}
