Files
rudarksh-frontend/components/terms-services/termsService.css
2025-02-19 17:00:55 +05:30

64 lines
911 B
CSS

.termspage {
max-width: 900px;
margin: 30px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
.termspage .heading {
font-size: 2rem;
font-weight: 700;
}
.termspage h1,
h2 {
color: #333;
font-weight: bold;
}
.termspage h1 {
font-size: 28px;
margin-bottom: 10px;
text-align: center;
padding-bottom: 20px;
border-bottom: 1px solid #e0e0e0;
}
.termspage h2 {
font-size: 22px;
margin-top: 20px;
margin-bottom: 15px;
}
.termspage p {
color: #555;
font-size: 16px;
margin-bottom: 15px;
text-align: justify;
}
.termspage a {
color: #007bff;
text-decoration: none;
}
.termspage a:hover {
text-decoration: underline;
}
.termspage ul {
padding-left: 20px;
}
.termspage li {
margin-bottom: 10px;
line-height: 1.5;
}
.termspage hr {
border: 0;
border-top: 1px solid #e0e0e0;
margin: 30px 0;
}