Welcome to Our Green World supplements online store. We deliver international too via DHL International couriers
Buy and get discounts on future orders with our Loyalty program
/* Basic Reset & Font Imports */
body {
font-family: 'Open Sans', sans-serif;
margin: 0;
padding: 0;
background-color: #f7f9fc;
color: #333;
line-height: 1.6;
}
h1, h2, h3 {
font-family: 'Montserrat', sans-serif;
color: #2c3e50;
margin-bottom: 0.5em;
}
h1 { font-size: 2.8em; text-align: center; color: #1e8449; margin-top: 40px;}
h2 { font-size: 2em; color: #27ae60; border-bottom: 2px solid #e0e0e0; padding-bottom: 10px; margin-top: 30px;}
h3 { font-size: 1.5em; color: #34495e;}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 20px;
background-color: #ffffff;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
border-radius: 8px;
margin-bottom: 40px;
}
.hero-section {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 30px;
padding: 40px 0;
text-align: center;
}
.hero-content {
flex: 2;
min-width: 300px;
text-align: left;
}
.cta-button {
display: inline-block;
background-color: #28a745; /* Green for health */
color: white;
padding: 15px 30px;
border-radius: 50px;
text-decoration: none;
font-weight: bold;
font-size: 1.2em;
margin-top: 25px;
transition: background-color 0.3s ease, transform 0.2s ease;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.cta-button:hover {
background-color: #218838;
transform: translateY(-2px);
}
ul {
list-style: none; /* Remove default bullet points */
padding: 0;
}
ul li {
position: relative;
padding-left: 30px; /* Space for custom bullet */
margin-bottom: 10px;
font-size: 1.1em;
}
ul li::before {
content: '✓'; /* Custom checkmark bullet */
color: #28a745;
position: absolute;
left: 0;
font-weight: bold;
font-size: 1.2em;
}
.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-top: 30px;
}
.benefit-card {
background-color: #ecf0f1;
padding: 25px;
border-radius: 8px;
text-align: center;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
transition: transform 0.2s ease;
}
.benefit-card:hover {
transform: translateY(-5px);
}
.benefit-card h3 {
color: #28a745;
margin-top: 0;
}
.how-it-works-section {
background-color: #e8f5e9; /* Lighter green background */
padding: 30px;
border-radius: 8px;
margin-top: 40px;
}
.how-it-works-section p {
font-size: 1.1em;
}
.features-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
margin-top: 20px;
}
.feature-item {
background-color: #f0fdf4; /* Even lighter green */
padding: 15px;
border-radius: 5px;
box-shadow: 0 1px 5px rgba(0,0,0,0.05);
font-weight: 600;
color: #388e3c;
text-align: center;
}
.recommended-for-section {
background-color: #fdf6e7; /* Light yellow for contrast */
padding: 30px;
border-radius: 8px;
margin-top: 40px;
}
.recommended-for-section ul li::before {
content: '→'; /* Different bullet for this section */
color: #e67e22; /* Orange for emphasis */
}
.text-center {
text-align: center;
}
/* Testimonials Section Styles */
.testimonials-section {
background-color: #e0f2f7; /* Light blue/grey for testimonials */
padding: 40px 20px;
margin-top: 50px;
border-radius: 8px;
text-align: center;
}
.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
margin-top: 30px;
}
.testimonial-card {
background-color: #ffffff;
padding: 25px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
text-align: left;
font-style: italic;
position: relative;
}
.testimonial-card::before {
content: '“';
font-size: 3em;
color: #a7d9b9;
position: absolute;
top: 10px;
left: 15px;
line-height: 1;
}
.testimonial-card p {
font-size: 1.05em;
margin-top: 15px; /* Adjust for quote mark */
margin-bottom: 15px;
}
.testimonial-author {
font-weight: bold;
color: #2c3e50;
text-align: right;
display: block;
margin-top: 10px;
}
/* FAQ Section Styles - Adjusted for no JavaScript */
.faq-section {
padding: 40px 20px;
margin-top: 50px;
background-color: #f0f7f0; /* Light green/grey for FAQ */
border-radius: 8px;
}
.faq-item {
background-color: #ffffff;
border: 1px solid #e0e0e0;
border-radius: 5px;
margin-bottom: 15px;
padding: 15px 20px;
}
.faq-question {
font-weight: bold;
color: #34495e;
font-size: 1.1em;
margin-bottom: 10px; /* Add space below question */
}
.faq-answer {
margin-top: 0; /* Remove top margin as content is now always visible */
color: #555;
display: block; /* Ensure it's always visible */
}
footer {
text-align: center;
padding: 30px;
margin-top: 50px;
background-color: #34495e;
color: white;
font-size: 0.9em;
border-top: 5px solid #28a745;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
.hero-section {
flex-direction: column;
text-align: center;
}
.hero-content {
text-align: center;
}
h1 { font-size: 2.2em; }
h2 { font-size: 1.6em; }
.container {
padding: 15px;
}
.testimonial-grid, .features-list {
grid-template-columns: 1fr; /* Stack columns on small screens */
}
}
This innovative bottle uses **tourmaline to create alkaline, mineral-rich water.** Say goodbye to acidic woes and hello to boosted immunity, increased energy, better digestion, and even detoxification.
Are you ready to **transform your health and well-being**? The Green World Tourmaline Flask is a powerful way to do just that. Experience the difference of energized, revitalized water every day.
Alkaline water helps neutralize acidity in your body, improving overall health and well-being.
Strengthen your immune system, making you less susceptible to illness and keeping you vital.
Feel more refreshed and revitalized as alkaline water helps to naturally boost your energy.
Effectively remove harmful toxins, supporting your body's natural cleansing processes.
Contribute to better gut health and smoother digestion with every sip.
Naturally deposit over 20 essential minerals into your drinking water for enhanced nutrition.
The Green World Tourmaline Flask uses a special **tourmaline filter to alkalize and energize your water.** The tourmaline emits negative ions, which efficiently break down water clusters, making the water more alkaline and bioavailable. This process also releases beneficial minerals, improving both taste and health benefits.
The Green World Tourmaline Flask is ideal for:
---
"I've struggled with low energy for years, but since using the Tourmaline Flask, I feel a noticeable difference! My water tastes better, and I feel more vibrant throughout the day. Highly recommend!"
- Jane D., Nairobi
"As someone who travels a lot, this flask is a lifesaver. It's so easy to use, and I love knowing I'm getting alkaline water no matter where I am. My digestion has definitely improved."
- David O., Mombasa
"I was skeptical at first, but the claims are true! I used to have frequent acid reflux, and after a few weeks with the Green World Flask, it's significantly reduced. This product truly works!"
- Amina R., Kisumu
---
How often should I replace the tourmaline filter?
We recommend replacing the filter every **3-6 months**, depending on your usage frequency and the quality of your source water. This ensures optimal performance and mineral release.
Can I put other liquids besides water in the flask?
The Green World Tourmaline Flask is specifically designed to alkalize and energize water. We do not recommend using it with other liquids like juices, sodas, or hot beverages, as this could damage the filter and reduce its effectiveness.
How do I clean my Tourmaline Flask?
The stainless steel body can be cleaned with warm soapy water. For the filter, gently rinse it under running water. Avoid using harsh detergents or abrasive scrubbers, which could damage the tourmaline.
Is the alkaline water safe for everyone?
Alkaline water is generally considered safe for most healthy individuals. However, if you have specific medical conditions or are on medication, it's always advisable to **consult your healthcare professional** before making significant changes to your diet or hydration routine.
What makes tourmaline special for water?
Tourmaline is a crystalline boron silicate mineral that naturally generates negative ions and far-infrared rays. When in contact with water, these properties help to break down water clusters, increase pH levels, and release beneficial trace minerals, making the water more easily absorbed by your body.
Start your journey to better hydration and vitality today!
Welcome to Our Green World supplements online store. We deliver international too via DHL International couriers
Buy and get discounts on future orders with our Loyalty program