2024-10-07 10:50:18 +02:00
|
|
|
body {
|
|
|
|
font-family: 'Arial', sans-serif;
|
2024-10-09 13:02:48 +02:00
|
|
|
background-color: #FCFCEB; /* Light background */
|
2024-10-07 10:50:18 +02:00
|
|
|
color: #000000;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
2024-10-09 13:02:48 +02:00
|
|
|
background-color: #474D22; /* Dark header for contrast */
|
|
|
|
color: #FCFCEB; /* Light text */
|
2024-10-07 10:50:18 +02:00
|
|
|
padding: 40px 20px;
|
|
|
|
text-align: center;
|
2024-10-09 13:02:48 +02:00
|
|
|
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
|
2024-10-07 10:50:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.hero h1 {
|
|
|
|
font-size: 3rem;
|
|
|
|
margin: 0;
|
2024-10-09 13:02:48 +02:00
|
|
|
font-weight: bold; /* Bolder text */
|
2024-10-07 10:50:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.hero p {
|
|
|
|
font-size: 1.2rem;
|
|
|
|
margin: 10px 0;
|
2024-10-09 13:02:48 +02:00
|
|
|
font-style: italic; /* Italicized for a playful feel */
|
2024-10-07 10:50:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
|
|
|
max-width: 1200px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2 {
|
2024-10-09 13:02:48 +02:00
|
|
|
color: #8B9635; /* Primary color for headings */
|
|
|
|
margin: 20px 0;
|
|
|
|
padding: 10px;
|
2024-10-07 10:50:18 +02:00
|
|
|
}
|
|
|
|
|
2024-10-09 13:02:48 +02:00
|
|
|
.features, .how-it-works, .download {
|
2024-10-07 10:50:18 +02:00
|
|
|
margin: 40px 0;
|
2024-10-09 13:02:48 +02:00
|
|
|
background-color: #f0f3da; /* Light feature background */
|
2024-10-07 10:50:18 +02:00
|
|
|
padding: 20px;
|
2024-10-09 13:02:48 +02:00
|
|
|
border-radius: 15px; /* More rounded corners */
|
|
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
|
|
|
|
transition: transform 0.3s; /* Add hover effect */
|
|
|
|
}
|
|
|
|
|
|
|
|
.features:hover, .how-it-works:hover, .download:hover {
|
|
|
|
transform: translateY(-5px); /* Lift effect on hover */
|
2024-10-07 10:50:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.feature-list {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.feature-item {
|
|
|
|
flex: 1 1 calc(30% - 20px);
|
2024-10-09 13:02:48 +02:00
|
|
|
background-color: #FCFCEB; /* Light background for feature items */
|
|
|
|
border: 1px solid #8B9635; /* Consistent border */
|
2024-10-07 10:50:18 +02:00
|
|
|
padding: 20px;
|
2024-10-09 13:02:48 +02:00
|
|
|
border-radius: 10px; /* Rounded corners */
|
2024-10-07 10:50:18 +02:00
|
|
|
margin: 10px;
|
|
|
|
text-align: center;
|
2024-10-09 13:02:48 +02:00
|
|
|
transition: transform 0.3s, box-shadow 0.3s; /* Hover effect */
|
2024-10-07 10:50:18 +02:00
|
|
|
}
|
|
|
|
|
2024-10-09 13:02:48 +02:00
|
|
|
.feature-item:hover {
|
|
|
|
transform: scale(1.05); /* Slight scaling on hover */
|
|
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Shadow effect */
|
2024-10-07 10:50:18 +02:00
|
|
|
}
|
|
|
|
|
2024-10-09 13:02:48 +02:00
|
|
|
.faq-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: flex-start;
|
|
|
|
padding: 0 10px;
|
2024-10-07 10:50:18 +02:00
|
|
|
}
|
|
|
|
|
2024-10-09 13:02:48 +02:00
|
|
|
#faq {
|
|
|
|
max-width: 800px;
|
|
|
|
width: 90%;
|
|
|
|
padding: 20px;
|
|
|
|
background-color: #FCFCEB; /* Light background for FAQ */
|
|
|
|
border-radius: 15px; /* Rounded corners */
|
|
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
|
|
|
|
margin: 2rem auto;
|
|
|
|
height: auto;
|
2024-10-07 10:50:18 +02:00
|
|
|
}
|
|
|
|
|
2024-10-09 13:02:48 +02:00
|
|
|
.faq-item {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
padding: 15px; /* Increased padding for better readability */
|
2024-10-07 10:50:18 +02:00
|
|
|
border-radius: 10px;
|
2024-10-09 13:02:48 +02:00
|
|
|
background-color: #f0f3da; /* Light background for FAQ items */
|
|
|
|
transition: background-color 0.3s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faq-item h3 {
|
|
|
|
color: #8B9635;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faq-item p {
|
|
|
|
color: #000000;
|
|
|
|
font-size: 1.1em;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faq-item:hover {
|
|
|
|
background-color: #d1e0b6; /* Lighter background on hover */
|
2024-10-07 10:50:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.download {
|
|
|
|
text-align: center;
|
2024-10-09 13:02:48 +02:00
|
|
|
padding-bottom: 1em;
|
2024-10-07 10:50:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.download-button {
|
2024-10-09 13:02:48 +02:00
|
|
|
background-color: #8B9635; /* Primary button color */
|
2024-10-07 10:50:18 +02:00
|
|
|
color: #FCFCEB;
|
|
|
|
padding: 15px 30px;
|
2024-10-09 13:02:48 +02:00
|
|
|
margin: 1em;
|
2024-10-07 10:50:18 +02:00
|
|
|
text-decoration: none;
|
|
|
|
border-radius: 5px;
|
|
|
|
font-size: 1.2rem;
|
2024-10-09 13:02:48 +02:00
|
|
|
transition: background-color 0.3s ease, transform 0.2s; /* Hover effects */
|
2024-10-07 10:50:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.download-button:hover {
|
2024-10-09 13:02:48 +02:00
|
|
|
background-color: #6E7629; /* Darker button color on hover */
|
|
|
|
transform: translateY(-2px); /* Lift effect */
|
2024-10-07 10:50:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
2024-10-09 13:02:48 +02:00
|
|
|
background-color: #474D22; /* Dark footer */
|
|
|
|
color: #FCFCEB; /* Light footer text */
|
2024-10-07 10:50:18 +02:00
|
|
|
padding: 20px;
|
|
|
|
text-align: center;
|
|
|
|
position: relative;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2024-10-09 13:02:48 +02:00
|
|
|
/* Responsive Styles */
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
.hero h1 {
|
|
|
|
font-size: 2.5rem;
|
|
|
|
}
|
2024-10-07 10:50:18 +02:00
|
|
|
|
2024-10-09 13:02:48 +02:00
|
|
|
.hero p {
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
2024-10-07 10:50:18 +02:00
|
|
|
|
2024-10-09 13:02:48 +02:00
|
|
|
.feature-list {
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2024-10-07 10:50:18 +02:00
|
|
|
|
2024-10-09 13:02:48 +02:00
|
|
|
.feature-item {
|
|
|
|
flex: 1 1 100%;
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
2024-10-07 10:50:18 +02:00
|
|
|
|
2024-10-09 13:02:48 +02:00
|
|
|
.faq-item h3 {
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
2024-10-07 10:50:18 +02:00
|
|
|
|
2024-10-09 13:02:48 +02:00
|
|
|
.faq-item p {
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.download-button {
|
|
|
|
font-size: 1rem;
|
|
|
|
padding: 10px 20px;
|
|
|
|
}
|
2024-10-07 10:50:18 +02:00
|
|
|
}
|
|
|
|
|
2024-10-09 13:02:48 +02:00
|
|
|
@media (max-width: 480px) {
|
|
|
|
.hero h1 {
|
|
|
|
font-size: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hero p {
|
|
|
|
font-size: 0.9rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faq-item h3 {
|
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.faq-item p {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2 {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.download-button {
|
|
|
|
padding: 10px 15px;
|
|
|
|
font-size: 0.9rem;
|
|
|
|
}
|
2024-10-07 10:50:18 +02:00
|
|
|
}
|