/* Base Body */
body {
    margin: 0;
    background-color: #0f0f0f;
    color: #eaeaea;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
}

/* Header Container */
header {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 40px;
    display: flex;
    align-items: center;
}

/* Logo */
.logo {
    height: 70px;
    width: auto;
    display: block;
}

/* Page Sections */
section,
footer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Hero Section */
.hero h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 800px;
}

/* Section Headings */
section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* Paragraphs */
section p {
    margin-bottom: 16px;
    max-width: 900px;
}

/* Lists */
ul {
    margin-top: 20px;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    border-top: 1px solid #222;
    font-size: 14px;
    color: #aaaaaa;
}

/* ------------------------------
   Responsive Typography
--------------------------------*/

/* Tablets */
@media (max-width: 1024px) {
    .hero h2 {
        font-size: 36px;
        line-height: 1.2;
    }
}

/* Mobile Devices */
@media (max-width: 600px) {

    header {
        padding: 20px 24px;
    }

    .logo {
        height: 55px;
    }

    .hero h2 {
        font-size: 28px;
        line-height: 1.25;
        max-width: 90%;
    }

    .hero p {
        font-size: 16px;
        max-width: 90%;
    }

    section {
        padding: 40px 24px;
    }
}

/* Android-specific narrow screens */
@media (max-width: 420px) {
    .hero h2 {
        font-size: 26px;
        line-height: 1.25;
    }
}

/* Link Styling (keep corporate & subtle) */
a {
    color: inherit;
    text-decoration: none;
}