/* Base */
:root {
    --primary-color: #3a7bd5;
    --primary-color-dark: #2d62aa;
    --secondary-color: #00bcd4;
    --secondary-color-dark: #008ba3;
    --accent-color: #ff5722;
    --text-color: #333333;
    --text-color-light: #666666;
    --light-color: #f5f7fa;
    --white-color: #ffffff;
    --dark-color: #1a1a1a;
    --gray-color: #e5e5e5;
    --gray-color-dark: #c4c4c4;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
}

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

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

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

ul {
    list-style: none;
}

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

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

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 2rem;
}

section {
    padding: 8rem 0;
}

.center {
    text-align: center;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: var(--primary-color-dark);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background-color: var(--secondary-color-dark);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 1.1rem 2.3rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Header & Navigation */
header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
}

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

.logo img {
    height: 5rem;
    width: auto;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 3rem;
}

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

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

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

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

/* Hero Section */
.hero {
    padding-top: 15rem;
    padding-bottom: 8rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.hero h1 {
    font-size: 5rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.hero p {
    font-size: 2rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--text-color-light);
}

/* Services Section */
.services {
    background-color: var(--white-color);
    padding-top: 8rem;
    padding-bottom: 8rem;
    text-align: center;
}

.services h2 {
    margin-bottom: 5rem;
}

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

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

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

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

.service-card h3 {
    font-size: 2.2rem;
    padding: 2rem 2rem 0;
    margin-bottom: 1rem;
}

.service-card p {
    padding: 0 2rem 2rem;
    color: var(--text-color-light);
}

/* Featured Posts Section */
.featured-posts {
    background-color: var(--light-color);
    padding-top: 8rem;
    padding-bottom: 8rem;
    text-align: center;
}

.featured-posts h2 {
    margin-bottom: 5rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

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

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

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

.post-card h3 {
    font-size: 2rem;
    padding: 2rem 2rem 0;
    margin-bottom: 1rem;
}

.post-card p {
    padding: 0 2rem;
    color: var(--text-color-light);
    margin-bottom: 2rem;
}

.post-card .btn-secondary {
    margin: 0 2rem 2rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white-color);
    padding-top: 8rem;
    padding-bottom: 8rem;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 5rem;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    padding: 3rem;
}

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

.testimonial-content p {
    font-style: italic;
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

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

.testimonial-author h4 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

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

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
    text-align: center;
    padding: 8rem 0;
}

.cta h2 {
    color: var(--white-color);
    margin-bottom: 2rem;
}

.cta p {
    font-size: 1.8rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta .btn-primary {
    background-color: var(--white-color);
    color: var(--primary-color);
    margin-right: 1.5rem;
}

.cta .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.cta .btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white-color);
}

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

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 6rem 0 2rem;
}

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

.footer-logo {
    width: 120px;
    margin-bottom: 2rem;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.company-info {
    font-size: 1.4rem;
}

.footer-contact h3,
.footer-links h3,
.footer-social h3 {
    color: var(--white-color);
    margin-bottom: 2rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

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

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

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

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

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

.social-icons a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
    margin: 0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 2rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-consent.active {
    transform: translateY(0);
}

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

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

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-more-info {
    font-size: 1.4rem;
    margin: 0;
}

.cookie-more-info a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
    text-align: center;
    padding: 15rem 0 6rem;
    margin-bottom: 4rem;
}

.page-header h1 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.8rem;
    max-width: 700px;
    margin: 0 auto;
}

