body.main-bg {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #6d4d9a; /* Purple from logo */
    color: #222;
}
header {
    background: #4b366e;
    color: white;
    padding: 10px 0;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: auto;
    padding: 0 20px;
}
nav .logo {
    font-weight: bold;
    font-size: 1.5em;
    color: #e3b06d;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.site-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e3b06d;
    object-fit: contain;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}
nav ul li a.active,
nav ul li a:hover {
    color: #e3b06d;
    border-bottom: 2px solid #e3b06d;
}
main {
    max-width: 900px;
    margin: 40px auto 20px auto;
    padding: 0 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.hero {
    text-align: center;
    padding: 50px 0 30px 0;
}
.hero-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: #e3b06d;
    object-fit: contain;
}
.store-buttons a {
    display: inline-block;
    margin: 10px 15px;
    text-align: center;
}
.store-buttons img {
    height: 60px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
}
.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.step {
    width: 100%;
    max-width: 400px;
    background: #fcfcfc;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step img {
    width: auto;
    height: auto;
    max-width: 250px;
    max-height: 400px;
    object-fit: contain;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.step-content {
    width: 100%;
    text-align: center;
}
.step-number {
    background: #8B4513;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    margin: 0 auto 15px auto;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    margin: auto;
}
.contact-form label {
    font-weight: 500;
}
.contact-form input, 
.contact-form textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}
.contact-form button {
    background: #e3b06d;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    font-weight: bold;
    margin-top: 8px;
}
.contact-form button:hover {
    background: #c49a63;
}
footer {
    text-align: center;
    color: #aaa;
    padding: 24px 0 10px 0;
    background: none;
    font-size: 0.95em;
}

/* App Promo Text Styling */
.app-promo-text {
    text-align: center;
    margin-top: 30px;
    padding: 25px 20px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(210, 180, 140, 0.15));
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.promo-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #8B4513;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.promo-subtitle {
    font-size: 1.1em;
    color: #A0522D;
    margin-bottom: 12px;
    font-style: italic;
    font-weight: 500;
}

.promo-features {
    font-size: 1em;
    color: #654321;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

@media (max-width: 700px) {
    .steps { flex-direction: column; align-items: center;}
    .step { width: 95%; }
    main { padding: 0 3px;}
    
    .app-promo-text {
        margin-top: 20px;
        padding: 20px 15px;
    }
    
    .promo-title {
        font-size: 1.2em;
    }
    
    .promo-subtitle {
        font-size: 1em;
    }
    
    .promo-features {
        font-size: 0.9em;
    }
}