﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

html {
    font-size: 15px;
    position: relative;
    min-height: 100%;
}

@media (max-width: 2500px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 1920px) {
    html {
        font-size: 13px;
    }
}

@media (max-width: 1440px) {
    html {
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    html {
        font-size: 12px;
    }
}

:root {
  --dark-bg: #222222;
  --dark-card: #303030;
  --dark-border: #454545;
  --text-white: #ffffff;
  --text-gray: #C2C2C2;
  --purple-light: #A156CF;
  --purple-dark: #866DE1;
  --transition-speed: 300ms;
  --border-radius: 0.75rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 12vh;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.text-center {
  text-align: center;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(34, 34, 34, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(48, 48, 48, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem 0;
  gap: 1rem;
}

.logo-img {
  width: 2.5rem;
  height: 2.5rem;
  transition: transform 0.3s ease;
}

.logo a:hover .logo-img {
  transform: scale(1.1);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu-left {
  margin-left: 2rem;
}

.nav-buttons {
  margin-left: auto;
}

.nav-items {
  display: flex;
  list-style: none;
  gap: 3rem;
  margin: 0;
}

.nav-link {
  font-family: 'Poppins', sans-serif;
  color: var(--text-white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--text-gray);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--purple-light);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--dark-card);
  border-radius: var(--border-radius);
  padding: 0.75rem 0;
  min-width: 220px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1.5rem;
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.arrow {
  font-size: 0.7rem;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.line {
  width: 24px;
  height: 2px;
  background-color: var(--text-white);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: var(--dark-card);
  padding: 1rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-items {
  list-style: none;
  padding: 0;
}

.mobile-nav-item {
  margin-bottom: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-white);
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: var(--border-radius);
  transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.accordion.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 1rem;
  list-style: none;
}

.accordion.active .accordion-content {
  max-height: 200px;
}

.accordion-content a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.accordion-content a:hover {
  color: var(--text-white);
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: linear-gradient(to right, var(--purple-light), var(--purple-dark));
  color: var(--text-white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  background: linear-gradient(to right, var(--purple-dark), var(--purple-light));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(134, 109, 225, 0.3);
}

.secondaryBtn {
    display: inline-block;
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 0.65rem 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.secondaryBtn:hover {
  color: var(--text-gray);
}

.bigCTA {
    font-family: 'Inter', sans-serif !important;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 0.65rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--text-white);
    cursor: pointer;
    text-align: center;
}

.btn-outline:hover {
  background-color: var(--text-white);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.btn-outline-mobile {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--text-white);
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--text-white);
  text-align: center;
}

.btn-outline-mobile:hover {
  background-color: var(--text-white);
  color: var(--dark-bg);
}

.btn-primary-mobile {
  display: block;
  width: 100%;
  background: linear-gradient(to right, var(--purple-light), var(--purple-dark));
  color: var(--text-white);
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary-mobile:hover {
  background: linear-gradient(to right, var(--purple-dark), var(--purple-light));
}

.hero-section {
  padding: 100px 0 80px;
}

.banner {
  display: inline-block;
  background-color: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
}

.banner p {
  color: var(--text-gray);
  font-size: 0.9rem;
  font-weight: 500;
}

.heading {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(to right, var(--purple-light), var(--purple-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subheading {
  font-size: 1.2rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cta-buttons a {
    padding: 12px 40px !important;
    font-size: 1.2rem;
    border-radius: 50px !important;
}

.app-preview-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 30px rgba(161, 86, 207, 0.3);
    border: 1px solid var(--dark-border);
    margin-top: 8rem;
    transition: all 0.3s ease;
}

.app-preview-container:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(161, 86, 207, 0.5);
}

.app-preview-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
    filter: brightness(1);
}

.app-preview-container:hover .app-preview-image {
    filter: brightness(1.1);
}

.app-preview-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(161, 86, 207, 0.3) 0%, rgba(134, 109, 225, 0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.app-preview-container:hover::after {
    opacity: 1;
}

.features-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(161, 86, 207, 0.1), rgba(134, 109, 225, 0.1));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  border-radius: var(--border-radius);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(to right, var(--purple-light), var(--purple-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4rem;
}

.feature-row.reversed {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
}

.feature-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.feature-text p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

.feature-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Before/After Slider */
.before-after-container {
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--dark-border);
  box-shadow: 0 0 30px rgba(161, 86, 207, 0.3);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}

.before-img,
.after-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  cursor: ew-resize;
  z-index: 10;
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  cursor: grab;
}

.slider-button:active {
  cursor: grabbing;
}

.arrow-left,
.arrow-right {
  font-size: 1.5rem;
  color: var(--dark-card);
  user-select: none;
}

.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background-color: white;
}

.image-label {
  position: absolute;
  top: 15px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  z-index: 5;
}

.before-label {
  left: 15px;
}

.after-label {
  right: 15px;
}

.cta-banner {
  padding: 60px 0;
  margin-top: 5rem;
}

.cta-content {
  background: linear-gradient(to right, rgba(161, 86, 207, 0.1), rgba(134, 109, 225, 0.1));
  border-radius: var(--border-radius);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.cta-text {
  max-width: 60%;
}

.cta-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-text p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.cta-image {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(to right, rgba(161, 86, 207, 0.3), rgba(134, 109, 225, 0.3));
  border-radius: 50%;
  animation: pulse 2s infinite ease-in-out;
}

.cta-image img {
  width: 80px;
  height: 80px;
  position: relative;
  z-index: 1;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 0.9; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

/* Animations */
.fade-in-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.footer {
  background-color: var(--dark-card);
  border-radius: 2rem 2rem 0 0;
  margin-top: 0.1rem;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img {
  width: 2rem;
  height: 2rem;
}

.footer-logo span {
  font-weight: 600;
  font-size: 1.25rem;
}

.footer-brand p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--text-white);
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.social-icon-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-gray);
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.social-icon-link:hover {
  color: var(--text-white);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 12px;
  transition: background-color 0.3s ease;
}

.social-icon-link:hover .social-icon {
  background-color: rgba(161, 86, 207, 0.3);
}

.social-icon svg {
  color: inherit;
}

.contact-link {
  cursor: pointer;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-form input {
  padding: 0.75rem;
  border: 1px solid var(--dark-border);
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--text-white);
  border-radius: var(--border-radius);
  font-size: 0.9rem;
}

.footer-form input:focus {
  outline: none;
  border-color: var(--purple-light);
}

.email-list-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: var(--text-gray);
    margin-top: 1rem;
    text-align: center;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
}

.footer-bottom p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--text-white);
}

/* Responsive styles */
@media (max-width: 992px) {
  .heading {
    font-size: 2.8rem;
  }
  
  .feature-row {
    flex-direction: column;
    gap: 2rem;
  }

  .feature-row.reversed {
    flex-direction: column;
  }

  .feature-text {
    text-align: center;
  }
  
  .cta-content {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .cta-text {
    max-width: 100%;
    margin-bottom: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-menu, .nav-buttons {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .heading {
    font-size: 2.2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-outline, .btn-primary {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) {
  .form-group {
    flex-direction: row;
  }
  
  .form-group button {
    width: auto;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .social-icons {
    gap: 1rem;
  }
  
  .social-icon {
    width: 32px;
    height: 32px;
  }
  
  .social-icon-link span {
    font-size: 0.85rem;
  }
}

#toast-container > div {
    box-shadow: none !important;
    border-radius: 6px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    padding: 12px 18px;
}

.info-rows-section {
    padding: 60px 0 40px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 10rem;
    padding: 2.5rem 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.info-row.in-view {
    opacity: 1;
    transform: translateY(0);
}

.info-row.reversed {
    flex-direction: row-reverse;
}

.info-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-image img {
    max-width: 512px;
    width: 100%;
    border-radius: 1rem;
    box-shadow: -25px -25px 0 #303030;
    border: 2px solid #454545;
    transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s cubic-bezier(.4,0,.2,1);
}

.info-image img:hover {
    transform: translateY(-12px);
    box-shadow: -25px -13px 0 #303030;
}

.info-image-2 img {
    max-width: 450px;
    width: 100%;
    border-radius: 1rem;
    box-shadow: -40px 16px 0 #303030;
    border: 2px solid #454545;
    transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s cubic-bezier(.4,0,.2,1);
}

.info-image-2 img:hover {
    transform: translateY(-12px);
    box-shadow: -40px 28px 0 #303030;
}

.info-image-3 img {
    max-width: 512px;
    width: 100%;
    border-radius: 1rem;
    box-shadow: 20px -20px 0 #303030;
    border: 2px solid #454545;
    transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s cubic-bezier(.4,0,.2,1);
}

.info-image-3 img:hover {
    transform: translateY(-12px);
    box-shadow: 20px -8px 0 #303030;
}

.info-text {
    flex: 2;
    padding: 0 1rem;
}

.info-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
}

.info-text p {
    color: var(--text-gray);
    font-size: 1.15rem;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .info-row, .info-row.reversed {
        flex-direction: column !important;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    .info-image img {
        max-width: 220px;
    }
    .info-text {
        padding: 0;
    }
}