:root {
    --primary-color: #00a19a;
    --accent-color: #4c4b39;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-size: 1.2rem;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 4.0rem;
    padding-bottom: 1.0rem;
    background-color: white;
}
.container {
    max-width: 60rem;
    margin: 0 auto;
    padding: 1rem;
}
.privacy-content p {
    text-align: justify;
    margin-bottom: 1.2rem;
    line-height: 1.8rem;
}
.privacy-content h1,
.privacy-content h2 {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}
.text-center {
    text-align: center;
}
.main-header {
    background-color: var(--primary-color);
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    height: 3.5rem;
}
.logo-text {
    font-size: 1.5rem;
}
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.main-nav a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s;
}
.main-nav a:hover {
    color: var(--accent-color);
}
.hero-section {
    padding: 5rem 1rem 3rem;
    background: white;
}
.cta-button {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s;
}
.cta-button:hover {
    color: var(--accent-color);
}
.about-section p {
    line-height: 1.8rem;
    margin-bottom: 1.2rem;
    text-align: justify;
}
.profile-wrapper {
    display: block;
}
.profile-img {
    max-width: 100px;
    margin-right: 1.25rem;
    float: left;
    border-radius: 0.5rem;
}
.features-section ul {
    list-style: none;
    padding: 0;
}
.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.download-buttons img {
    height: auto;
    max-height: 60px;
    margin: 0;
    border: none;
    background: none;
    box-shadow: none;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}
.download-buttons img:hover {
    transform: scale(1.1);
}
.page-footer {
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 1.6rem;
    color: white;
    font-size: 0.6rem;
    padding: 1.0rem 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}
.page-footer .container {
    margin: 0 auto;
    padding: 0;
    max-width: 100%;
}
.page-footer p {
    font-size: inherit;
    line-height: 1rem;
    margin: 0;
    padding: 0;
}
