/* Base color: #252a3a */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #252a3a;
    color: #ffffff;
}

.branding-header {
    background-color: #1d2130;
    padding: 2rem;
    text-align: center;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: bold;
}

/* Make header brand image responsive to avoid horizontal scroll on small screens */
.brand-logo img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.feature-section {
    padding: 4rem 2rem;
    text-align: center;
}

.section-inner {
    max-width: 900px;
    margin: auto;
}

.feature-section img {
    max-width: 100%;
    margin-top: 1.5rem;
    border-radius: 8px;
}

/* Different tone backgrounds */
.tone1 { background-color: #2e3447; }
.tone2 { background-color: #3a4054; }
.tone3 { background-color: #454b63; }
.tone4 { background-color: #50576f; }

.footer {
    background-color: #1d2130;
    padding: 1.5rem;
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
}

.footer .links a {
    color: #9bbcff;
    margin: 0 0.5rem;
    text-decoration: none;
}
.footer .links a:hover { text-decoration: underline; }

.branding-footer {
    font-weight: bold;
    margin-bottom: 1.0rem;
}

.copyright {
    padding: 0.5rem;
}

/* --- Layout for first split feature section --- */
.split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.split .left {
    flex: 1 1 300px;
    min-width: 0;
    display: flex;
    justify-content: center;
    text-align: center;
}

.split .left img {
    max-width: 100%;
    border-radius: 10px;
}

.split .left .top-text h1 {
    margin: 0 0 1.2rem 0;
    font-size: 1.8rem;
    line-height: 1.3;
}

.split .left .top-text h2 {
    margin: 0 0 1.2rem 0;
    font-size: 1.4rem;
    line-height: 1.3;
}

.split .right .top-text h2 {
    margin: 0 0 1.2rem 0;
    font-size: 1.4rem;
    line-height: 1.3;
}

.store-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.store-badges .badge {
    height: 55px;
    width: auto;
}

.phone {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.center {
    justify-content: center;
    align-items: center;
}

.split .right {
    flex: 1 1 300px;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.split .right img {
    max-width: 100%;
    border-radius: 10px;
}

.data_deletion,
.support,
.privacy,
.terms,
.message {
    line-height: 1.6;
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
    padding: 20px 4%;
    display: block;
}

.fine-print {
    font-size: 0.6rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 40px auto;
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

/* Allow flex children to shrink and add mobile-friendly adjustments */
.split .left, .split .right { min-width: 0; }

@media (max-width: 600px) {
    .video-wrapper iframe { height: 220px; }
    .feature-section { padding: 2rem 1rem; }
    .section-inner { padding: 0 1rem; }
    .split { flex-direction: column; gap: 1rem; align-items: stretch; }
    .split .left, .split .right { flex: 1 1 100%; }
    .split .left .top-text h1 { font-size: 1.4rem; }
    .split .left .top-text h2, .split .right .top-text h2 { font-size: 1rem; }
    .split .left.phone { flex-direction: column; }
    .phone img { width: 140px; height: auto; }
    .branding-header { padding: 1rem; }
}
