/* Base Styles */
:root {
    --primary-color: #3a7bd5;
    --primary-dark: #2c62b5;
    --secondary-color: #00d2ff;
    --accent-color: #ff6b6b;
    --text-dark: #333333;
    --text-light: #777777;
    --text-lighter: #999999;
    --background-light: #ffffff;
    --background-off: #f8f9fa;
    --background-dark: #1a1a2e;
    --border-color: #e1e4e8;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
    --font-family: '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 {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    background-color: var(--background-light);
}

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

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

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

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-dark);
}

p {
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-secondary:hover {
    background-color: rgba(58, 123, 213, 0.1);
    transform: translateY(-2px);
}

/* Header & Navigation */
header {
    background-color: var(--background-light);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

header h1 {
    font-size: 1.5rem;
    margin: 0;
}

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

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--text-dark);
}

/* Main Content Spacing */
main {
    padding-top: 70px;
}

/* Hero Section */
.hero {
    padding: 60px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* Featured Posts */
.featured-posts {
    padding: 60px 0;
    background-color: var(--background-off);
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

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

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

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

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

.post-content {
    padding: 20px;
}

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

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

.view-all-container {
    text-align: center;
    margin-top: 2rem;
}

/* Benefits Section */
.benefits {
    padding: 60px 0;
}

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

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

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

.icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(58, 123, 213, 0.1);
    color: var(--primary-color);
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.benefit-card p {
    color: var(--text-light);
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background-color: var(--background-off);
}

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

.testimonial-slide {
    display: block;
}

.testimonial-content {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50px;
    width: 30px;
    height: 30px;
    background-color: var(--background-light);
    transform: rotate(45deg);
    box-shadow: var(--shadow-sm);
    z-index: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-left: 50px;
}

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

.testimonial-author h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
}

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

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Call to Action */
.call-to-action {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: white;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

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

/* Interesting Facts */
.interesting-facts {
    padding: 60px 0;
    background-color: var(--background-off);
}

.fact-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 20px;
}

.fact-card .icon {
    flex-shrink: 0;
}

.fact-card p {
    margin-bottom: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--background-dark);
    color: white;
    padding: 60px 0 30px;
}

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

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

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-info h3 {
    color: white;
    margin-bottom: 15px;
}

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

.footer-links h4, .footer-legal h4, .footer-contact h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-links ul, .footer-legal ul, .footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

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

.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

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

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

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

.copyright p {
    margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-dark);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin-bottom: 0;
    text-align: center;
}

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

