/* Base Styles
---------------------------------------------- */
:root {
    --primary-color: #5D8B91; /* Verde azulado papelcrafts */
    --secondary-color: #E8C07D; /* Amarillo arena papel */
    --accent-color: #D66853; /* Coral rojizo */
    --neutral-light: #F5F1E8; /* Crema papel */
    --neutral-dark: #2D4047; /* Azul grisáceo oscuro */
    --background-color: #FFFFFF; /* Blanco */
    --text-color: #333333; /* Gris oscuro */
    --shadow-soft: 0 3px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.15);
    --shadow-hard: 0 8px 30px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --fold-size: 20px;
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.uk-container {
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--neutral-dark);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.uk-button {
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
    text-transform: none;
    font-size: 16px;
    padding: 10px 24px;
}

.uk-button-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.uk-button-primary:hover {
    background-color: #4B7A80;
    color: white;
}

.uk-button-secondary {
    background-color: var(--secondary-color);
    color: var(--neutral-dark);
    border: none;
}

.uk-button-secondary:hover {
    background-color: #D6B06D;
    color: var(--neutral-dark);
}

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

/* Folded Paper Effects
---------------------------------------------- */
.folded-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.folded-button::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: var(--fold-size);
    height: var(--fold-size);
    background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.2) 50%);
    z-index: -1;
    transition: all var(--transition-speed) ease;
}

.folded-button:hover::before {
    width: calc(var(--fold-size) * 1.5);
    height: calc(var(--fold-size) * 1.5);
}

.paper-craft-hero {
    position: relative;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.paper-image-frame {
    position: relative;
    background-color: var(--neutral-light);
    padding: 10px;
    box-shadow: var(--shadow-medium);
    transform: rotate(-2deg);
    transition: transform var(--transition-speed) ease;
}

.paper-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: var(--fold-size);
    height: var(--fold-size);
    background: linear-gradient(135deg, transparent 50%, rgba(0,0,0,0.1) 50%);
    z-index: 1;
}

.paper-image-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.paper-map-frame {
    position: relative;
    background-color: var(--neutral-light);
    padding: 10px;
    box-shadow: var(--shadow-medium);
    transform: rotate(1deg);
    transition: transform var(--transition-speed) ease;
    border: 1px solid rgba(0,0,0,0.1);
    height: 100%;
}

.paper-map-frame iframe {
    width: 100%;
    height: calc(100% - 20px);
}

.paper-map-frame::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: var(--fold-size);
    height: var(--fold-size);
    background: linear-gradient(135deg, transparent 50%, rgba(0,0,0,0.1) 50%);
    z-index: 1;
}

.paper-map-frame:hover {
    transform: rotate(0deg) scale(1.01);
}

.paper-form-container {
    background-color: var(--neutral-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    padding: 30px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.paper-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, transparent 50%, var(--secondary-color) 50%);
    z-index: 1;
}

.folded-paper-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.folded-paper {
    position: relative;
    background-color: var(--neutral-light);
    box-shadow: var(--shadow-medium);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.folded-paper:nth-child(odd) {
    transform: rotate(-1deg);
}

.folded-paper:nth-child(even) {
    transform: rotate(1deg);
}

.folded-paper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, transparent 50%, rgba(0,0,0,0.1) 50%);
    z-index: 1;
}

.folded-paper:hover {
    transform: rotate(0) scale(1.03);
    box-shadow: var(--shadow-hard);
}

.paper-content {
    padding: 20px;
}

.paper-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Header Styles
---------------------------------------------- */
.site-header {
    padding: 15px 0;
    background-color: var(--background-color);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 10;
}

.uk-navbar-container:not(.uk-navbar-transparent) {
    background: transparent;
}

.uk-navbar-nav > li > a {
    font-weight: 500;
    color: var(--neutral-dark);
    text-transform: none;
    font-size: 16px;
    transition: color var(--transition-speed) ease;
}

.uk-navbar-nav > li > a:hover,
.uk-navbar-nav > li.uk-active > a {
    color: var(--primary-color);
}

.uk-navbar-toggle {
    color: var(--neutral-dark);
}

