body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1a73e8;
    text-decoration: none;
}

nav a {
    margin-left: 20px;
    color: #666;
    text-decoration: none;
}

nav a:hover {
    color: #1a73e8;
}

.hero {
    background: #1a73e8;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.subheadline {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-buttons a {
    margin: 0 10px;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.cta-primary {
    background: #fff;
    color: #1a73e8;
}

.cta-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.value-props {
    background: #fff;
    padding: 40px 0;
}

.value-props .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.value-prop {
    max-width: 30%;
}

.problem-section, .solution-section, .public-cams-section, .how-it-works, .trust-signals, .comparison, .social-proof, .faq, .final-cta {
    padding: 60px 0;
}

.problem-section, .how-it-works, .comparison, .faq {
    background: #fff;
}

section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
}

pre {
    background: #eee;
    padding: 20px;
    border-radius: 5px;
    white-space: pre-wrap;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

thead {
    background: #1a73e8;
    color: #fff;
}

.testimonial {
    margin-bottom: 20px;
}

.testimonial cite {
    display: block;
    margin-top: 5px;
    font-style: normal;
    font-weight: bold;
}

.faq-item {
    margin-bottom: 20px;
}

.final-cta {
    background: #1a73e8;
    color: #fff;
    text-align: center;
}

footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
}

.footer-links {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.footer-column h4 {
    margin-bottom: 15px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #555;
    padding-top: 20px;
}