/* VARIABLES */
:root {
    --primary-color: #3498db;
    --secondary-color: #2980b9;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #34495e;
    --text-color: #333333;
    --background-color: #ffffff;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --gray-light: #f5f5f5;
    --gray: #dddddd;
    --gray-dark: #8c8c8c;
    --border-radius: 5px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
    --footer-bg: #2c3e50;
}

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

/* HEADER */
header {
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav ul li a {
    padding: 10px 15px;
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-weight: 500;
}

nav ul li a:hover, 
nav ul li a.active {
    color: var(--primary-color);
    background-color: rgba(52, 152, 219, 0.1);
}

.font-size-button {
    margin-left: 20px;
}

/* HERO SECTIONS */
.hero, 
.about-hero, 
.services-hero, 
.blog-hero, 
.contact-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 100px 0;
    text-align: center;
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero h2, 
.about-hero h2, 
.services-hero h2, 
.blog-hero h2, 
.contact-hero h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p, 
.about-hero p, 
.services-hero p, 
.blog-hero p, 
.contact-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* BUTTONS */
.cta-button, 
.submit-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover, 
.submit-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: white;
}

.three-d-button {
    background: linear-gradient(to bottom, #4a90e2, #3498db);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 6px 0 #2980b9, 0 12px 10px rgba(0, 0, 0, 0.15);
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.three-d-button:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #2980b9, 0 8px 8px rgba(0, 0, 0, 0.1);
}

.three-d-button:active {
    transform: translateY(6px);
    box-shadow: 0 0 0 #2980b9, 0 3px 6px rgba(0, 0, 0, 0.1);
}

.read-more {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.read-more:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* SECTIONS */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 50px;
}

/* FEATURED POSTS */
.featured-posts {
    background-color: var(--light-color);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

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

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

.post-card h3 {
    padding: 15px 20px 0;
    font-size: 1.2rem;
}

.post-card p {
    padding: 0 20px;
    color: var(--gray-dark);
}

.post-card .read-more {
    margin: 0 20px 20px;
    display: inline-block;
}

.view-all {
    text-align: center;
}

.view-all a {
    font-weight: 600;
    text-decoration: underline;
    font-size: 1.1rem;
}

/* TESTIMONIALS */
.testimonials {
    background-color: var(--gray-light);
}

.testimonials-slider {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.testimonial {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 500px;
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.client-info span {
    font-weight: 600;
}

/* NEWSLETTER */
.newsletter {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.newsletter h2,
.newsletter p {
    color: white;
}

.newsletter form {
    display: flex;
    max-width: 600px;
    margin: 30px auto 0;
}

.newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
}

.newsletter button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter button:hover {
    background-color: #c0392b;
}

/* FOOTER */
footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-links h3,
.footer-legal h3,
.social-media h3 {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

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

.footer-links ul li a,
.footer-legal ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
}

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

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

.social-icons svg {
    color: white;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.copyright {
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    color: white;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
    margin: 10px 0;
    flex: 1;
    min-width: 280px;
}

.cookie-banner a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 20px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

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

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

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

.cookie-buttons button:hover {
    opacity: 0.9;
}

/* BLOG PAGE */
.blog-content .container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-post {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.blog-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 20px 30px 20px 0;
}

.post-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.post-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.post-meta {
    display: flex;
    gap: 20px;
    color: var(--gray-dark);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* SIDEBAR */
.blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
    border-bottom: 1px solid var(--gray);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.categories ul li {
    margin-bottom: 10px;
}

.categories ul li a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
    padding: 5px 0;
    transition: var(--transition);
}

.categories ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.popular-post {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.popular-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.popular-post h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.popular-post span {
    font-size: 0.85rem;
    color: var(--gray-dark);
}

.subscribe form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subscribe input {
    padding: 10px;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
}

.subscribe button {
    background-color: var(--primary-color);
    color: white;
    padding: 10px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.subscribe button:hover {
    background-color: var(--secondary-color);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    display: inline-block;
    background-color: var(--gray-light);
    color: var(--text-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.tag-cloud a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* CONTACT PAGE */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon svg {
    color: var(--primary-color);
}

.contact-card h3 {
    margin-bottom: 15px;
}

.social-mini-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

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

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

.social-mini-icons a:hover svg {
    color: white;
}

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

.form-container, 
.map-container {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox input {
    width: auto;
}

.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

.map-placeholder {
    background-color: var(--gray-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.map-image {
    flex: 1;
    overflow: hidden;
}

.map-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-details {
    background-color: white;
    padding: 15px;
}

/* ABOUT PAGE */
.mission-vision {
    background-color: var(--light-color);
}

.mission-vision .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.mission, 
.vision {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.mission h2, 
.vision h2 {
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 15px;
}

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

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
}

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

.team-member h3 {
    margin-top: 20px;
    margin-bottom: 5px;
}

.team-member p {
    padding: 0 15px 20px;
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.values {
    background-color: var(--light-color);
}

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

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card svg {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(120px + 30px);
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
}

.timeline-year {
    width: 120px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: var(--border-radius);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.timeline-year::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    padding-left: 60px;
}

.timeline-content h3 {
    margin-bottom: 5px;
}

/* SERVICES PAGE */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
}

.service-card p,
.service-card ul {
    padding: 0 20px;
}

.service-card ul {
    margin: 15px 0;
    padding-left: 40px;
    list-style: disc;
}

.service-card ul li {
    margin-bottom: 8px;
    color: var(--gray-dark);
}

.service-card .cta-button {
    margin: 0 20px 20px;
    display: inline-block;
}

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

.step {
    display: flex;
    margin-bottom: 30px;
}

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

.step-content h3 {
    margin-bottom: 5px;
}

.benefits {
    background-color: var(--light-color);
}

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

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card svg {
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.testimonial-content {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    margin-bottom: 20px;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}

/* FAQ */
.faq {
    background-color: var(--light-color);
}

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

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    background-color: rgba(52, 152, 219, 0.05);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* CTA SECTION */
.cta-section {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
}

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

.modal-content {
    position: relative;
    background-color: white;
    margin: 10% auto;
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

.success-message {
    text-align: center;
}

.success-message svg {
    margin-bottom: 20px;
}

.success-message h3 {
    color: var(--success-color);
    margin-bottom: 15px;
}

.close-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.close-button:hover {
    background-color: var(--secondary-color);
}

/* MEDIA QUERIES */
@media (max-width: 1200px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .blog-content .container {
        grid-template-columns: 1fr;
    }

    .blog-post {
        grid-template-columns: 1fr;
    }

    .blog-post img {
        height: 300px;
    }

    .post-content {
        padding: 20px;
    }

    .mission-vision .container {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-year {
        width: 80px;
    }

    .timeline-year::after {
        right: -20px;
    }

    .timeline-content {
        padding-left: 40px;
    }
}

@media (max-width: 768px) {
    header {
        height: auto;
        padding: 15px 0;
    }

    header .container {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero h2, 
    .about-hero h2, 
    .services-hero h2, 
    .blog-hero h2, 
    .contact-hero h2 {
        font-size: 2.2rem;
    }

    .newsletter form {
        flex-direction: column;
    }

    .newsletter input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }

    .newsletter button {
        border-radius: var(--border-radius);
        padding: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .testimonials-slider {
        flex-direction: column;
    }
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-in-up {
    animation: slideInUp 0.5s ease-out;
}