.uk-navbar-toggle:hover {
    color: var(--primary-color);
}

.uk-offcanvas-bar {
    background-color: var(--neutral-light);
}

.uk-offcanvas-bar .uk-nav-default > li > a {
    color: var(--neutral-dark);
}

.uk-offcanvas-bar .uk-nav-default > li.uk-active > a,
.uk-offcanvas-bar .uk-nav-default > li > a:hover {
    color: var(--primary-color);
}

.uk-offcanvas-close {
    color: var(--neutral-dark);
}

/* Hero Section
---------------------------------------------- */
.hero-section {
    padding: 80px 0;
    position: relative;
    background-color: var(--neutral-light);
    overflow: hidden;
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: center;
    margin: 0 auto 40px;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--neutral-dark);
}

.typed-text {
    font-size: 24px;
    color: var(--accent-color);
    font-weight: 500;
    display: block;
    margin-bottom: 20px;
    min-height: 36px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.hero-image-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    z-index: 2;
}

.hero-image {
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-speed) ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

/* Importance Section
---------------------------------------------- */
.importance-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.section-title-container {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title {
    font-size: 32px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.title-decoration {
    height: 8px;
    width: 100px;
    background-color: var(--secondary-color);
    margin: -15px auto 0;
    position: relative;
    z-index: 0;
}

.circular-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    position: relative;
}

.circular-item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.circular-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
}

.circular-item:nth-child(2) {
    grid-column: 4 / 6;
    grid-row: 1;
}

.circular-item:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 2;
}

.circular-item:nth-child(4) {
    grid-column: 4 / 6;
    grid-row: 2;
}

.central-item {
    grid-column: 2 / 5;
    grid-row: 1 / 3;
    z-index: 2;
}

.circular-content {
    background-color: var(--neutral-light);
    border-radius: 50%;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.circular-content:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hard);
}

.circular-icon {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.circular-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.circular-content p {
    font-size: 14px;
    margin: 0;
}

.central-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.central-image {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-hard);
    transition: transform var(--transition-speed) ease;
}

.central-image:hover {
    transform: scale(1.02);
}

/* Benefits Section
---------------------------------------------- */
.benefits-section {
    padding: 80px 0;
    background-color: var(--neutral-light);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--background-color);
    clip-path: ellipse(60% 100% at 50% 0%);
}

.benefits-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--background-color);
    clip-path: ellipse(60% 100% at 50% 100%);
}

/* Components Section
---------------------------------------------- */
.components-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.accordion-container {
    max-width: 900px;
    margin: 0 auto;
}

.uk-accordion-title {
    background-color: var(--neutral-light);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-dark);
    transition: background-color var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.uk-accordion-title::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, transparent 50%, var(--secondary-color) 50%);
    z-index: 1;
}

.uk-accordion-title:hover {
    background-color: #ECE8DF;
}

.uk-accordion-content {
    padding: 20px;
}

.accordion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.accordion-text {
    padding-right: 20px;
}

.accordion-image-container {
    position: relative;
}

.accordion-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-speed) ease;
}

.accordion-image:hover {
    transform: scale(1.03);
}

/* Contact Form Section
---------------------------------------------- */
.contact-form-section {
    padding: 40px 0 80px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.uk-form-label {
    font-weight: 500;
    color: var(--neutral-dark);
}

.uk-input,
.uk-textarea {
    border-radius: var(--border-radius);
    border: 1px solid #ddd;
    transition: border-color var(--transition-speed) ease;
}

.uk-input:focus,
.uk-textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px rgba(93, 139, 145, 0.2);
}

.submit-button {
    position: relative;
    padding: 12px 30px;
    font-weight: 600;
}

.iti {
    width: 100%;
}

