body {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}
.container {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
    color: #0073e6;
}
h2 {
    background-color: #e1e1e1;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #f5f5f5;
  padding: 15px;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: block;
  box-sizing: border-box;
}

.cookie-link {
  color: #007BFF;
  text-decoration: underline;
}

.cookie-button {
  margin-left: 15px;
  padding: 7px 14px;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.cookie-close {
  position: absolute;
  top: 5px;
  right: 10px;
  background: transparent;
  border: none;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 4px;
}


.keywords {
    display: none;
}

.cta-button {
    display: block;
    /* width: 100%; */
    text-align: center;
    background-color: #0073e6;
    /* background-color: #FF4500; */
    color: white;
    padding: 15px;
    margin: 50px auto;
    border-radius: 5px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    width: 80%;
    transition: transform 0.3s ease;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
}
.cta-button:hover {
    background-color: #005bb5;
    /* background-color: #FF4500; */
    transform: scale(1.1);
}

.subtitle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 5px;
}
.cta-subtitle {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.who-is-for .cta-button{
    display: none;
}

.image-around-container {
    display: block;
}

.image-around-container img {
    float: left;
    margin-right: 15px;
}

.what-is .image-around-container img {
    max-width: 300px;
    width: 80%;
    /* object-fit: contain; */
}

.pros-cons {
    display: flex;
    justify-content: space-between;
}

.pros, .cons {
    /* width: 48%; */
    padding: 10px;
    flex: 1;
}
.pros {
    background-color: #e6f7ff;
    border-left: 5px solid #0073e6;
}
.cons {
    background-color: #ffe6e6;
    border-left: 5px solid #e60000;
}
.reviews {
    font-style: italic;
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 5px;
}

.back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0073e6;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.back-to-top:hover {
    background-color: #005bb5;
}

.banner-img {
    display: block;
    width: 90%;
    height: auto;
    margin: 0 auto;
    transition: transform 0.3s ease;
    /* border-radius: 10px;
    margin-bottom: 20px; */
}

.banner-img:hover {
    transform: scale(1.1);
}

.footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    font-size: 14px;
    color: #666;
    background-color: #f1f1f1;
}

@media (max-width: 600px) {
    .who-is-for .cta-button {
        display: block;
    }

    .pros-cons {
        flex-direction: column;
    }
    .pros, .cons {
        margin-bottom: 10px;
    }

    .image-around-container img {
        display: block;
        float: none;
        margin: 0 auto;   
        max-width: 100%;
    }

    .banner-img {
        width: 100%;
    }

    .banner-img:hover {
        transform: none;
    }

    .footer {
        font-size: 12px;
    }
}
