* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(60.76% 42.01% at 0 100%, rgba(37, 99, 235, 0.18) 0, rgba(37, 99, 235, 0) 100%),
    radial-gradient(34.05% 42.24% at 100% 0, rgba(59, 130, 246, 0.14) 0, rgba(59, 130, 246, 0) 100%);
    filter: hue-rotate(-10deg) saturate(1.05);
    color: #000000;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

.logo-wrapper {
    display: flex;
    margin-bottom: 10px;
    margin-top: 0px;
    align-items: center;
    gap: 10px;
    justify-content: center;
    transform: translateX(-10px);
}

.logo {
    width: 50px;
    height: auto;
}

.logo-text {
    font-size: 20px;
    color: #262626;
}

a {
    color: #000000;
    text-decoration: none;
    transition: color 0.4s;
}

.image-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
    flex-wrap: nowrap; /* Allows wrapping on small screens */
}

.image-row img {
    width: 100%;
    max-width: 150px;
    height: auto;
    flex-shrink: 1;
}

.offer{
    line-height: 1.5;
    font-weight: 400;
}

.testamonial{
    font-size: 1.5rem;
    color: #000000;
}

.testimonial-container {
    margin-top:0px;
    margin-bottom:0px;
}

.testimonial-card{
    display: none;
}

#more-button {
  display: block;
  padding: 0.75rem 2rem;
  border-radius: 1.5rem;
  background: rgb(136, 84, 84);
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 24px 0 rgba(30, 58, 138, 0.08);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

#more-button:active {
  transform: scale(0.98);
}

.redirect-links{
    line-height:1.2;
}

@media (max-width: 768px) {
    footer {
        margin-top: 10px !important;
    }

    .logo-wrapper {
        margin-top: 0px !important;
        margin-bottom: 10px !important;
    }
    .logo {
        width: 40px;
        height: auto;
    }
    .logo-text {
        font-size: 16px;
        color: #262626;
    }
}