/* Footer
---------------------------------------------- */
.site-footer {
    background-color: var(--neutral-dark);
    color: var(--neutral-light);
    padding: 60px 0 30px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='wavyPattern' patternUnits='userSpaceOnUse' width='40' height='20' patternTransform='scale(2)'%3E%3Cpath d='M0 10 Q10 20 20 10 Q30 0 40 10' stroke='none' fill='%232D4047'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23wavyPattern)'/%3E%3C/svg%3E");
    background-size: 80px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo p {
    margin-top: 10px;
    color: var(--neutral-light);
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    color: var(--neutral-light);
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-legal ul li a {
    color: var(--neutral-light);
    transition: color var(--transition-speed) ease;
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
    color: var(--secondary-color);
}

.footer-contact address {
    font-style: normal;
}

.footer-contact address p {
    margin-bottom: 10px;
}

.footer-contact address p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 14px;
}

.disclaimer {
    font-size: 12px;
    opacity: 0.8;
}

/* Page Title
---------------------------------------------- */
.page-title-section {
    padding: 60px 0;
    background-color: var(--neutral-light);
    text-align: center;
}

.title-container {
    max-width: 800px;
    margin: 0 auto;
}

.title-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.title-container p {
    font-size: 18px;
    color: var(--text-color);
}

/* Steps Section (Educacion page)
---------------------------------------------- */
.intro-section {
    padding: 40px 0;
}

.paper-intro {
    background-color: var(--neutral-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.paper-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, transparent 50%, var(--accent-color) 50%);
    z-index: 1;
}

.steps-section {
    padding: 40px 0 80px;
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.step-item::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 100px;
    height: calc(100% - 40px);
    width: 2px;
    background-color: var(--secondary-color);
    z-index: 0;
}

.step-item:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: 700;
    margin-right: 30px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: var(--shadow-medium);
}

.step-content {
    flex-grow: 1;
    background-color: var(--neutral-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, transparent 50%, var(--secondary-color) 50%);
    z-index: 1;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--neutral-dark);
}

.step-grid {
    display: flex;
    flex-direction: column;
}

.step-description {
    flex-grow: 1;
}

.step-description h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-description ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.step-tip {
    background-color: rgba(93, 139, 145, 0.1);
    padding: 15px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    font-size: 14px;
    margin-top: 20px;
}

/* CTA Section
---------------------------------------------- */
.cta-section {
    padding: 80px 0;
    background-color: var(--neutral-light);
    position: relative;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, transparent 50%, var(--secondary-color) 50%);
    z-index: 1;
}

.cta-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Philosophy Section (Enfoque page)
---------------------------------------------- */
.philosophy-section {
    padding: 40px 0;
}

.philosophy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.philosophy-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.philosophy-principles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.principle {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.principle-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.principle-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.principle-text p {
    font-size: 14px;
    margin: 0;
}

/* Methodology Section
---------------------------------------------- */
.methodology-section {
    padding: 80px 0;
    background-color: var(--neutral-light);
}

.methodology-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.methodology-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.methodology-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, transparent 50%, var(--accent-color) 50%);
    z-index: 1;
}

.methodology-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hard);
}

.card-number {
    font-size: 50px;
    font-weight: 700;
    color: rgba(93, 139, 145, 0.2);
    position: absolute;
    top: 10px;
    right: 20px;
}

.methodology-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.methodology-card p {
    margin-bottom: 20px;
}

.methodology-card ul {
    padding-left: 20px;
}

.methodology-card ul li {
    margin-bottom: 8px;
}

/* Resources Section
---------------------------------------------- */
.resources-section {
    padding: 80px 0;
}

.resources-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.resource-item {
    display: flex;
    background-color: var(--neutral-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.resource-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hard);
}

.resource-icon {
    width: 80px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    flex-shrink: 0;
}

.resource-content {
    padding: 20px;
    flex-grow: 1;
}

.resource-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.resource-content p {
    font-size: 14px;
    margin-bottom: 15px;
}

.resource-content ul {
    padding-left: 20px;
    font-size: 14px;
}

.resource-content ul li {
    margin-bottom: 5px;
}

/* Articles Section
---------------------------------------------- */
.articles-section {
    padding: 80px 0;
    background-color: var(--neutral-light);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.article-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    position: relative;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, transparent 50%, var(--secondary-color) 50%);
    z-index: 1;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hard);
}

.article-content {
    padding: 20px;
}

.article-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.article-date {
    font-size: 12px;
    color: #777;
    margin-bottom: 15px;
}

