-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
304 lines (261 loc) · 8.19 KB
/
index.html
File metadata and controls
304 lines (261 loc) · 8.19 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
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notary Services - Professionele Begeleiding</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
```
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
color: #333;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header */
header {
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
color: white;
padding: 15px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-content {
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
display: flex;
align-items: center;
gap: 15px;
}
.logo-icon {
width: 60px;
height: 60px;
position: relative;
}
.logo-icon svg {
width: 100%;
height: 100%;
filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
}
.logo-text h1 {
font-size: 26px;
font-weight: 700;
letter-spacing: -0.5px;
}
.logo-text p {
font-size: 13px;
opacity: 0.9;
font-weight: 300;
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
padding: 50px 0;
text-align: center;
}
.hero h2 {
font-size: 42px;
color: #1e3c72;
margin-bottom: 15px;
font-weight: 700;
}
.hero p {
font-size: 18px;
color: #555;
max-width: 800px;
margin: 0 auto;
line-height: 1.7;
}
/* Services Section */
.services {
padding: 40px 0;
background: white;
}
.section-title {
text-align: center;
font-size: 34px;
color: #1e3c72;
margin-bottom: 30px;
font-weight: 700;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin-top: 30px;
}
.service-card {
background: #f8f9fa;
padding: 25px;
border-radius: 12px;
box-shadow: 0 3px 15px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}
.service-icon {
font-size: 36px;
margin-bottom: 15px;
color: #1e3c72;
}
.service-card h3 {
font-size: 20px;
color: #1e3c72;
margin-bottom: 12px;
font-weight: 600;
}
.service-card p {
color: #666;
font-size: 15px;
line-height: 1.6;
}
/* About Section */
.about {
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
color: white;
padding: 50px 0;
text-align: center;
}
.about h2 {
font-size: 34px;
margin-bottom: 20px;
font-weight: 700;
}
.about p {
font-size: 16px;
max-width: 900px;
margin: 0 auto;
line-height: 1.7;
opacity: 0.95;
}
/* Footer */
footer {
background: #1a1a1a;
color: white;
text-align: center;
padding: 20px 0;
}
footer p {
opacity: 0.8;
font-size: 14px;
}
@media (max-width: 768px) {
.hero {
padding: 40px 0;
}
.hero h2 {
font-size: 32px;
}
.hero p {
font-size: 16px;
}
.services {
padding: 30px 0;
}
.services-grid {
grid-template-columns: 1fr;
}
.logo-text h1 {
font-size: 20px;
}
.logo-icon {
width: 50px;
height: 50px;
}
}
</style>
```
</head>
<body>
<header>
<div class="container">
<div class="header-content">
<div class="logo">
<div class="logo-icon">
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<!-- Circular background -->
<circle cx="50" cy="50" r="45" fill="white"/>
```
<!-- Document/Paper -->
<rect x="30" y="25" width="40" height="50" rx="2" fill="#1e3c72"/>
<rect x="33" y="28" width="34" height="44" rx="1" fill="white"/>
<!-- Document lines -->
<line x1="38" y1="35" x2="62" y2="35" stroke="#1e3c72" stroke-width="1.5" opacity="0.3"/>
<line x1="38" y1="42" x2="62" y2="42" stroke="#1e3c72" stroke-width="1.5" opacity="0.3"/>
<line x1="38" y1="49" x2="58" y2="49" stroke="#1e3c72" stroke-width="1.5" opacity="0.3"/>
<!-- Letters NS -->
<text x="50" y="62" font-family="Inter, Arial, sans-serif" font-size="20" font-weight="700" fill="#1e3c72" text-anchor="middle">NS</text>
<!-- Gold ribbon/seal accent -->
<circle cx="62" cy="65" r="8" fill="#d4af37"/>
<path d="M62 65 L65 72 L59 72 Z" fill="#b8941f"/>
<circle cx="62" cy="65" r="5" fill="none" stroke="white" stroke-width="1.5"/>
</svg>
</div>
<div class="logo-text">
<h1>Notary Services</h1>
<p>Professionele begeleiding bij notariële processen</p>
</div>
</div>
</div>
</div>
</header>
<section class="hero">
<div class="container">
<h2>Expertise in Notariële Begeleiding</h2>
<p>Notary Services levert begeleiding aan boekhouders, fiscalisten en andere tussenpersonen bij notariële processen zoals het oprichten van een B.V., aandelenoverdrachten en statutenwijzigingen</p>
</div>
</section>
<section class="services">
<div class="container">
<h2 class="section-title">Onze Diensten</h2>
<div class="services-grid">
<div class="service-card">
<div class="service-icon">🏢</div>
<h3>Oprichten B.V.</h3>
<p>Complete begeleiding bij het oprichten van een besloten vennootschap, van voorbereiding tot afronding.</p>
</div>
<div class="service-card">
<div class="service-icon">📊</div>
<h3>Aandelenoverdrachten</h3>
<p>Professionele ondersteuning bij het overdragen van aandelen met aandacht voor alle juridische aspecten.</p>
</div>
<div class="service-card">
<div class="service-icon">📋</div>
<h3>Statutenwijzigingen</h3>
<p>Deskundige begeleiding bij het wijzigen van statuten en andere juridische documenten.</p>
</div>
</div>
</div>
</section>
<section class="about" id="contact">
<div class="container">
<h2>Waarom Notary Services?</h2>
<p>Wij begrijpen de uitdagingen waarmee boekhouders, fiscalisten en andere professionals worden geconfronteerd bij notariële processen. Met onze specialistische kennis en jarenlange ervaring zorgen wij voor een soepel en efficiënt verloop van alle notariële handelingen. Uw cliënten in goede handen, uw proces zorgeloos geregeld.</p>
</div>
</section>
<footer>
<div class="container">
<p>© 2026 Notary Services. Alle rechten voorbehouden.</p>
</div>
</footer>
</body>
</html>