File size: 1,223 Bytes
bf56242
24b77c2
d381a55
 
 
 
 
 
 
 
 
 
24b77c2
 
f1f0fe5
 
d381a55
f1f0fe5
50f0f78
f1f0fe5
50f0f78
f1f0fe5
 
 
 
 
 
 
 
d381a55
 
 
 
 
 
f1f0fe5
 
 
d381a55
 
 
f1f0fe5
bf56242
 
d381a55
 
bf56242
24b77c2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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

body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
    background-color: #f8fafc;
}
/* Full width sections */
section {
    width: 100%;
    box-sizing: border-box;
}

/* Alternate section backgrounds */
section:nth-child(odd) {
    background-color: white;
}

section:nth-child(even) {
    background-color: #f1f5f9;
}
/* Darker background for footer */
footer {
	background-color: #0f172a;
	color: white;
}
/* Dark cards for contrast */
.card {
    background-color: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
/* Darker header */
header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    width: 100%;
}
/* Banner image overlay effect */
.pattern-navy.relative {
    background-blend-mode: overlay;
    width: 100%;
}
h1 {
	font-size: 16px;
	margin-top: 0;
}

p {
	color: rgb(107, 114, 128);
	font-size: 15px;
	margin-bottom: 10px;
	margin-top: 5px;
}

.card {
	max-width: 620px;
	margin: 0 auto;
	padding: 16px;
	border: 1px solid lightgray;
	border-radius: 16px;
}

.card p:last-child {
	margin-bottom: 0;
}