/* Global Variables */
:root {
    --primary-color: #1a73e8;
    --primary-dark: #0d47a1;
    --primary-light: #4285f4;
    --secondary-color: #34a853;
    --accent-color: #fbbc05;
    --text-color: #202124;
    --text-light: #5f6368;
    --light-gray: #f8f9fa;
    --medium-gray: #e8eaed;
    --dark-gray: #dadce0;
    --error-color: #ea4335;
    --success-color: #34a853;
    --warning-color: #fbbc05;
    --white: #ffffff;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition-speed: 0.3s;
    --container-width: 1200px;
    --footer-bg: #263238;
    --footer-text: #b0bec5;
}

/* Typography */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aXp-p7K4KLg.woff2) format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.woff2) format('woff2');
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

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

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

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

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navbar */
header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    border-radius: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-menu li {
    margin-left: 1.5rem;
}

.nav-menu a {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

.font-size-control {
    display: flex;
    align-items: center;
}

.font-size-control button {
    display: flex;
    align-items: center;
    background: none;
    border: 1px solid var(--medium-gray);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    transition: all var(--transition-speed);
}

.font-size-control button:hover {
    background-color: var(--light-gray);
}

.font-size-control button svg {
    margin-right: 0.5rem;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background-color: var(--light-gray);
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    max-width: 50%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed);
    border: none;
}

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

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

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

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
}

.btn-text {
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    background-color: rgba(26, 115, 232, 0.1);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

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

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

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

.benefit-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
    text-align: center;
}

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

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

/* Dashboard Demo */
.dashboard-preview {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.dashboard-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.dashboard-card {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
}

.dashboard-card h4 {
    margin-bottom: 1rem;
}

.chart {
    margin-bottom: 1rem;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border-radius: var(--border-radius);
}

.dashboard-stat {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
}

.dashboard-trend {
    font-size: 1rem;
    margin-left: 0.5rem;
}

.dashboard-trend.positive {
    color: var(--success-color);
}

.dashboard-trend.negative {
    color: var(--error-color);
}

/* Demo Form */
.demo-form {
    background-color: var(--light-gray);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--box-shadow);
}

.form-container h2 {
    margin-bottom: 1rem;
}

.form-container p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-family: 'Roboto', sans-serif;
    transition: border-color var(--transition-speed);
}

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

.form-group.inline {
    display: flex;
    gap: 0.5rem;
}

.form-agreement {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.form-agreement label {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
}

.form-agreement input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

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

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

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

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.blog-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.read-more {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more:after {
    content: "→";
    margin-left: 0.3rem;
    transition: transform var(--transition-speed);
}

.read-more:hover:after {
    transform: translateX(3px);
}

.blog-cta {
    margin-top: 2.5rem;
    text-align: center;
}

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

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

.testimonial {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.testimonial-content {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.testimonial-content:before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-light);
    opacity: 0.3;
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
}

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

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

.author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

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

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

.cta.blue {
    background-color: var(--primary-dark);
}

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

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

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

.cta .btn-outline,
.cta .btn-secondary {
    border-color: white;
    color: white;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-box {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}

.cta-box h3 {
    margin-bottom: 1rem;
}

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

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding-top: 4rem;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: var(--footer-text);
    transition: color var(--transition-speed);
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links 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: background-color var(--transition-speed);
}

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

address {
    font-style: normal;
}

address p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

address svg {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

address a {
    color: var(--footer-text);
}

address a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--footer-text);
    font-size: 0.875rem;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.5rem;
}

.cookie-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

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

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

/* Modal */
.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);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 3rem;
    width: 90%;
    max-width: 500px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

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

.modal svg {
    margin-bottom: 1.5rem;
}

