/* Base Styles and Typography */
:root {
    --primary-color: #2b55cc;
    --secondary-color: #0f2d92;
    --accent-color: #4d7bf3;
    --dark-color: #1a1a2e;
    --light-color: #f5f5f5;
    --gray-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --font-main: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
    --font-code: 'Courier New', monospace;
    --transition-speed: 0.3s;
    --border-radius: 4px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

p {
    margin-bottom: 1rem;
}

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

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

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

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

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

/* Icons */
[class^="icon-"] {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    vertical-align: middle;
    margin-right: 0.3em;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--box-shadow);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

header h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

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

nav li {
    margin-left: 1.5rem;
}

nav a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    display: inline-block;
}

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

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

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

/* Hero Section */
.hero-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: white;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: bold;
    transition: all var(--transition-speed);
    text-align: center;
}

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

/* Features Section */
.features {
    padding: 4rem 2rem;
    text-align: center;
}

.features h2 {
    margin-bottom: 3rem;
    font-size: 2rem;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

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

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

/* Latest Posts Section */
.latest-posts {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.latest-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.posts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.post-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: transform var(--transition-speed);
}

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

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

.post-card h3 {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.post-card p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--gray-color);
}

.read-more {
    display: inline-block;
    margin: 0 1.5rem 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

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

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

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

.view-all a {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color var(--transition-speed);
}

.view-all a:hover {
    background-color: var(--secondary-color);
}

/* Quote of the Day */
.quote-of-the-day {
    padding: 4rem 2rem;
    background-color: var(--dark-color);
    color: white;
    text-align: center;
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

blockquote:before,
blockquote:after {
    content: '"';
    font-size: 4rem;
    position: absolute;
    color: var(--primary-color);
    opacity: 0.3;
}

blockquote:before {
    top: -2rem;
    left: -2rem;
}

blockquote:after {
    bottom: -4rem;
    right: -2rem;
}

blockquote cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: #aaa;
}

/* Glossary Section */
.glossary {
    padding: 4rem 2rem;
}

.glossary h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.glossary-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.glossary-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--box-shadow);
}

.glossary-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 2rem 1rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo, .footer-links, .footer-legal, .footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    border-radius: 50%;
}

footer h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer li {
    margin-bottom: 0.8rem;
}

footer a {
    color: #aaa;
    transition: color var(--transition-speed);
}

footer a:hover {
    color: white;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: white;
    transition: background-color var(--transition-speed);
}

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

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #aaa;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: flex;
    justify-content: center;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

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

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background-color var(--transition-speed);
}

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

.cookie-btn.customize, .cookie-btn.decline {
    background-color: #f1f1f1;
    color: var(--dark-color);
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-policy {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Page Banner */
.page-banner {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.page-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Page Styles */
.blog-page {
    display: flex;
    flex-wrap: wrap;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.blog-posts {
    flex: 3;
    min-width: 300px;
}

.blog-sidebar {
    flex: 1;
    min-width: 250px;
}

.blog-post {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: transform var(--transition-speed);
}

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

.blog-post img {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
}

.post-content {
    flex: 2;
    min-width: 300px;
    padding: 2rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-color);
}

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

.sidebar-widget h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #eee;
}

.sidebar-widget ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-widget li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed #eee;
}

.sidebar-widget li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.popular-posts li {
    padding-bottom: 1rem;
}

.popular-posts a {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.popular-posts h4 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.popular-posts span {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
}

.newsletter-form button {
    padding: 0.8rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

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

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #f1f1f1;
    color: var(--dark-color);
    border-radius: 50px;
    font-size: 0.9rem;
    transition: background-color var(--transition-speed);
}

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

/* About Page Styles */
.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-content {
    flex: 2;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

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

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    background-color: white;
    padding-bottom: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed);
}

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

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin-bottom: 1.5rem;
}

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

.team-member p {
    color: var(--gray-color);
    padding: 0 1.5rem;
}

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

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

.social-links a {
    color: var(--gray-color);
    transition: color var(--transition-speed);
}

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

