/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header Styles */
header {
    background: #7851A9;
    color: white;
    padding: 10px 0;
}

header .logo {
    height: 50px;
    vertical-align: middle;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Pricing Section */
.pricing {
    text-align: center;
    padding: 40px 0;
}

.pricing h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.pricing p {
    font-size: 18px;
    margin-bottom: 40px;
}

.pricing-table {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.pricing-plan {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 30%;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.pricing-plan h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.pricing-plan .price {
    font-size: 36px;
    margin: 20px 0;
    color: #7851A9;
}

.pricing-plan ul {
    list-style: none;
    padding: 0;
    font-size: 18px;
    text-align: left;
}

.pricing-plan ul li {
    margin-bottom: 10px;
}

.pricing-plan .btn {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    display: inline-block;
    background: #7851A9;
    color: white;
    margin-bottom: 10px;
}

.pricing-plan .btn-store {
    background: #0078D7;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    margin-bottom: 10px;
}

.highlight {
    background-color: #f9f9f9;
    border-left: 4px solid #7851A9;
    margin-top: 10px;
    font-weight: bold;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin-right: 20px;
}

footer ul li a {
    color: white;
    text-decoration: none;
}

footer .social-media {
    margin-top: 10px;
}

footer p {
    margin: 10px 0 0;
}