/* Blog Pages */
.blog-header {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

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

.blog-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-content {
    padding: 5rem 0;
}

.blog-grid-full {
    display: grid;
    gap: 3rem;
}

.blog-card.featured {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap: 2rem;
}

.blog-card.featured img {
    height: 100%;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-date:before {
    content: "📅";
    margin-right: 0.3rem;
}

.blog-category {
    background-color: var(--light-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

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

.newsletter-container {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter-content {
    max-width: 500px;
}

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

.newsletter-content p {
    color: var(--text-light);
}

.newsletter-form {
    flex-grow: 1;
    min-width: 300px;
}

/* Blog Post Page */
.blog-post {
    padding: 3rem 0 5rem;
}

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

.post-header {
    margin-bottom: 2.5rem;
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author img {
    border-radius: 50%;
}

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

.post-featured-image img {
    width: 100%;
    border-radius: 0;
}

.post-body h2 {
    margin-top: 2.5rem;
}

.post-body h3 {
    margin-top: 2rem;
}

.post-body p, 
.post-body ul, 
.post-body ol {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.post-callout {
    background-color: var(--light-gray);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.post-callout.blue {
    border-left-color: var(--primary-light);
    background-color: rgba(26, 115, 232, 0.05);
}

.post-callout h3, 
.post-callout h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.post-callout.blue h3, 
.post-callout.blue h4 {
    color: var(--primary-light);
}

.post-image {
    margin: 2rem 0;
    text-align: center;
}

.image-caption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

blockquote {
    background-color: rgba(26, 115, 232, 0.05);
    border-left: 4px solid var(--primary-light);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-style: italic;
}

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

.tax-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.tax-table th, 
.tax-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
}

.tax-table th {
    background-color: var(--light-gray);
    font-weight: 600;
}

.tax-table tr:hover td {
    background-color: rgba(26, 115, 232, 0.05);
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

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

.post-tags a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--light-gray);
    border-radius: 50px;
    color: var(--text-color);
    font-size: 0.875rem;
    transition: all var(--transition-speed);
}

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

.post-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--text-color);
    transition: all var(--transition-speed);
}

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

.related-posts {
    max-width: 800px;
    margin: 4rem auto 0;
}

.related-posts h3 {
    margin-bottom: 2rem;
    text-align: center;
}

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

.related-post {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

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

.related-post img {
    width: 100%;
    border-radius: 0;
}

.related-post h4 {
    padding: 1.25rem;
    margin: 0;
    font-size: 1rem;
}

/* About Us Page */
.about-header {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

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

.about-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-grid, 
.mission-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    margin-top: 0;
}

.mission-box, 
.values-box {
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.mission-box {
    background-color: var(--primary-color);
    color: white;
}

.mission-box h2 {
    color: white;
}

.values-list {
    list-style: none;
    margin: 0;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.values-list svg {
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

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

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

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

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid var(--light-gray);
}

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

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

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

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--text-color);
    transition: all var(--transition-speed);
}

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

.achievements {
    text-align: center;
}

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

.achievement-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

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

.achievement-icon {
    margin-bottom: 1.5rem;
}

.achievement-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Features Page */
.features-header {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

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

.features-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.feature-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.feature-card-large.reverse {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "image content";
}

.feature-card-large.reverse .feature-content {
    grid-area: content;
}

.feature-card-large.reverse .feature-image {
    grid-area: image;
}

.feature-content h2 {
    margin-top: 0;
}

.feature-list {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.75rem;
}

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

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

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

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.feature-points {
    margin-left: 1.5rem;
    list-style: disc;
}

.feature-points li {
    margin-bottom: 0.5rem;
}

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

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.logo-item img {
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-speed);
}

.logo-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.integrations-text {
    color: var(--text-light);
    font-style: italic;
}

/* Pricing Page */
.pricing-header {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

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

.pricing-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.3);
    transition: .4s;
}

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

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

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

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

.discount {
    background-color: var(--success-color);
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

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

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

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    position: relative;
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border-bottom-left-radius: var(--border-radius);
}

.pricing-card-header {
    padding: 2.5rem;
    text-align: center;
    border-bottom: 1px solid var(--medium-gray);
}

.pricing-card-header h2 {
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.period {
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-light);
}

.annually {
    display: none;
}

.billing-period {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pricing-card-body {
    padding: 2.5rem;
}

.pricing-features {
    list-style: none;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.pricing-features svg {
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.enterprise-card {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
}

.enterprise-content {
    max-width: 600px;
}

.enterprise-content h2 {
    margin-top: 0;
}

.enterprise-features {
    list-style: none;
    margin: 1.5rem 0 0 0;
}

.enterprise-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.enterprise-features svg {
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.faq {
    background-color: var(--white);
}

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

.faq-item {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: transform var(--transition-speed);
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

/* Contact Page */
.contact-header {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

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

.contact-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: flex-start;
}

.contact-info h2, 
.contact-form-container h2 {
    margin-top: 0;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-icon {
    margin-right: 1.5rem;
    color: var(--primary-color);
}

.contact-text h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

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

.contact-map {
    margin-bottom: 3rem;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
}

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

.contact-form {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
}

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

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        max-width: 500px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        max-width: 45%;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-image {
        position: static;
        transform: none;
        max-width: 100%;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .feature-card-large, 
    .feature-card-large.reverse {
        grid-template-columns: 1fr;
        grid-template-areas: none;
    }
    
    .feature-content, 
    .feature-image {
        grid-area: auto !important;
    }
    
    .blog-card.featured {
        grid-template-columns: 1fr;
    }
    
    .enterprise-card {
        text-align: center;
    }
    
    .enterprise-features {
        text-align: left;
    }
    
    .enterprise-cta {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-menu li {
        margin: 0.5rem;
    }
    
    .font-size-control {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .benefits-grid, 
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.inline {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .post-footer {
        flex-direction: column;
    }
    
    .post-tags, 
    .post-share {
        justify-content: center;
    }
    
    .about-grid, 
    .mission-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .pricing-toggle {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .modal-content {
        padding: 2rem;
    }
}
