/* Base Styles */
:root {
    --primary-color: #1e88e5;
    --primary-dark: #1565c0;
    --primary-light: #42a5f5;
    --secondary-color: #0d47a1;
    --accent-color: #29b6f6;
    --text-primary: #212121;
    --text-secondary: #757575;
    --text-light: #f5f5f5;
    --background-light: #ffffff;
    --background-off: #f9f9f9;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --transition: all 0.3s ease;
}

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

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

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

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

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

ul, ol {
    list-style-position: inside;
    margin-bottom: 1rem;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

section {
    padding: 60px 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

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

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

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: #083378;
    color: var(--text-light);
}

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

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

.btn-link {
    background-color: transparent;
    color: var(--primary-color);
    padding: 0;
    text-decoration: underline;
}

.btn-link:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Header Styles */
header {
    background-color: var(--background-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

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

nav li {
    margin-left: 30px;
}

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

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

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

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

.header-buttons {
    display: flex;
    align-items: center;
}

/* Hero Section Styles */
.hero {
    background-color: var(--background-light);
    padding: 80px 0;
}

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

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-slogan {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-image {
    flex: 1;
    max-width: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Features Section Styles */
.features {
    background-color: var(--background-off);
    text-align: center;
}

.features h2 {
    margin-bottom: 50px;
}

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

.feature-card {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(30, 136, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

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

/* Demo Section Styles */
.demo {
    text-align: center;
}

.demo h2 {
    margin-bottom: 15px;
}

.demo p {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.dashboard-preview {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.dashboard-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.dashboard-card {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.dashboard-chart {
    height: 200px;
}

/* Testimonials Section Styles */
.testimonials {
    background-color: var(--background-off);
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 50px;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
}

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

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

.testimonial-author h4 {
    margin-bottom: 5px;
}

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

/* Demo Form Section Styles */
.demo-form {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7ed 100%);
}

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

.form-container {
    flex: 1;
    max-width: 500px;
}

.form-container h2 {
    margin-bottom: 15px;
}

.form-container p {
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    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: 4px;
    font-size: 16px;
    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(30, 136, 229, 0.2);
}

.form-image {
    flex: 1;
    max-width: 50%;
}

.form-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Recent Posts Section Styles */
.recent-posts {
    text-align: center;
}

.recent-posts h2 {
    margin-bottom: 50px;
}

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

.post-card {
    background-color: var(--background-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

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

.post-content {
    padding: 20px;
}

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

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

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

.read-more svg {
    margin-left: 5px;
    transition: var(--transition);
}

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

.view-all {
    margin-top: 20px;
}

/* Footer Styles */
footer {
    background-color: #0d2c54;
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info {
    flex: 2;
    min-width: 300px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
}

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

.footer-links {
    flex: 1;
    display: flex;
    gap: 40px;
}

.footer-links-column h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

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

.footer-links-column li {
    margin-bottom: 10px;
}

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

.footer-links-column a:hover {
    color: var(--text-light);
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-social h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

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

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

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

.social-icons svg {
    color: var(--text-light);
}

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

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--text-light);
    padding: 15px 0;
    z-index: 1001;
    display: none;
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content p {
    margin-bottom: 0;
    margin-right: 20px;
    flex: 1;
}

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

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

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

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

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

.modal-content h2 {
    margin-bottom: 15px;
}

.modal-content p {
    margin-bottom: 20px;
}

/* About Page Styles */
.page-header {
    background-color: var(--background-off);
    text-align: center;
    padding: 80px 0;
}

.page-header h1 {
    margin-bottom: 15px;
}

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

.about-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    max-width: 50%;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.our-mission {
    background-color: var(--background-off);
}

.mission-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.value-item {
    text-align: center;
    padding: 20px;
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(30, 136, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

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

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
}

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

.team-member {
    background-color: var(--background-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
}

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

.team-member p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

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

.member-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(30, 136, 229, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.member-social svg {
    color: var(--secondary-color);
}

.member-social a:hover svg {
    color: var(--text-light);
}

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

.achievements h2 {
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.achievement-item {
    padding: 20px;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.achievement-text {
    font-size: 1.1rem;
}

.partners {
    background-color: var(--background-off);
    text-align: center;
}

.partners h2 {
    margin-bottom: 40px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-logo {
    padding: 20px;
    background-color: var(--background-light);
    border-radius: 8px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
}

.cta {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    color: var(--text-light);
    text-align: center;
}

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

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

.cta-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Blog Page Styles */
.blog-content {
    padding-top: 40px;
}

.blog-grid {
    display: flex;
    gap: 40px;
}

.blog-main {
    flex: 2;
}

.blog-post {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.blog-post:last-child {
    border-bottom: none;
}

.blog-post-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.post-meta-item {
    display: flex;
    align-items: center;
}

.post-meta-item svg {
    margin-right: 5px;
}

.blog-post-content h2 {
    margin-bottom: 15px;
}

.blog-post-content h2 a {
    color: var(--secondary-color);
    transition: var(--transition);
}

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

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

.sidebar-widget {
    background-color: var(--background-off);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.search-form {
    display: flex;
}

.search-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.search-form button {
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.categories-widget ul {
    list-style: none;
    margin: 0;
}

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

.categories-widget a {
    display: flex;
    justify-content: space-between;
    color: var(--text-primary);
}

.categories-widget a:hover {
    color: var(--primary-color);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.popular-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

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

.popular-post-info span {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.cta-widget {
    background-color: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
}

.cta-widget h3 {
    color: var(--text-light);
    border-bottom: none;
}

.cta-widget p {
    margin-bottom: 20px;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-cloud a {
    background-color: var(--background-light);
    color: var(--text-secondary);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.9rem;
}

.tags-cloud a:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.subscribe-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px 0 0 4px;
    color: var(--text-light);
}

.subscribe-form button {
    border-radius: 0 4px 4px 0;
    border: none;
}

/* Blog Single Post Styles */
.blog-post-single {
    padding-top: 40px;
    padding-bottom: 40px;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

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

.post-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.post-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.post-content ul li, 
.post-content ol li {
    margin-bottom: 10px;
}

.author-note {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--background-off);
    border-left: 3px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
}

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

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

.post-tags a {
    background-color: var(--background-off);
    color: var(--text-secondary);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.9rem;
}

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

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.post-navigation-prev,
.post-navigation-next {
    max-width: 48%;
}

.post-navigation-next {
    text-align: right;
}

.post-navigation a span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.post-navigation a h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.related-posts {
    background-color: var(--background-off);
    text-align: center;
}

.related-posts h2 {
    margin-bottom: 40px;
}

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

.related-post {
    background-color: var(--background-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.related-post h3 {
    padding: 0 20px;
    margin-top: 20px;
    font-size: 1.2rem;
}

.related-post p {
    padding: 0 20px 20px;
    color: var(--text-secondary);
}

.disclaimer {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(255, 152, 0, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-content {
    padding-top: 40px;
}

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

.contact-form-container {
    flex: 2;
}

.contact-form-container h2 {
    margin-bottom: 15px;
}

.contact-form {
    margin-top: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
}

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

.form-checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

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

.contact-info-box {
    background-color: var(--background-off);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-icon {
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(30, 136, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-item a {
    display: block;
}

.contact-hours {
    background-color: var(--background-off);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-hours ul {
    list-style: none;
    margin: 0;
}

.contact-hours li {
    margin-bottom: 10px;
}

.contact-social {
    background-color: var(--background-off);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.contact-social .social-icons {
    justify-content: center;
    margin-top: 15px;
}

.contact-map {
    padding-top: 0;
}

.contact-map h2 {
    margin-bottom: 30px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

.faq-toggle {
    transition: var(--transition);
}

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

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

.checklist {
    margin: 20px 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background-color: var(--background-off);
    padding: 10px;
    border-radius: 4px;
}

.checklist-item input {
    margin-right: 10px;
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    border-right: 0.15em solid var(--primary-color);
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: 0.1em;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-color) }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .dashboard-overlay {
        position: static;
        background-color: var(--background-off);
        padding: 20px;
    }

    .dashboard-card {
        width: 100%;
        max-width: none;
    }

    .about-grid {
        flex-direction: column;
    }

    .about-image {
        max-width: 100%;
    }

    .contact-grid {
        flex-direction: column;
    }

    .demo-form .container {
        flex-direction: column;
    }

    .form-container {
        max-width: 100%;
    }

    .form-image {
        max-width: 100%;
    }

    .blog-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .header-inner {
        flex-direction: column;
        gap: 20px;
    }

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

    nav li {
        margin-left: 0;
    }

    .testimonial-slider {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        margin-top: 15px;
        justify-content: center;
    }

    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }

    .post-navigation-prev,
    .post-navigation-next {
        max-width: 100%;
    }

    .post-navigation-next {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .feature-card,
    .value-item {
        padding: 15px;
    }

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

    .hero-slogan {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .header-buttons {
        width: 100%;
    }

    .header-buttons .btn {
        width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

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

    .cookie-buttons .btn {
        width: 100%;
    }
}