/* About Page Styles */
.about-intro {
    padding-top: 2rem;
    padding-bottom: 8rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 2.5rem;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

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

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

.value-icon {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.value-card h3 {
    margin-bottom: 1.5rem;
}

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

.our-values {
    background-color: var(--light-color);
    text-align: center;
}

.team {
    text-align: center;
}

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

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

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

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

.team-card h3 {
    padding: 2rem 2rem 0.5rem;
    margin-bottom: 0.5rem;
}

.team-card p {
    padding: 0 2rem;
    margin-bottom: 1rem;
    color: var(--text-color-light);
}

.team-card p:first-of-type {
    color: var(--primary-color);
    font-weight: 500;
}

.certifications {
    background-color: var(--light-color);
    text-align: center;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

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

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

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

.certification-card h3 {
    padding: 2rem 2rem 0.5rem;
}

.certification-card p {
    padding: 0 2rem 2rem;
    color: var(--text-color-light);
}

/* Blog Page Styles */
.blog-content {
    padding-top: 2rem;
}

.blog-grid {
    display: grid;
    gap: 4rem;
}

.post-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.post-content {
    padding: 2rem;
}

.post-date {
    display: block;
    color: var(--text-color-light);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.post-card h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.post-card h2 a {
    color: var(--dark-color);
}

.post-card h2 a:hover {
    color: var(--primary-color);
}

.post-overview {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
}

.post-overview h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.post-overview ul {
    list-style: disc;
    padding-left: 2rem;
}

.post-overview ul li {
    margin-bottom: 0.8rem;
    color: var(--text-color-light);
}

.newsletter {
    background-color: var(--light-color);
    text-align: center;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    margin: 3rem auto;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 1.5rem;
    border: 1px solid var(--gray-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1.6rem;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.form-notice {
    font-size: 1.3rem;
    color: var(--text-color-light);
}

/* Contact Page Styles */
.contact-content {
    padding-top: 2rem;
    padding-bottom: 8rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-form-container h2,
.contact-info-container h2 {
    margin-bottom: 3rem;
}

.contact-form .form-group {
    margin-bottom: 2.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--gray-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1.6rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-checkbox {
    display: flex;
    align-items: center;
}

.form-checkbox input {
    width: auto;
    margin-right: 1rem;
}

.form-checkbox label {
    margin: 0;
}

.info-item {
    display: flex;
    margin-bottom: 3rem;
}

.info-icon {
    color: var(--primary-color);
    margin-right: 2rem;
    flex-shrink: 0;
}

.info-item h3 {
    margin-bottom: 0.8rem;
}

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

.social-contact {
    margin-top: 4rem;
}

.social-contact h3 {
    margin-bottom: 2rem;
}

.map-section {
    background-color: var(--light-color);
    text-align: center;
}

.map-container {
    margin-top: 3rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    height: 400px;
    background-color: var(--gray-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.map-placeholder p {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white-color);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1.4rem;
}

.faq-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 4rem auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 2rem;
    border: 1px solid var(--gray-color);
    border-radius: var(--border-radius);
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--white-color);
}

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

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

.faq-answer {
    display: none;
    padding: 0 2rem 2rem;
}

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

.faq-cta {
    margin-top: 4rem;
}

.faq-cta p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.thank-you-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-large);
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    cursor: pointer;
    color: var(--text-color-light);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--text-color);
}

.modal-body {
    padding: 4rem;
    text-align: center;
}

.success-icon {
    color: #4caf50;
    margin-bottom: 2rem;
}

.modal-body h2 {
    margin-bottom: 1.5rem;
}

.modal-body p {
    margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 992px) {
    html {
        font-size: 60%;
    }
    
    .about-content, 
    .contact-grid,
    .post-card.featured {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-content,
    .contact-grid {
        gap: 4rem;
    }
    
    .post-card.featured {
        gap: 0;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 58%;
    }
    
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    header {
        padding: 1rem 0;
    }
    
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1.5rem;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 1.5rem;
    }
    
    .services-grid,
    .posts-grid,
    .values-grid,
    .team-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 1rem;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius);
    }
    
    .cta .btn-primary {
        margin: 0 0 1.5rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-buttons button {
        margin-bottom: 1rem;
    }
}

/* Icons */
.icon-location, .icon-phone, .icon-email {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.icon-location {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10zm0-7a3 3 0 1 1 0-6 3 3 0 0 1 0 6z'/%3E%3C/svg%3E");
}

.icon-phone {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.885.511a1.745 1.745 0 0 1 2.61.163L6.29 2.98c.329.423.445.974.315 1.494l-.547 2.19a.678.678 0 0 0 .178.643l2.457 2.457a.678.678 0 0 0 .644.178l2.189-.547a1.745 1.745 0 0 1 1.494.315l2.306 1.794c.829.645.905 1.87.163 2.611l-1.034 1.034c-.74.74-1.846 1.065-2.877.702a18.634 18.634 0 0 1-7.01-4.42 18.634 18.634 0 0 1-4.42-7.009c-.362-1.03-.037-2.137.703-2.877L1.885.511z'/%3E%3C/svg%3E");
}

.icon-email {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4Zm2-1a1 1 0 0 0-1 1v.217l7 4.2 7-4.2V4a1 1 0 0 0-1-1H2Zm13 2.383-4.708 2.825L15 11.105V5.383Zm-.034 6.876-5.64-3.471L8 9.583l-1.326-.795-5.64 3.47A1 1 0 0 0 2 13h12a1 1 0 0 0 .966-.741ZM1 11.105l4.708-2.897L1 5.383v5.722Z'/%3E%3C/svg%3E");
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1, 
.hero p, 
.hero .btn-primary {
    animation: fadeIn 1s ease forwards;
}

.hero p {
    animation-delay: 0.2s;
}

.hero .btn-primary {
    animation-delay: 0.4s;
}

.service-card, 
.post-card, 
.value-card, 
.team-card, 
.certification-card {
    animation: fadeIn 0.8s ease forwards;
}

/* For blog posts */
.post-content img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.post-content h2 {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.post-content h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.post-content ul, 
.post-content ol {
    margin: 2rem 0;
    padding-left: 2.5rem;
}

.post-content ul li, 
.post-content ol li {
    margin-bottom: 1rem;
}

.post-content blockquote {
    background-color: var(--light-color);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
    font-style: italic;
}

.post-content blockquote p:last-child {
    margin-bottom: 0;
}
