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

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

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

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

ul {
    list-style: none;
}

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

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1c473e;
    color: white;
    z-index: 1000;
    display: none;
}

.cookie-content {
    padding: 2rem;
    text-align: center;
}

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

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 3rem;
    border-radius: 3rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.6rem;
}

.btn-primary {
    background-color: #1c473e;
    color: white;
}

.btn-secondary {
    background-color: white;
    color: #1c473e;
}

.btn:hover {
    opacity: 0.9;
}

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

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

.logo {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1c473e;
}

.nav ul {
    display: flex;
    gap: 2rem;
}

.nav a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #1c473e;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('./img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

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

.hero p {
    max-width: 80rem;
    margin: 0 auto 3rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: white;
}

.services-intro {
    margin-bottom: 4rem;
}

.services h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #1c473e;
}

.services-intro p {
    margin-bottom: 2rem;
}

.podcast-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.podcast-category {
    flex: 1 1 calc(50% - 2rem);
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 0.5rem;
    min-width: 25rem;
}

.podcast-category h3 {
    color: #1c473e;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.benefits {
    margin-top: 4rem;
    text-align: center;
    font-weight: 500;
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: 0.5rem;
}

/* Packages Section */
.packages {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.packages-intro {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 4rem;
}

.packages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.package {
    flex: 1 1 calc(50% - 3rem);
    background-color: white;
    padding: 3rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.1);
    min-width: 30rem;
}

.package h3 {
    color: #1c473e;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.price {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.package ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.package li {
    margin-bottom: 1rem;
}

/* Corporate Education */
.corporate-education {
    padding: 6rem 0;
    background-color: white;
}

.corporate-education .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.corporate-content {
    flex: 1 1 60%;
}

.corporate-content h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #1c473e;
}

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

.corporate-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.corporate-content li {
    margin-bottom: 1rem;
}

.corporate-image {
    flex: 1 1 35%;
    min-width: 30rem;
}

/* Contact Form */
.contact {
    padding: 6rem 0;
    background-color: #f9f9f9;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.4rem;
    color: #1c473e;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 0.1rem solid #ddd;
    border-radius: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
}

.form-group button {
    width: 100%;
}

/* Success Message */
.success-message {
    padding: 8rem 0;
    text-align: center;
    background-color: #f9f9f9;
}

.success-message h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1c473e;
}

.success-message p {
    max-width: 80rem;
    margin: 0 auto 3rem;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.footer-links a {
    color: #666;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1c473e;
}

/* Media Queries */
@media (max-width: 768px) {
    html {
        font-size: 9px;
    }

    .header .container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav ul {
        gap: 1.5rem;
    }

    .podcast-category {
        flex: 1 1 100%;
    }

    .package {
        flex: 1 1 100%;
    }

    .corporate-education .container {
        flex-direction: column;
    }

    .corporate-content {
        flex: 1 1 100%;
    }

    .corporate-image {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 8px;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
}