/* General Styles */
html,
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(210deg, 
        #DC143C 0%,  /* gradientCherry */
        #800080 30%,  /* gradientPurple */
        #4B0082 70%,  /* gradientDarkPurple */
        #00008B 100%  /* gradientDarkBlue */
    );
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

/* Container for content */
.container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    padding: 2em;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2em;
    box-sizing: border-box;
}

/* Main Content */
.content {
    max-width: 600px;
    flex: 1;
}

h1 {
    font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    font-size: 3rem;
    margin-bottom: 0.2em;
}

.subtitle {
  font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 0.5em;
}

.terms-content {
  font-size: 1rem;
  line-height: 1.6;
}

.terms-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1em;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5em;
}

/* Key Features List */
.key-features {
    list-style-type: none;
    padding: 0;
    margin-bottom: 1.5em;
    text-align: left;
}

.key-features li {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 0.5em;
    position: relative;
    padding-left: 1.2em;
}

.key-features li::before {
    content: '•'; /* Bullet point */
    color: #a501a5;
    position: absolute;
    left: 0;
    top: 0;
}

/* Download Button */
.download-button img {
    width: 200px;
}

/* Image Container for the Screenshot */
.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-container img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 1em;
    color: #ccc;
    font-size: 0.9rem;
}

a {
    color: #10a3e2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .image-container img {
        max-width: 80%;
        margin-top: 1.5em;
    }

    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .download-button img {
        width: 180px;
    }

    .image-container img {
        max-width: 90%;
    }
}