-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
535 lines (466 loc) · 20.8 KB
/
index.html
File metadata and controls
535 lines (466 loc) · 20.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lima Services - Cybersecurity Audits & Vulnerability Checks</title>
<meta name="description" content="Specializing in affordable cybersecurity audits, vulnerability scanning, and compliance checks for small to mid-sized businesses.">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Montserrat:wght@500;700&display=swap" rel="stylesheet">
<style>
/* CSS Variables for Light/Dark Theme */
:root {
/* Light Mode (Default) */
--bg-color: #ffffff;
--text-color: #1a1a1a;
--header-bg: #f5f5f5;
--primary-color: #007bff; /* A clean blue */
--accent-color: #dc3545; /* A confident red for accents/CTAs */
--card-bg: #ffffff;
--border-color: #e0e0e0;
}
.dark-mode {
/* Dark Mode */
--bg-color: #121212;
--text-color: #e0e0e0;
--header-bg: #1e1e1e;
--primary-color: #00bcd4; /* A light cyan/blue for contrast */
--accent-color: #ff5722; /* A vibrant orange for accents/CTAs */
--card-bg: #1e1e1e;
--border-color: #333333;
}
/* Base Styles */
body {
font-family: 'Roboto', sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
margin: 0;
padding: 0;
transition: background-color 0.5s, color 0.5s;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header and Navigation */
header {
background-color: var(--header-bg);
padding: 15px 0;
border-bottom: 1px solid var(--border-color);
position: sticky;
top: 0;
z-index: 1000;
}
.nav-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-family: 'Montserrat', sans-serif;
font-size: 1.5em;
font-weight: 700;
color: var(--primary-color);
text-decoration: none;
}
nav a {
color: var(--text-color);
text-decoration: none;
margin-left: 25px;
font-weight: 500;
padding: 5px 0;
transition: color 0.3s;
}
nav a:hover {
color: var(--accent-color);
}
/* Dark Mode Toggle Switch */
.theme-switch-wrapper {
display: flex;
align-items: center;
}
.theme-switch {
display: inline-block;
height: 34px;
position: relative;
width: 60px;
margin-left: 10px;
}
.theme-switch input {
display: none;
}
.slider {
background-color: #ccc;
bottom: 0;
cursor: pointer;
left: 0;
position: absolute;
right: 0;
top: 0;
transition: 0.4s;
border-radius: 34px;
}
.slider:before {
background-color: #fff;
bottom: 4px;
content: "";
height: 26px;
left: 4px;
position: absolute;
transition: 0.4s;
width: 26px;
border-radius: 50%;
}
input:checked + .slider {
background-color: var(--primary-color);
}
input:checked + .slider:before {
transform: translateX(26px);
}
/* Hero Section (Above the Fold) */
.hero {
text-align: center;
padding: 80px 0;
background-color: var(--header-bg); /* Use a slightly different background for the hero */
border-bottom: 2px solid var(--accent-color);
}
.hero h1 {
font-family: 'Montserrat', sans-serif;
font-size: 2.5em;
margin-bottom: 15px;
color: var(--text-color);
}
.hero p {
font-size: 1.2em;
margin-bottom: 30px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
/* Call to Action Button */
.cta-button {
display: inline-block;
background-color: var(--accent-color);
color: #ffffff;
padding: 12px 30px;
text-decoration: none;
border-radius: 5px;
font-weight: 700;
font-size: 1.1em;
transition: background-color 0.3s;
border: none;
cursor: pointer;
}
.cta-button:hover {
background-color: #c9303c; /* Darker red/orange on hover */
}
.dark-mode .cta-button:hover {
background-color: #e64a19; /* Darker orange on hover */
}
/* Section Styling */
section {
padding: 60px 0;
border-bottom: 1px solid var(--border-color);
}
h2 {
font-family: 'Montserrat', sans-serif;
text-align: center;
font-size: 2em;
margin-bottom: 40px;
color: var(--primary-color);
}
/* Services Section Specifics */
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.service-card {
background-color: var(--card-bg);
border: 1px solid var(--border-color);
padding: 25px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s, box-shadow 0.3s;
}
.dark-mode .service-card {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.service-card h3 {
color: var(--accent-color);
font-size: 1.4em;
margin-top: 0;
}
.service-card p {
font-size: 0.95em;
margin-bottom: 15px;
}
.service-card ul {
list-style: none;
padding: 0;
}
.service-card ul li {
background: var(--primary-color);
color: #ffffff;
padding: 5px 10px;
margin-bottom: 5px;
border-radius: 4px;
display: inline-block;
font-size: 0.8em;
}
/* Testimonials Section */
.testimonial-card {
background-color: var(--card-bg);
border-left: 5px solid var(--primary-color);
padding: 20px;
border-radius: 4px;
font-style: italic;
margin-bottom: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.testimonial-card footer {
margin-top: 10px;
font-style: normal;
font-weight: 700;
color: var(--accent-color);
}
/* Contact Form */
.contact-form-container {
max-width: 600px;
margin: 0 auto;
background-color: var(--card-bg);
padding: 30px;
border-radius: 8px;
border: 1px solid var(--border-color);
}
.contact-form-container label {
display: block;
margin-bottom: 8px;
font-weight: 500;
}
.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container textarea {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: 1px solid var(--border-color);
border-radius: 4px;
background-color: var(--bg-color);
color: var(--text-color);
box-sizing: border-box; /* Important for padding/border calculation */
}
.contact-form-container textarea {
resize: vertical;
min-height: 100px;
}
/* Blog Section */
.blog-post-content {
max-width: 800px;
margin: 0 auto;
line-height: 1.6;
}
.blog-post-content h3 {
color: var(--primary-color);
margin-top: 30px;
font-size: 1.5em;
}
.blog-post-content p, .blog-post-content ul {
margin-bottom: 20px;
}
/* Footer */
footer {
text-align: center;
padding: 20px 0;
background-color: var(--header-bg);
border-top: 1px solid var(--border-color);
font-size: 0.9em;
}
/* Mobile Adjustments (Basic Responsiveness) */
@media (max-width: 768px) {
.hero {
padding: 60px 0;
}
.hero h1 {
font-size: 2em;
}
nav a {
margin-left: 15px;
}
.services-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body id="body">
<header>
<div class="container nav-content">
<a href="#hero" class="logo">Lima Services</a>
<nav>
<a href="#about">About</a>
<a href="#services">Services</a>
<a href="#blog">Blog</a>
<a href="#contact" class="cta-button" style="padding: 5px 15px; font-size: 1em;">Free Consult</a>
</nav>
<div class="theme-switch-wrapper">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox" />
<div class="slider round"></div>
</label>
</div>
</div>
</header>
<section class="hero" id="hero">
<div class="container">
<h1>Your Proactive Cyber Defense Partner.</h1>
<p>We specialize in **cybersecurity audits** to help businesses like yours **identify vulnerabilities before hackers do.**</p>
<p>Take the first step to true security.</p>
<a href="#contact" class="cta-button">Yes, Send Me Info on a Free Initial Consultation!</a>
</div>
</section>
<section id="services">
<div class="container">
<h2>Our Cybersecurity Audit Services</h2>
<div class="services-grid">
<div class="service-card">
<h3>Quick Cyber Health Check ($99 Hook)</h3>
<p><strong>A low-commitment starter to prove our value.</strong> We perform a basic external scan of your website and network perimeter to identify common, high-risk vulnerabilities.</p>
<ul>
<li>External Vulnerability Scan (OpenVAS/Nmap)</li>
<li>High-Level Risk Report (1-3 Days)</li>
<li>Actionable Fix Recommendations</li>
<li>Perfect for **SMBs** needing a basic check for insurance or awareness.</li>
</ul>
</div>
<div class="service-card">
<h3>Phishing Awareness Package ($50 - $100)</h3>
<p>Your team is your first line of defense. We test their readiness with a safe, simulated exercise.</p>
<ul>
<li>Simulated Phishing Campaign (5-10 Staff)</li>
<li>Click-Rate Performance Report</li>
<li>Basic Training Tips & Best Practices</li>
<li>Utilizes tools like **GoPhish** for simple deployment.</li>
</ul>
</div>
<div class="service-card">
<h3>Comprehensive Security Audits</h3>
<p>A deeper dive into your systems and security policies to ensure full compliance and vulnerability coverage.</p>
<ul>
<li>Full Network & System Audits</li>
<li>Security Policy & Procedure Review</li>
<li>Compliance Checks (e.g., HIPAA, PCI-DSS preparation)</li>
</ul>
</div>
<div class="service-card">
<h3>Red Teaming & Advanced Testing</h3>
<p>A full-scope, objective-based attack simulation to test your security program's detection and response capabilities.</p>
<ul>
<li>Simulated Attacker Techniques</li>
<li>Physical and Social Engineering Options</li>
<li>Detailed Breach & Remediation Report</li>
</ul>
</div>
</div>
<div style="text-align: center; margin-top: 40px;">
<a href="#contact" class="cta-button">Start with a Free Consultation</a>
</div>
</div>
</section>
<section id="about">
<div class="container">
<h2>Meet the Founder (Your Expertise)</h2>
<div style="max-width: 800px; margin: 0 auto; text-align: center;">
<p>Hello, I'm [Your Name], the founder of Lima Services. My mission is to make professional cybersecurity accessible and understandable for the businesses that need it most—small and mid-sized enterprises.</p>
<p>My background is rooted in **[mention your specific area: e.g., network engineering, IT management, a specific certification like CompTIA Security+, or a past role]**. I founded Lima Services to focus on practical, cost-effective solutions that deliver real security improvements, not just confusing reports.</p>
<p>I prioritize the low-barrier services like the **Quick Cyber Health Check** because I believe in **building trust through quick, measurable wins** before recommending large-scale engagements. My promise is a simple, clear, and actionable path to a more secure business.</p>
<p>**Certifications/Key Skills:** [List 2-3 of your most relevant skills/certs: e.g., Network Architecture, Vulnerability Scanning (OpenVAS, Nikto), CompTIA Security+, etc.]</p>
</div>
</div>
</section>
<section id="blog" style="background-color: var(--header-bg);">
<div class="container">
<h2>From the Blog: Why Businesses Need Red Team Audits</h2>
<div class="blog-post-content">
<p>In the world of cybersecurity, there are audits and then there are simulations. A **Red Team Audit** (or Red Teaming) is the ultimate test—a full-scope, objective-based attack simulation designed to challenge your entire security program, from technology to people.</p>
<h3>What is Red Teaming?</h3>
<p>Unlike a standard penetration test that focuses on finding and exploiting as many vulnerabilities as possible, a Red Team engagement has a specific objective, such as accessing a particular database or compromising a key business function. Our team mimics the techniques, tactics, and procedures (TTPs) of real-world attackers, often over a period of weeks, to see if your security controls can detect and stop a determined, patient threat actor.</p>
<h3>Why is it Better than a Standard Audit?</h3>
<ul>
<li>**Tests Detection:** It reveals if your systems (Blue Team) can actually *spot* a breach in progress, not just if a firewall is configured correctly.</li>
<li>**Exposes Gaps in Processes:** It highlights failures in non-technical areas like staff awareness, incident response playbooks, and physical security.</li>
<li>**Provides a True Security Score:** It answers the question: "When a professional attacker targets us, how long will it take them to achieve their goal, and will we know they were even there?"</li>
</ul>
<p>While an external vulnerability scan is the perfect starting point, Red Teaming is the maturity test for businesses that have moved beyond the basics and need to validate their investments in security technology and personnel. It’s an essential service for high-value targets and compliance-driven organizations.</p>
<p style="text-align: center;"><a href="#contact" class="cta-button">Discuss Advanced Security Testing</a></p>
</div>
</div>
</section>
<section id="testimonials">
<div class="container">
<h2>Client Trust & Feedback</h2>
<div style="max-width: 700px; margin: 0 auto;">
<div class="testimonial-card">
<p>"[Placeholder Text: Once I get my first client, this will be replaced with actual feedback. Something like: 'The Quick Cyber Health Check was fast, affordable, and uncovered an issue we didn't know we had. A great first step!']"</p>
<footer>— [Client Name Placeholder], Small Business Owner</footer>
</div>
<div class="testimonial-card">
<p>"[Placeholder Text: I look forward to adding a testimonial about an upsell, e.g.: 'We started with the Phishing Package and quickly moved to a full audit. The report was the clearest security document we've ever received.']"</p>
<footer>— [Client Name Placeholder], IT Manager</footer>
</div>
</div>
</div>
</section>
<section id="contact" style="background-color: var(--header-bg);">
<div class="container">
<h2>Get Your Free Initial Consultation</h2>
<div class="contact-form-container">
<p style="text-align: center; color: var(--accent-color); font-weight: 700;">Start your security journey with a no-obligation, 30-minute consultation.</p>
<form action="YOUR_FORM_SUBMISSION_ENDPOINT" method="POST">
<label for="name">Your Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Business Email:</label>
<input type="email" id="email" name="email" required>
<label for="business">Business Name:</label>
<input type="text" id="business" name="business" required>
<label for="service">Interested Service:</label>
<input type="text" id="service" name="service" placeholder="e.g. Free Consultation, $99 Quick Check, Red Teaming" required>
<label for="message">Your Message:</label>
<textarea id="message" name="message" rows="4" placeholder="Briefly describe your main security concern." required></textarea>
<button type="submit" class="cta-button" style="width: 100%;">Schedule My Free Consultation</button>
</form>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© 2025 Lima Services (DBA Suggestions: Lima Cyber Audits, Lima SecureWorks, Lima Threat Check). All rights reserved.</p>
</div>
</footer>
<script>
const body = document.getElementById('body');
const checkbox = document.getElementById('checkbox');
const darkClass = 'dark-mode';
// 1. Check for Saved Preference
const savedTheme = localStorage.getItem('theme');
if (savedTheme === 'dark') {
body.classList.add(darkClass);
checkbox.checked = true;
}
// 2. Event Listener for Toggle
checkbox.addEventListener('change', () => {
if (checkbox.checked) {
body.classList.add(darkClass);
localStorage.setItem('theme', 'dark');
} else {
body.classList.remove(darkClass);
localStorage.setItem('theme', 'light');
}
});
</script>
</body>
</html>