/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: #007bff;
    color: #fff;
    padding: 1rem 0;
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.logo-link {
    float: left;
    margin-right: 20px;
    margin-top: 5px;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

header h1 {
    margin-bottom: 0.5rem;
}

nav {
    margin-top: 1rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
}

nav a:hover {
    text-decoration: underline;
}

section {
    padding: 2rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

footer {
    background-color: #f8f9fa;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

/* Home specific */
#hero {
    background-color: #f0f2f5;
    text-align: center;
}

#hero h2 {
    margin-bottom: 1rem;
}

.features {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
}

.features div {
    max-width: 300px;
}

.features img {
    max-width: 100px;
    height: auto;
    border-radius: 50%;
    margin: 1rem 0;
}

.btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
}

.btn:hover {
    background-color: #0056b3;
}

.play-btn {
    background-color: black !important;
    color: white !important;
}

.play-btn:hover {
    background-color: #333 !important;
}

.google-btn {
    width: 120px;
    height: 60px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.google-btn:hover {
    opacity: 0.8;
}

/* About specific */
.about-founder {
    text-align: center;
    margin: 2rem 0;
}

/* Contact specific */
.contact-info {
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Subscription specific */
.plans {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.plan-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    text-align: center;
    max-width: 300px;
    flex: 1;
}

.plan-card.featured {
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.plan-card ul {
    list-style-type: none;
    padding: 0;
}

.plan-card li {
    margin: 10px 0;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    margin: 10px 0;
}

/* Apps specific */
.app-list {
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
}

.app-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 20px auto;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.app-item .text {
    flex: 1;
}

.app-item .text h3 {
    margin: 0;
}

.app-item .text p {
    margin: 5px 0;
}

.app-item .actions {
    text-align: center;
}

.app-item .actions img {
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
    }
    .plans {
        flex-direction: column;
        align-items: center;
    }
    nav a {
        display: block;
        margin: 5px 0;
    }
    .app-item {
        flex-direction: column;
    }
}
