-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsalesforce.html
More file actions
79 lines (73 loc) · 1.95 KB
/
salesforce.html
File metadata and controls
79 lines (73 loc) · 1.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About Castor</title>
<style>
body {
margin: 0;
padding: 0;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #ffffff, #f4f7fb);
color: #333;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
min-height: 100vh;
text-align: center;
padding: 2em;
}
img {
max-width: 60%;
height: auto;
border-radius: 10px;
margin-bottom: 1.5em;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
h1 {
font-size: 2em;
margin-bottom: 0.3em;
color: #0057A0;
}
p {
font-size: 1.1em;
max-width: 700px;
margin-bottom: 2em;
line-height: 1.6;
}
.btn {
background-color: #0057A0;
color: white;
padding: 0.75em 1.5em;
border: none;
border-radius: 4px;
font-size: 1em;
text-decoration: none;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #003d73;
}
@media (max-width: 400px) {
img {
max-width: 80%;
}
body {
padding: 1em;
}
p {
font-size: 1em;
}
}
</style>
</head>
<body>
<img src="https://www.castoredc.com/wp-content/uploads/2025/01/RWE-home.png" alt="Castor Team or Platform Image">
<h1>Accelerating Clinical Trials</h1>
<p>
At Castor, we're revolutionizing medical research by making clinical trial data capture and integration smarter and faster. Used in over 90 countries, our platform empowers researchers to run more efficient studies, improve data quality, and bring innovations to patients sooner.
</p>
<a class="btn" href="https://www.castoredc.com/schedule-a-demo/" target="_blank">Schedule a Demo</a>
</body>
</html>