/* Base Styles */
:root {
    --primary-color: #2c6e49;
    --primary-dark: #214e36;
    --primary-light: #4d9a6d;
    --secondary-color: #f2cc8f;
    --secondary-dark: #deb778;
    --secondary-light: #f8e0b0;
    --accent-color: #e76f51;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f9f9f9;
    --bg-dark: #eaeaea;
    --border-color: #dddddd;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --radius-small: 4px;
    --radius-medium: 8px;
    --radius-large: 12px;
    --shadow-small: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 8px 16px rgba(0, 0, 0, 0.1);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--text-color);
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-medium);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color var(--transition-fast);
    border: none;
    text-decoration: none;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--text-color);
}

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: var(--shadow-small);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo img {
    max-height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin-left: 1.5rem;
}

nav a {
    padding: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

nav a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-medium);
}

nav a:hover:after, nav a.active:after {
    width: 100%;
}

nav a.active {
    color: var(--primary-color);
}

.btn-consulta {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-medium);
    transition: background-color var(--transition-fast);
}

.btn-consulta:hover, .btn-consulta:focus {
    background-color: var(--primary-dark);
    color: white;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(135deg, rgba(44, 110, 73, 0.9) 0%, rgba(33, 78, 54, 0.9) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.hero .btn {
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.hero .btn:hover {
    background-color: var(--secondary-dark);
}

/* Countdown Section */
.countdown {
    padding: 3rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

.countdown h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

#countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

#countdown-timer div {
    background-color: var(--bg-color);
    padding: 1rem;
    border-radius: var(--radius-medium);
    min-width: 100px;
    box-shadow: var(--shadow-small);
}

#countdown-timer span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1.2;
}

#countdown-timer p {
    margin: 0;
    color: var(--text-light);
}

/* Blog Section */
.blog {
    padding: 4rem 0;
}

.blog h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.blog h2::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.post {
    background-color: var(--bg-color);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-medium);
}

.post:hover {
    transform: translateY(-10px);
}

.post-img {
    height: 200px;
    overflow: hidden;
}

