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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.4rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.primary-btn {
    background-color: #2760be;
    color: #fff;
}

.primary-btn:hover {
    background-color: #204d99;
}

/* Header */
.header {
    background-color: #fff;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2760be;
}

.main-nav ul {
    display: none; /* Hide on mobile, show on tablet/desktop */
}

@media (min-width: 768px) {
    .main-nav ul {
        display: flex;
    }

    .main-nav ul li {
        margin-left: 2rem;
    }

    .main-nav ul li a {
        font-size: 1.6rem;
        font-weight: 500;
    }
}

/* Hero Section */
.hero {
  background: url('./img/main.jpg') center/cover no-repeat;
    background-color: #0d1a30;
    color: #fff;
    padding: 5rem 0;
}

.hero-content {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

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

@media (min-width: 768px) {
    .hero {
        padding: 8rem 0;
    }

    .hero h1 {
        font-size: 4rem;
    }
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-img, .about-text {
    width: 100%;
}

.about-text {
    padding: 2rem 0;
}

.about-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        align-items: center;
    }

    .about-img, .about-text {
        width: 50%;
    }

    .about-text {
        padding: 0 0 0 4rem;
    }

    .about-text h2 {
        font-size: 3rem;
    }
}

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.services-section h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.services-section > p {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 4rem auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 100%;
    background-color: #f1f5fd;
    padding: 2rem;
    border-radius: 0.4rem;
}

.service-card h3 {
    color: #2760be;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media (min-width: 992px) {
    .service-card {
        flex: 1 1 calc(25% - 2rem);
    }
}

/* Impact Section */
.impact-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.impact-content {
    display: flex;
    flex-direction: column;
}

.impact-img, .impact-text {
    width: 100%;
}

.impact-text {
    padding: 2rem 0;
}

.impact-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .impact-content {
        flex-direction: row;
        align-items: center;
    }

    .impact-img, .impact-text {
        width: 50%;
    }

    .impact-text {
        padding: 0 0 0 4rem;
    }

    .impact-text h2 {
        font-size: 3rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-card {
    flex: 1 1 100%;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.4rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card h4 {
    text-align: right;
    color: #2760be;
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 1 1 calc(33.333% - 2rem);
    }
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

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

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.blog-card {
    flex: 1 1 100%;
    background-color: #fff;
    border-radius: 0.4rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.blog-card h3 {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    font-size: 1.8rem;
}

.blog-card p {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.read-more {
    display: inline-block;
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #2760be;
    font-weight: 500;
}

@media (min-width: 768px) {
    .blog-card {
        flex: 1 1 calc(33.333% - 2rem);
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

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

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

input, textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 0.4rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
}

textarea {
    min-height: 15rem;
    resize: vertical;
}

form button {
    width: 100%;
}

/* Footer */
.footer {
    background-color: #f9f9f9;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}

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

.footer-logo a {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2760be;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    margin-bottom: 1rem;
    color: #555;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom p {
    margin-bottom: 2rem;
    color: #777;
}

.social-icons {
    display: flex;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin: 0 0.5rem;
    border-radius: 50%;
    background-color: #2760be;
    color: #fff;
    font-weight: 700;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-logo {
        margin-bottom: 0;
    }

    .footer-links {
        flex-direction: row;
    }

    .footer-links a {
        margin: 0 0 0 2rem;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-bottom p {
        margin-bottom: 0;
    }
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}

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

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

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cookie-btn {
    background-color: #2760be;
    color: #fff;
    min-width: 12rem;
}

.cookie-btn:hover {
    background-color: #204d99;
}

/* Success Page */
.success-section {
    padding: 10rem 0;
    text-align: center;
}

.success-content h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .success-content h1 {
        font-size: 4rem;
    }
}