body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #f4f4f4;
    padding: 1rem;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

h1,
h2 {
    color: #2c3e50;
}

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.app-stores {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.app-stores a {
    display: inline-block;
    margin: 0 10px;
}

.app-stores img {
    height: auto;
    width: 200px;
    /* Adjust this value as needed */
    max-width: 100%;
    object-fit: contain;
}

.app-stores a:first-child img {
    margin-right: 10px;
}

footer {
    background-color: #f4f4f4;
    padding: 1rem;
    text-align: center;
    margin-top: 2rem;
}

footer nav a {
    margin: 0 10px;
    color: #333;
    text-decoration: none;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar {
    background-color: #000000 !important;
}

#home {
    position: relative;
    background: url('hero-image.webp') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 150px 0;
    /* Increased padding for more space */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(66, 144, 149, 0.8), rgba(68, 148, 144, 0.8));
}

#home .container {
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    /* Larger font size */
    font-weight: 700;
    /* Bold font weight */
    letter-spacing: 4px;
    /* Increased letter spacing */
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#home h2 {
    font-size: 1.8rem;
    /* Slightly larger subtitle */
    font-weight: 300;
    /* Lighter weight for contrast */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

#home p {
    font-size: 1.2rem;
    /* Larger paragraph text */
    max-width: 800px;
    /* Limit width for better readability */
    margin: 0 auto 2rem;
}

.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

.card {
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.pricing-card-title {
    font-size: 2.5rem;
    font-weight: 300;
}

footer a:hover {
    text-decoration: underline;
}

#about img {
    max-width: 100%;
    height: auto;
}

#testimonials .card {
    height: 100%;
}

#testimonials .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}