.post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.post:hover .post-img img {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.post-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-read {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.btn-read::after {
    content: "→";
    margin-left: 5px;
    transition: margin-left var(--transition-fast);
}

.btn-read:hover::after {
    margin-left: 10px;
}

/* Terminology Section */
.terminologia {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.terminologia h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.terminologia h2::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.term {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);
    border-left: 3px solid var(--primary-color);
}

.term h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.term p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Call to Action Section */
.cta {
    background-color: var(--primary-color);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.cta .btn:hover {
    background-color: var(--secondary-dark);
}

/* Footer */
footer {
    background-color: #222;
    color: #eee;
    padding: 4rem 0 2rem;
}

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

.footer-logo img {
    max-height: 60px;
    margin-bottom: 1rem;
}

.footer-logo p {
    font-size: 0.9rem;
    color: #aaa;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #aaa;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color var(--transition-fast);
}

.social-icons svg {
    fill: white;
    width: 18px;
    height: 18px;
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-legal {
    margin-bottom: 1rem;
}

.footer-legal a {
    color: #aaa;
    margin: 0 0.5rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: white;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-cookie {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-small);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color var(--transition-fast);
}

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

.btn-cookie.reject {
    background-color: var(--error-color);
    color: white;
}

.btn-cookie.customize {
    background-color: var(--warning-color);
    color: white;
}

.cookie-more {
    color: var(--secondary-color);
    text-decoration: underline;
    margin-left: 1rem;
}

/* Page Banner (for internal pages) */
.page-banner {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(135deg, rgba(44, 110, 73, 0.9) 0%, rgba(33, 78, 54, 0.9) 100%);
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

/* About Us Page */
.about-us {
    padding: 4rem 0;
}

.about-intro, .mission-vision {
    margin-bottom: 3rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission, .vision {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);
}

.team-section {
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    background-color: var(--bg-color);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    padding-bottom: 1.5rem;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h3 {
    margin-bottom: 0.25rem;
}

.team-member p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.team-member p:nth-of-type(1) {
    font-weight: 600;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--bg-light);
    border-radius: 50%;
    transition: background-color var(--transition-fast);
}

.social-links svg {
    fill: var(--text-light);
    transition: fill var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.social-links a:hover svg {
    fill: white;
}

.values {
    margin-top: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.value {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);
    border-top: 3px solid var(--primary-color);
}

.value h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-info {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background-color: var(--bg-color);
    padding: 2rem;
    text-align: center;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);
}

.info-card .icon {
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(44, 110, 73, 0.1);
    border-radius: 50%;
}

.info-card svg {
    fill: var(--primary-color);
}

.info-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-form {
    padding: 4rem 0;
}

.contact-form .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.form-wrapper {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);
}

.form-wrapper h2 {
    margin-bottom: 0.5rem;
}

form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group.checkbox-group {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-group.checkbox-group input {
    margin-top: 0.3rem;
}

label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, select, textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-small);
    font-family: var(--font-primary);
}

textarea {
    resize: vertical;
}

.btn-submit {
    grid-column: 1 / -1;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

.map-wrapper {
    display: flex;
    flex-direction: column;
}

.map-wrapper h2 {
    margin-bottom: 1rem;
}

.map {
    flex-grow: 1;
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-small);
}

.map iframe {
    border: none;
    display: block;
}

.faq {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.testimonials {
    padding: 4rem 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.testimonial-item {
    min-width: 300px;
    flex: 1;
}

.testimonial-content {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-small);
    position: relative;
}

.testimonial-content::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
    background-color: var(--bg-light);
    transform: rotate(45deg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    padding-left: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 0;
}

.testimonial-author p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--bg-color);
    margin: auto;
    padding: 2rem;
    border-radius: var(--radius-medium);
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

.thank-you-content {
    text-align: center;
}

.thank-you-content svg {
    fill: var(--success-color);
    margin-bottom: 1rem;
}

.thank-you-content h2 {
    margin-bottom: 1rem;
}

.thank-you-content p {
    margin-bottom: 1.5rem;
}

/* Blog Post Styles */
.post-header {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0;
    position: relative;
}

.post-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(135deg, rgba(44, 110, 73, 0.9) 0%, rgba(33, 78, 54, 0.9) 100%);
    z-index: 1;
}

.post-header .container {
    position: relative;
    z-index: 2;
}

.post-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.post-meta i {
    margin-right: 0.25rem;
}

.post-content {
    padding: 4rem 0;
}

.post-image {
    margin-bottom: 2rem;
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.post-image img {
    width: 100%;
    display: block;
}

.post-text h2, .post-text h3 {
    margin-top: 2rem;
}

.post-text ul, .post-text ol {
    margin-bottom: 1.5rem;
}

.post-text li {
    margin-bottom: 0.5rem;
}

.post-cta {
    background-color: var(--bg-light);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: var(--radius-medium);
    text-align: center;
    border-left: 5px solid var(--primary-color);
}

.post-cta h3 {
    margin-bottom: 0.5rem;
}

.post-cta p {
    margin-bottom: 1.5rem;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.post-share p {
    margin-bottom: 0;
    font-weight: 600;
}

.social-share {
    display: flex;
    gap: 0.5rem;
}

.social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--bg-light);
    border-radius: 50%;
    transition: background-color var(--transition-fast);
}

.social-share svg {
    fill: var(--text-light);
    transition: fill var(--transition-fast);
}

.social-share a:hover {
    background-color: var(--primary-color);
}

.social-share a:hover svg {
    fill: white;
}

.related-posts {
    margin-top: 3rem;
}

.related-posts h3 {
    margin-bottom: 2rem;
    position: relative;
}

.related-posts h3::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.related-post {
    background-color: var(--bg-color);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-small);
    transition: transform var(--transition-medium);
}

.related-post:hover {
    transform: translateY(-5px);
}

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post h4 {
    padding: 1rem;
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .contact-form .container {
        grid-template-columns: 1fr;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav li {
        margin: 0 0.75rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.1rem;
    }
    
    #countdown-timer {
        flex-wrap: wrap;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    form {
        grid-template-columns: 1fr;
    }
    
    .post-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
    }
    
    #countdown-timer div {
        min-width: 70px;
        padding: 0.7rem;
    }
    
    #countdown-timer span {
        font-size: 1.8rem;
    }
}

/* Icon Fonts */
.icon-calendar, .icon-user, .icon-tag, .icon-location, .icon-phone, .icon-mail {
    display: inline-block;
    width: 1em;
    height: 1em;
    position: relative;
    top: 0.125em;
}

.icon-calendar:before {
    content: "📅";
}

.icon-user:before {
    content: "👤";
}

.icon-tag:before {
    content: "🏷️";
}

.icon-location:before {
    content: "📍";
}

.icon-phone:before {
    content: "📞";
}

.icon-mail:before {
    content: "✉️";
}
