File size: 1,005 Bytes
b682363
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* src/styles/About.css */
.about-page {
    background-color: #0F172A;
    color: #F8FAFC;
    font-family: 'Inter', sans-serif;
    padding-bottom: 60px;
  }
  
  .about-hero {
    padding: 80px 60px 40px 60px;
    background-color: #1E293B;
    text-align: center;
  }
  
  .about-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .about-subtitle {
    font-size: 18px;
    color: #CBD5E1;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding: 40px 60px;
    justify-content: center;
  }
  
  .about-card {
    background-color: #1F2937;
    padding: 32px;
    border-radius: 16px;
    width: 500px;
    box-shadow: 0 0 10px rgba(0, 255, 160, 0.05);
  }
  
  .about-card h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  
  .about-card p,
  .about-card ul {
    font-size: 16px;
    color: #CBD5E1;
    line-height: 1.6;
  }
  
  .about-card li {
    margin-bottom: 8px;
  }