/* Reset and Base Styles */
:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --accent-color: #ff8562;
    /* Example accent color from Tilda usually */
    --text-color: #333;
    --font-family: 'Arial', sans-serif;
    /* Fallback */
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 20px 0;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Sections */
section {
    padding: 60px 0;
}

/* Footer */
footer {
    background: #171717;
    color: #fff;
    padding: 75px 0 90px;
}

/* Hero Section */
.hero {
    background-image: url('../images/main.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
    /* Assuming text is black based on original, or maybe white? Tilda usually has overlays. */
    position: relative;
}

.hero-content {
    background: rgba(255, 255, 255, 0.8);
    /* Add a subtle background to make text readable if needed */
    padding: 40px;
    border-radius: 20px;
    display: inline-block;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
}

/* Download App Section */
.download-app {
    text-align: center;
    background-color: #fff;
}

.section-title {
    font-size: 36px;
    margin-bottom: 40px;
}

.app-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.app-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.app-link img {
    width: 60px;
    /* Adjust based on actual icon size */
    height: 60px;
}

.contact-email {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
}

/* Footer Styles */
.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

.copyright {
    font-size: 12px;
    color: #999;
}

.links-col ul,
.social-col ul {
    padding: 0;
}

.links-col li,
.social-col li {
    margin-bottom: 10px;
}

.links-col a,
.social-col a {
    color: #fff;
    font-size: 14px;
    transition: color 0.3s;
}

.links-col a:hover,
.social-col a:hover {
    color: var(--accent-color);
}

/* Header */
.site-header {
    background: #171717;
    padding: 20px 0;
}

.header-logo img {
    height: 40px;
}

/* Policy Content */
.policy-content {
    padding: 60px 0;
    background: #fff;
    color: #333;
}

.page-title {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.text-content {
    font-size: 16px;
    line-height: 1.6;
}

.text-content p {
    margin-bottom: 20px;
}

.text-content strong {
    font-weight: 700;
}