File size: 545 Bytes
18e8985
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
global_css = """
<style>
    .hero {
        text-align: center;
        padding: 50px;
        background: linear-gradient(135deg, #0F9D58, #1E88E5);
        color: white;
        border-radius: 10px;
    }
    .cta-button {
        background-color: #1E88E5;
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
    }
    .cta-section {
        text-align: center;
        padding: 30px;
        background: #0F9D58;
        color: white;
        border-radius: 10px;
    }
</style>
"""