@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #31903F;
    --primary-dark: #216a2e;
    --primary-light: #4baf58;
    --secondary-color: #1a1a1a;
    --secondary-light: #333333;
    --text-color: #1a1a1a;
    --text-light: #555555;
    --background-color: #ffffff;
    --background-alt: #f4f9f5;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
    --header-height: 80px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --font-primary: 'Raleway', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1.2rem;
}

li {
    margin-bottom: 0.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.accent-line {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

.cta-button, .submit-button, .back-button {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover, .submit-button:hover, .back-button:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(49, 144, 63, 0.4);
}

.back-button {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
}

.back-button:hover {
    background-color: var(--primary-color);
    color: white;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    z-index: 1001;
}

.logo img {
    height: 60px;
    width: auto;
}

.main-nav {
    position: relative;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background-color: var(--secondary-color);
    height: 2px;
    width: 2rem;
    border-radius: 2px;
    position: relative;
    transition: var(--transition);
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 8px;
}

.nav-toggle-label span::after {
    top: 8px;
}

.nav-toggle:checked ~ .nav-toggle-label span {
    background-color: transparent;
}

.nav-toggle:checked ~ .nav-toggle-label span::before {
    transform: rotate(45deg);
    bottom: 0;
}

.nav-toggle:checked ~ .nav-toggle-label span::after {
    transform: rotate(-45deg);
    top: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 0 0.25rem;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 80%;
}

.contact-btn {
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    padding: 0.5rem 1.25rem;
    margin-left: 0.5rem;
    transition: var(--transition);
}

.contact-btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
}

.contact-btn::after {
    display: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--background-alt);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(49, 144, 63, 0.1) 0%, rgba(49, 144, 63, 0.05) 100%);
    z-index: 1;
}

