/* Base Page Setup */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #B2BEB5; /* Sage Green */
    color: #ffffff; /* White text */
}

/* Hero Section */
.hero {
    padding: 70px 20px; /* top and bottom padding is 80 px and left and right is 20 px --shorthand */
    background: #B2BEB5; /* Keep consistent background */
    text-align: center;
}

.hero h1 {
    font-size: 3rem;  /* rem is a multiple of the default font size, usually 16  */
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #4A576F; /* Slate Blue button */
    color: #ffffff; /* White text */
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

.screenshots {
    text-align: center;
    padding: 20px 20px 60px 20px;
    background: #B2BEB5; /* Keep consistent background */
}

.screenshots h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    background: #B2BEB5; /* Keep consistent background */
}

.shot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.shot-grid img {
    width: 100%;
    max-width: 260px;
    display: block;
    margin: 0 auto;
    border-radius: 28px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.shot-grid img:hover {
    transform: translateY(-8px);
}

/* Features Section */
.features {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    margin: 10px 0;
    font-size: 1.1rem;
}

/* Privacy Policy Section and Terms of Service */
.policy-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    line-height: 1.6;
}

.policy-container a {
    color: #ffffff; /* white for links */
}

.policy-container ul li {
    color: #4A576F; /* Slate blue for lists/bullets */
}

/* Headings */
h1 {
    font-size: 44px;
    margin-bottom: 10px;
}

h2 {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 20px;
}

h1, h2, li {
    color: #ffffff;
}

p {
    color: #4A576F; /* Slate blue for paragraphs */
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 40px 10px calc(40px + env(safe-area-inset-bottom));
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

footer a {
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.9rem;
}

footer p {
    color: #4A576F; /* Slate blue */
    margin: 0;
}

/* Company Hero */
.company-hero {
    background-color: #4A576F; /* Slate blue for corporate hero */
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.logo {
    max-width: 220px; /* adjust as needed */
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.company-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.company-hero p {
    font-size: 1.3rem;
    color: white;
}

/* Apps Section */
.apps {
    max-width: 1000px;
    margin: 30px auto 10px auto;
    padding: 0 20px;
    text-align: center;
}

.app-card {
    background-color: #B2BEB5; /* Sage green background to match Lex Quest page */
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
    margin: 20px;
    max-width: 300px;
}

.app-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.app-card h3 {
    margin: 10px 0 5px 0;
    font-size: 1.5rem;
    color: #4A576F; /* Slate blue for headings */
}

.app-card p {
    color: #333;
    font-size: 1rem;
    margin-bottom: 15px;
}

.app-card .button {
    background-color: #4A576F; /* Slate blue button */
    color: white;
}

/* App Icon */
.app-card .app-icon {
    width: 80px;      /* Adjust size as needed */
    height: 80px;     /* Keep it square */
    object-fit: contain;
    border-radius: 16px; /* optional, for rounded corners */
    margin-bottom: 15px;
}

/* Larger App Icon */
.app-card .app-icon2 {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