.about-values {
    margin-bottom: 4rem;
}

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

.values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.value-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Contact Page Styles */
.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-map iframe {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-form-section {
    margin-bottom: 4rem;
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.form-group.full-width {
    flex: 100%;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-main);
}

.form-group textarea {
    resize: vertical;
}

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

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

.form-group.checkbox label {
    margin-bottom: 0;
}

.submit-btn {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-speed);
    margin-top: 1rem;
}

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

.faq-section {
    margin-bottom: 4rem;
}

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

.faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

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

.icon-success {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    position: relative;
}

.icon-success:before,
.icon-success:after {
    content: '';
    position: absolute;
    background-color: white;
}

.icon-success:before {
    width: 25px;
    height: 5px;
    transform: rotate(45deg);
    left: 17px;
    top: 42px;
}

.icon-success:after {
    width: 40px;
    height: 5px;
    transform: rotate(-45deg);
    left: 25px;
    top: 38px;
}

.modal-btn {
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 2rem;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }
    
    nav {
        margin-top: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav li {
        margin: 0.5rem 0;
        margin-left: 0;
    }
    
    .hero-section {
        padding: 3rem 1rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .features, .latest-posts, .glossary, .quote-of-the-day {
        padding: 3rem 1rem;
    }
    
    .feature-card, .post-card, .glossary-item {
        min-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .blog-sidebar {
        order: -1;
        width: 100%;
    }
    
    .contact-form-section {
        padding: 2rem 1rem;
    }
    
    .modal-content {
        padding: 2rem 1rem;
    }
}

/* Dark Mode (Optional - can be toggled via JavaScript) */
body.dark-mode {
    background-color: #121212;
    color: #eaeaea;
}

body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, body.dark-mode h4, body.dark-mode h5, body.dark-mode h6 {
    color: #f5f5f5;
}

body.dark-mode header, body.dark-mode .feature-card, body.dark-mode .post-card,
body.dark-mode .glossary-item, body.dark-mode .sidebar-widget,
body.dark-mode .blog-post, body.dark-mode .team-member,
body.dark-mode .value-card, body.dark-mode .contact-form-section,
body.dark-mode .faq-item, body.dark-mode .modal-content {
    background-color: #1e1e1e;
    color: #eaeaea;
}

body.dark-mode header {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

body.dark-mode footer {
    background-color: #0a0a0a;
}

body.dark-mode .cookie-banner, body.dark-mode .newsletter-form input,
body.dark-mode .form-group input, body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background-color: #2d2d2d;
    color: #eaeaea;
    border-color: #444;
}

body.dark-mode .tag-cloud a, body.dark-mode .cookie-btn.customize, body.dark-mode .cookie-btn.decline {
    background-color: #333;
    color: #eaeaea;
}

body.dark-mode nav a, body.dark-mode .feature-card h3, body.dark-mode .post-card h3 {
    color: #f5f5f5;
}

body.dark-mode a {
    color: var(--accent-color);
}

body.dark-mode a:hover {
    color: #6b8ff7;
}

body.dark-mode .hero-section, body.dark-mode .page-banner {
    background: linear-gradient(135deg, #4a5bcf 0%, #233b8c 100%);
}

/* Custom icon styles to mimic font icons without requiring an icon font */
.icon-home:before {
    content: '🏠';
}
.icon-info:before {
    content: 'ℹ️';
}
.icon-blog:before {
    content: '📝';
}
.icon-contact:before {
    content: '📞';
}
.icon-compress:before {
    content: '🗜️';
}
.icon-security:before {
    content: '🔒';
}
.icon-format:before {
    content: '📁';
}
.icon-interface:before {
    content: '🖥️';
}
.icon-location:before {
    content: '📍';
}
.icon-phone:before {
    content: '📱';
}
.icon-email:before {
    content: '✉️';
}
.icon-clock:before {
    content: '🕒';
}
.icon-accuracy:before {
    content: '✓';
}
.icon-clarity:before {
    content: '💡';
}
.icon-usefulness:before {
    content: '🛠️';
}
.icon-community:before {
    content: '👥';
}