.hero-content {
    width: 50%;
    max-width: 600px;
    padding: 3rem;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    line-height: 1.2;
    font-weight: 700;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about {
    padding: 5rem 0;
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.programs {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.program-image {
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.program-card p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.program-features {
    list-style-type: none;
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

.program-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.program-features li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.benefits {
    padding: 5rem 0;
    background-color: white;
}

.benefits-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.benefits-text {
    flex: 1.2;
}

.benefits-text > p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    background-color: rgba(49, 144, 63, 0.1);
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.benefit-content p {
    font-size: 1rem;
    color: var(--text-light);
}

.benefits-image {
    flex: 0.8;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.testimonials {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    position: relative;
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 5rem;
    color: rgba(49, 144, 63, 0.1);
    font-family: Georgia, serif;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact {
    padding: 5rem 0;
    background-color: white;
}

.contact-content {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    padding-right: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.email-info {
    font-weight: 500;
}

.contact-form-wrapper {
    flex: 1.5;
}

.contact-form {
    background-color: var(--background-alt);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(49, 144, 63, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.submit-button {
    width: 100%;
    margin-top: 1rem;
}

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
    justify-content: space-between;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    margin-bottom: 1rem;
}

.footer-logo p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.footer-links {
    flex: 2;
    display: flex;
    gap: 3rem;
    justify-content: flex-end;
}

.footer-nav,
.footer-policies {
    min-width: 150px;
}

.footer h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
}

.footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    opacity: 0.6;
    font-size: 0.875rem;
}

.thankyou-section {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
    margin-top: var(--header-height);
}

.thankyou-content {
    max-width: 600px;
    text-align: center;
    padding: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.thankyou-icon {
    margin-bottom: 2rem;
}

.thankyou-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thankyou-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.secondary-text {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.policy-section {
    padding: 5rem 0;
    margin-top: var(--header-height);
}

.policy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.policy-header h1 {
    margin-bottom: 0;
    color: var(--primary-color);
}

.policy-content {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.policy-toc {
    width: 280px;
    padding: 2rem;
    border-right: 1px solid var(--border-color);
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    align-self: flex-start;
    max-height: calc(100vh - var(--header-height) - 2rem);
    overflow-y: auto;
}

.policy-toc h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-toc ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.policy-toc li {
    margin-bottom: 0.75rem;
}

.policy-toc a {
    color: var(--text-color);
    transition: var(--transition);
    display: inline-block;
}

.policy-toc a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.policy-sections {
    display: flex;
    flex-wrap: wrap;
}

.policy-block {
    padding: 2.5rem;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.policy-block:last-child {
    border-bottom: none;
}

.policy-block h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.policy-block-content p:last-child {
    margin-bottom: 0;
}

.custom-list, .shield-list {
    list-style-type: none;
    padding: 0;
}

.custom-list li, .shield-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1.5rem;
}

.custom-list .list-heading {
    font-weight: 600;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.custom-list li::before, .shield-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background-color: var(--primary-light);
    border-radius: 50%;
}

.shield-list li::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>');
    background-color: var(--primary-color);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 70%;
    border-radius: 50%;
    width: 1.25rem;
    height: 1.25rem;
}

.usage-grid, .rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.usage-item, .right-item {
    background-color: var(--background-alt);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.usage-item:hover, .right-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.usage-icon {
    margin-bottom: 1rem;
}

.usage-item h3, .right-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.usage-item p, .right-item p {
    margin-bottom: 0;
    color: var(--text-light);
}

.sharing-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.sharing-item {
    background-color: var(--background-alt);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.sharing-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
}

.sharing-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sharing-item p {
    margin-bottom: 0;
}

.last-update {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

.contact-details {
    background-color: var(--background-alt);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.cookie-intro {
    display: flex;
    align-items: center;
    background-color: var(--background-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.cookie-graphic {
    margin-right: 2rem;
}

.cookie-headline {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0;
}

.cookies-table {
    margin: 2rem 0;
}

.cookie-category {
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    background-color: var(--background-alt);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-category-header h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.cookie-status {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background-color: var(--primary-light);
    color: white;
}

.cookie-category-content {
    padding: 1.5rem;
}

.cookie-examples {
    margin-top: 1.5rem;
    background-color: rgba(49, 144, 63, 0.05);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
}

.cookie-examples h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.cookie-examples ul {
    margin-bottom: 0;
}

.browser-instructions {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.browser-item {
    background-color: var(--background-alt);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.browser-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.browser-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.cookie-note {
    background-color: rgba(49, 144, 63, 0.1);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
}

.terms-intro {
    background-color: var(--background-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.terms-intro p:last-child {
    margin-bottom: 0;
}

.section-index {
    background-color: var(--background-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.section-index-header h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.section-index-list {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.section-index-list li {
    margin-bottom: 0.75rem;
}

.section-index-list a {
    color: var(--text-color);
    transition: var(--transition);
}

.section-index-list a:hover {
    color: var(--primary-color);
}

.terms-definitions {
    list-style-type: none;
    padding: 0;
}

.terms-definitions li {
    margin-bottom: 1.5rem;
}

.terms-definitions h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.terms-definitions p {
    margin-bottom: 0;
}

.terms-list {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.cancellation-policies {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.cancellation-policy {
    background-color: var(--background-alt);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.cancellation-policy h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cancellation-policy ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .about-content, 
    .benefits-wrapper {
        flex-direction: column;
    }
    
    .about-image,
    .benefits-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .policy-sections {
        flex-direction: column;
    }
    
    .policy-toc {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        position: static;
        padding: 1.5rem;
        max-height: none;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .nav-toggle-label {
        display: flex;
    }
    
    .nav-list {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: white;
        width: 100%;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-toggle:checked ~ .nav-list {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-list li {
        width: 100%;
        margin: 0;
    }
    
    .nav-link, 
    .contact-btn {
        width: 100%;
        padding: 1rem 2rem;
        border-radius: 0;
    }
    
    .contact-btn {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .hero {
        flex-direction: column;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 2rem 1rem 3rem;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 60vh;
    }
    
    .about, 
    .programs, 
    .benefits, 
    .testimonials, 
    .contact {
        padding: 3rem 0;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
        justify-content: flex-start;
    }
    
    .policy-content {
        padding: 0;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .benefits-list,
    .usage-grid,
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cookie-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-graphic {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .cookie-category-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}