.article-excerpt {
    font-size: 14px;
    margin-bottom: 20px;
}

.article-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.topic {
    background-color: var(--neutral-light);
    color: var(--neutral-dark);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 30px;
}

/* FAQ Section
---------------------------------------------- */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Info Section
---------------------------------------------- */
.contact-info-section {
    padding: 40px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-card {
    background-color: var(--neutral-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-medium);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, transparent 50%, var(--secondary-color) 50%);
    z-index: 1;
}

.contact-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-text p {
    margin: 0;
}

.contact-message {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* Policy Section
---------------------------------------------- */
.policy-section {
    padding: 40px 0 80px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-introduction {
    margin-bottom: 40px;
}

.policy-item {
    margin-bottom: 40px;
}

.policy-item h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.policy-item h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-item p,
.policy-item ul,
.policy-item ol {
    margin-bottom: 15px;
}

.policy-item ul,
.policy-item ol {
    padding-left: 20px;
}

.policy-item li {
    margin-bottom: 8px;
}

.cookie-table-container {
    overflow-x: auto;
    margin: 20px 0;
}

/* Thanks Section
---------------------------------------------- */
.thanks-section {
    padding: 80px 0;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--neutral-light);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.thanks-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, transparent 50%, var(--accent-color) 50%);
    z-index: 1;
}

.thanks-icon {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-container h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 10px;
}

.response-time {
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 40px;
}

.next-steps {
    margin-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 30px;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 30px;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.next-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.next-step-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.next-step-item p {
    font-size: 14px;
    margin-bottom: 15px;
}

/* Cookie Consent
---------------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--neutral-light);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

.cookie-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #4B7A80;
}

.cookie-btn.customize {
    background-color: transparent;
    color: var(--neutral-dark);
    border: 1px solid var(--neutral-dark);
}

.cookie-btn.customize:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.cookie-btn.reject {
    background-color: #f1f1f1;
    color: #666;
}

.cookie-btn.reject:hover {
    background-color: #e1e1e1;
}

.cookie-btn.save {
    background-color: var(--primary-color);
    color: white;
    width: 100%;
    max-width: 200px;
    margin: 20px auto 0;
    display: block;
}

.cookie-btn.save:hover {
    background-color: #4B7A80;
}

.cookie-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.cookie-modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 500px;
    position: relative;
}

.cookie-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-header h4 {
    margin: 0;
    font-size: 16px;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Responsive Styles
---------------------------------------------- */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .typed-text {
        font-size: 22px;
    }
    
    .circular-content h3 {
        font-size: 16px;
    }
    
    .circular-content p {
        font-size: 12px;
    }
}

@media (max-width: 960px) {
    .philosophy-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .philosophy-image {
        order: -1;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content {
        margin-bottom: 30px;
    }
    
    .circular-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .circular-item:nth-child(1),
    .circular-item:nth-child(2),
    .circular-item:nth-child(3),
    .circular-item:nth-child(4),
    .central-item {
        grid-column: 1;
    }
    
    .circular-item:nth-child(1) {
        grid-row: 1;
    }
    
    .circular-item:nth-child(2) {
        grid-row: 2;
    }
    
    .central-item {
        grid-row: 3;
    }
    
    .circular-item:nth-child(3) {
        grid-row: 4;
    }
    
    .circular-item:nth-child(4) {
        grid-row: 5;
    }
    
    .circular-content {
        border-radius: var(--border-radius);
        aspect-ratio: auto;
        padding: 20px;
    }
    
    .central-image {
        border-radius: var(--border-radius);
    }
    
    .accordion-grid {
        grid-template-columns: 1fr;
    }
    
    .accordion-text {
        padding-right: 0;
        order: 2;
    }
    
    .accordion-image-container {
        order: 1;
        margin-bottom: 20px;
    }
    
    .philosophy-principles {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
    }
    
    .step-item::after {
        left: 40px;
        top: 80px;
        height: calc(100% - 60px);
    }
    
    .step-number {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .typed-text {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .methodology-card {
        padding: 20px;
    }
    
    .card-number {
        font-size: 40px;
        top: 5px;
        right: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}