.terms,
.cookie,
.return,
.disclaimer,
.refund,
.privacy {
  text-align: left;
  padding: 15rem 0;
}
/* Base Styles */
html {
    font-size: 10px;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
}

.highlight {
    color: #FFA500;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5rem;
    padding: 1.5rem 3rem;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #3e8e41;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2d2246;
    color: #fff;
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    padding: 2rem;
    max-width: 60rem;
    margin: 0 auto;
}

.cookie-content h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.cookie-content p {
    margin-bottom: 2rem;
}

/* Header */
.header {
    background-color: #fff;
    padding: 2rem 0;
}

.logo {
    color: #2d2246;
    font-size: 2rem;
    text-align: center;
    margin: 0;
}

/* Hero Section */
.hero {
  color: #fff;
  text-align: center;
  background-color: rgba(50, 28, 62, 1);
  padding: 4rem 0 0;
  text-align: center;
}

.hero img{
  margin-top: 3rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.hero-text {
    margin-bottom: 3rem;
}

.hero-image {
    margin-top: 3rem;
}

/* Signup Form */
.signup {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-family: 'Unbounded', sans-serif;
}

form {
    max-width: 50rem;
    margin: 0 auto;
}

form button {
    width: 100%;
    margin-top: 1rem;
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.benefit-item {
    flex: 1 1 100%;
    margin-bottom: 3rem;
}

.benefit-image {
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Card Sections (About, Technology, Partnership) */
.about, .technology, .partnership {
    padding: 4rem 0;
}

.about-card, .tech-card, .partnership-card {
    background-color: #f9f9f9;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

.card-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

/* News Section */
.news {
    padding: 4rem 0;
}

.news-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.news-item {
    flex: 1 1 100%;
    padding: 1.5rem 0;
    border-bottom: 1px solid #ddd;
}

.news-item h3 {
    font-size: 1.6rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #2d2246;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.footer-logo {
    color: #fff;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.copyright {
    font-size: 1.4rem;
    opacity: 0.8;
}

/* Thank You Page */
.thank-you {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
}

.thank-you-title {
    font-size: 3.2rem;
    margin-bottom: 3rem;
}

/* Media Queries */
@media (min-width: 576px) {
    .benefit-item {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .news-item {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
}

@media (min-width: 992px) {
    .benefit-item {
        flex: 0 0 calc(25% - 1.5rem);
    }
    
    .news-item {
        flex: 0 0 calc(25% - 1.5rem);
        border-bottom: none;
    }
    
    .hero {
        text-align: left;
    }
    
    .hero .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    
    .hero-title, .hero-text, .hero .btn-primary {
        width: 100%;
    }
    
    .hero-image {
        margin-top: 0;
        width: 48%;
    }
    
    .hero-content {
        width: 48%;
    }
}
.news-item img{
  margin: 0 0 2rem;
}