@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #f9f9f9;
	line-height: 26px;
	font-size: 18px;
}
.c-container {
	max-width: 910px;
	margin: 0 auto;
}
.container h4 {
	margin-bottom: 20px;
}
/* Header Wrapper */
.site-header {
  width: 100%;
  background-color: #ffffff;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  /* Perfect centering mechanism */
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Logo Container */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px; /* Space between icon and text */
  cursor: pointer;
}
/* CSS Maple Leaf Icon */
.logo-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.leaf-stem {
  width: 4px;
  height: 14px;
  background-color: #c0392b; /* Deep Maple Red */
  border-radius: 2px;
}
.leaf-blade {
  position: absolute;
  background-color: #e74c3c; /* Vibrant Red */
  border-radius: 20px 0 20px 0;
}
.leaf-blade.center {
  width: 16px;
  height: 24px;
  bottom: 10px;
  transform: rotate(-45deg); /* Forms the sharp top point */
}
.leaf-blade.left {
  width: 12px;
  height: 18px;
  bottom: 12px;
  left: 4px;
  transform: rotate(-15deg);
  opacity: 0.9;
}
.leaf-blade.right {
  width: 12px;
  height: 18px;
  bottom: 12px;
  right: 4px;
  transform: rotate(-75deg);
  opacity: 0.9;
}
/* Logo Typography */
.logo-text {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2c3e50; /* Deep Slate Blue/Grey */
}
.logo-text .logo-text-light {
  font-weight: 300;
  color: #7f8c8d; /* Muted grey for "life cover" contrast */
  margin-left: 6px;
}
/* Subtle hover effect */
.logo-container:hover .leaf-blade {
  background-color: #c0392b;
  transition: background-color 0.3s ease;
}
.hero-section {
  font-family: "Roboto Slab", serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* The Secret Sauce: Linear gradient overlay + background image */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('header.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 7% 5%;
}
/* Styling for the white text on top */
.content {
  color: #ffffff;
  padding: 0 20px;
}
.content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Extra pop for readability */
  display: block;
  max-width: 910px;
}
.content p {
  font-size: 1.2rem;
  opacity: 0.9; /* Slightly softer white for the body text */
}
.quote-block {
	background-color: #EFEFEF;
    padding: 40px;
    border-radius: 8px 8px 8px 8px;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 50px;
	margin-top: 45px;
}
.cta-section {
    display: flex;
	margin-top: 30px;
    gap: 20px;
}
.blue-cta {
    color: #FFFFFF;
    background-color: transparent;
	background-image: linear-gradient(180deg, #0098FF 0%, #0013FF 100%);
    text-align: center;
    display: block;
    padding: 15px;
    text-decoration: none;
    font-size: 32px;
    width: 100%;
    border-radius: 8px;
	font-weight: bold;
	transition: all 0.5s;
}
.blue-cta:hover {
	filter: brightness(0.8); /* darkens smoothly */
}
.cta-green {
    color: #FFFFFF;
    background-color: #00A310;
    text-align: center;
    display: block;
    padding: 15px;
    text-decoration: none;
    font-size: 32px;
    width: 100%;
    border-radius: 8px;
	font-weight: bold;
	max-width: 450px;
	margin: 20px auto;
	transition: all 0.5s;
}
.cta-green:hover {
	background-color: #089016;
}
.footer {
	background-color: #ebebeb;
	padding: 40px 20px;
	margin-top: 80px;
}
.footer p {
	font-size: 13px;
	text-align: center;
	line-height: normal;
}
.footer-links {
    display: flex;
    font-size: 13px;
    justify-content: center;
    gap: 20px;
}
@media screen and (max-width:768px) {
  .content h1 {
    font-size: 28px;
  }
	.quote-block {
    background-color: #EFEFEF;
    padding: 25px;
    border-radius: 8px 8px 8px 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 50px;
    margin-top: 45px;
}
	.cta-section {
    display: flex;
    margin-top: 30px;
    gap: 20px;
    flex-direction: column;
}
	.cta-green {
    color: #FFFFFF;
    background-color: #00A310;
    text-align: center;
    display: block;
    padding: 15px;
    text-decoration: none;
    font-size: 26px;
    width: 100%;
    border-radius: 8px;
    font-weight: bold;
    max-width: 450px;
    margin: 20px auto;
}
}