.btn-cookie-accept {
    background-color: var(--success-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 8px 16px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-customize {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: var(--border-radius-sm);
    padding: 8px 16px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-reject {
    background-color: var(--error-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 8px 16px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    background-color: darken(var(--success-color), 10%);
}

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

.btn-cookie-reject:hover {
    background-color: darken(var(--error-color), 10%);
}

.cookie-link {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.cookie-link:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

/* About Page */
.about-hero {
    padding: 60px 0;
    background-color: var(--background-off);
    text-align: center;
}

.about-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

.mission-vision {
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.mission-vision .container {
    display: flex;
    gap: 40px;
}

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

.mission h3, .vision h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team {
    padding: 60px 0;
    background-color: var(--background-off);
}

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

.team-member {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

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

.team-member h3 {
    margin: 20px 0 10px;
    font-size: 1.25rem;
}

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

.team-member p:nth-of-type(2) {
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(58, 123, 213, 0.1);
    color: var(--primary-color);
    transition: var(--transition);
}

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

.values {
    padding: 60px 0;
}

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

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

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

.certifications {
    padding: 60px 0;
    background-color: var(--background-off);
}

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

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

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

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

.certification-card h3, .certification-card p {
    padding: 0 20px;
}

.certification-card h3 {
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.certification-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Blog Page */
.blog-hero {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.blog-hero h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.blog-hero p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.blog-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.blog-search input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.search-btn {
    padding: 0 20px;
    background-color: white;
    color: var(--primary-color);
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
}

.blog-posts {
    padding: 60px 0;
}

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

.post-card .post-date {
    display: block;
    color: var(--text-lighter);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.blog-pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    transition: var(--transition);
}

.blog-pagination a.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.blog-pagination a:hover:not(.active) {
    background-color: var(--background-off);
}

.blog-pagination a.next {
    width: auto;
    padding: 0 15px;
}

.blog-categories {
    padding: 60px 0;
    background-color: var(--background-off);
}

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

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
}

.category-icon {
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(58, 123, 213, 0.1);
    color: var(--primary-color);
}

.category-card h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

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

.newsletter {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: white;
}

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

.newsletter-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--border-radius);
}

.newsletter-form .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

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

/* Blog Post */
.blog-post {
    padding: 60px 0;
}

.post-header {
    margin-bottom: 30px;
}

.post-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.post-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.post-featured-image {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-content {
    margin-bottom: 40px;
    line-height: 1.8;
}

.post-content h3 {
    margin: 2rem 0 1rem;
    font-size: 1.75rem;
}

.post-content h4 {
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

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

.post-content ul, .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

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

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    align-items: center;
}

.post-tags span {
    font-weight: 600;
}

.post-tags a {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(58, 123, 213, 0.1);
    color: var(--primary-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    transition: var(--transition);
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: white;
}

.post-share {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    align-items: center;
}

.post-share span {
    font-weight: 600;
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(58, 123, 213, 0.1);
    color: var(--primary-color);
    transition: var(--transition);
}

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

.post-author-bio {
    display: flex;
    gap: 20px;
    padding: 30px;
    background-color: var(--background-off);
    border-radius: var(--border-radius);
    margin-bottom: 40px;
}

.post-author-bio img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.post-author-bio h4 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

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

.related-posts {
    margin-bottom: 60px;
}

.related-posts h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

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

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

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

.related-post h4, .related-post p {
    padding: 0 15px;
}

.related-post h4 {
    margin: 15px 0 10px;
    font-size: 1.1rem;
}

.related-post h4 a {
    color: var(--text-dark);
    transition: var(--transition);
}

.related-post h4 a:hover {
    color: var(--primary-color);
}

.related-post p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Services Page */
.services-hero {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.services-hero h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.services-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.services-tabs {
    padding: 60px 0;
}

.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.tab-button {
    padding: 12px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    color: var(--text-light);
    position: relative;
}

.tab-button.active {
    color: var(--primary-color);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-flex {
    display: flex;
    gap: 40px;
}

.tab-info {
    flex: 3;
}

.tab-image {
    flex: 2;
}

.tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.tab-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.tab-info p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.tab-info h4 {
    margin: 30px 0 15px;
    font-size: 1.25rem;
}

.tab-info ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 30px;
}

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

.tab-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--background-off);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.price {
    display: flex;
    flex-direction: column;
}

.price span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.price h5 {
    font-size: 1.75rem;
    margin: 0;
    color: var(--text-dark);
}

.price h5 small {
    font-size: 1rem;
    color: var(--text-light);
}

.methodology {
    padding: 60px 0;
    background-color: var(--background-off);
}

.methodology-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.methodology-step {
    flex: 0 0 calc(20% - 24px);
    min-width: 180px;
    text-align: center;
    padding: 30px 20px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
}

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

.methodology-step h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.faq {
    padding: 60px 0;
}

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

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    width: 100%;
    text-align: left;
    padding: 20px;
    background-color: var(--background-light);
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.active .accordion-content {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.accordion-content p {
    margin-bottom: 0;
}

/* Contact Page */
.contact-hero {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.contact-hero h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.contact-info {
    padding: 60px 0;
}

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

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

.contact-card .icon {
    margin-bottom: 20px;
}

.contact-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

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

.contact-form {
    padding: 60px 0;
    background-color: var(--background-off);
}

.contact-form .container {
    display: flex;
    gap: 40px;
}

.form-wrapper {
    flex: 1;
}

.map-container {
    flex: 1;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

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

.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: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

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

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

.modal-icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
}

.modal-content h3 {
    margin-bottom: 15px;
    font-size: 1.75rem;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.close-btn {
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero .container,
    .mission-vision .container,
    .tab-flex,
    .contact-form .container {
        flex-direction: column;
    }

    .hero-image {
        order: -1;
        margin-bottom: 30px;
    }

    .posts-grid,
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: var(--background-light);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 16px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .blog-search {
        flex-direction: column;
        gap: 10px;
    }

    .blog-search input {
        border-radius: var(--border-radius);
    }

    .search-btn {
        border-radius: var(--border-radius);
        padding: 12px;
    }

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

    .newsletter-form .btn-primary {
        width: 100%;
    }

    .post-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .posts-grid,
    .benefits-grid,
    .team-grid,
    .values-grid,
    .certifications-grid,
    .categories-grid,
    .blog-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-author img {
        margin: 0 auto 10px;
    }

    .post-author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cookie-content {
        text-align: center;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

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