/* ====================
   GLOBAL STYLES
==================== */
:root {
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #777;
    --white: #ffffff;
    --black: #333333;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --section-spacing: 80px;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

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

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

ul {
    list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.section-description {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 50px;
    color: var(--dark-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

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

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

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

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

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

.btn-tertiary:hover {
    background-color: var(--medium-gray);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

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

.form-row .form-group {
    flex: 1;
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

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

/* ====================
   HEADER & NAVIGATION
==================== */
header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.logo span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 8px 5px;
    position: relative;
}

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

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

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
}

/* ====================
   HERO SECTION
==================== */
.hero {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.hero-content {
    flex: 1;
}

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

.hero-content p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

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

.hero-image {
    flex: 1;
    text-align: right;
}

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

/* ====================
   FEATURES SECTION
==================== */
.features {
    padding: var(--section-spacing) 0;
}

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

.feature-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--dark-gray);
}

/* Feature Details Page */
.feature-details {
    padding: var(--section-spacing) 0;
}

.feature-detail-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.feature-detail-item.reverse {
    flex-direction: row-reverse;
}

.feature-detail-content {
    flex: 1;
    display: flex;
    gap: 20px;
}

.feature-detail-icon {
    font-size: 40px;
    color: var(--primary-color);
}

.feature-detail-text {
    flex: 1;
}

.feature-detail-text h2 {
    margin-bottom: 20px;
}

.feature-detail-text p {
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.feature-detail-text ul {
    margin-bottom: 20px;
}

.feature-detail-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.feature-detail-text ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.feature-detail-image {
    flex: 1;
}

.feature-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* ====================
   DEMO SECTION
==================== */
.demo {
    padding: var(--section-spacing) 0;
    background-color: var(--light-gray);
}

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

.demo-content {
    flex: 1;
}

.demo-content h2 {
    margin-bottom: 20px;
}

.demo-content p {
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.demo-form input {
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 16px;
}

.demo-form input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.demo-image {
    flex: 1;
}

.demo-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* ====================
   TESTIMONIALS
==================== */
.testimonials {
    padding: var(--section-spacing) 0;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-item {
    min-width: 350px;
    flex: 1;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 30px;
}

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

.testimonial-content p {
    font-style: italic;
    color: var(--dark-gray);
}

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

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

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

.testimonial-author p {
    color: var(--dark-gray);
    font-size: 14px;
}

/* ====================
   PRICING SECTION
==================== */
.pricing {
    padding: var(--section-spacing) 0;
    background-color: var(--light-gray);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: var(--transition);
}

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

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
}

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

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 30px;
}

.price .amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
}

.price .period {
    font-size: 16px;
    color: var(--dark-gray);
}

.features-list {
    margin-bottom: 30px;
    text-align: left;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.features-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.enterprise-cta {
    text-align: center;
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.enterprise-cta h3 {
    margin-bottom: 15px;
}

.enterprise-cta p {
    margin-bottom: 25px;
    color: var(--dark-gray);
}

/* ====================
   FAQ SECTION
==================== */
.faq {
    padding: var(--section-spacing) 0;
}

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

.accordion-header {
    padding: 20px;
    background-color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h3 {
    margin-bottom: 0;
    font-size: 18px;
}

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

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.accordion-item.active .accordion-icon i.fa-plus:before {
    content: "\f068";
}

/* ====================
   CTA SECTION
==================== */
.cta {
    padding: var(--section-spacing) 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.cta .btn-primary:hover {
    background-color: var(--light-gray);
}

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

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

/* ====================
   BLOG SECTION
==================== */
.blog-content {
    padding: var(--section-spacing) 0;
    display: flex;
    gap: 50px;
}

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

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

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

.blog-image {
    display: block;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-details {
    padding: 20px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-details h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-details h2 a {
    color: var(--secondary-color);
}

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

.blog-details p {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.read-more {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

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

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

.blog-sidebar {
    flex: 1;
}

.sidebar-widget {
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.categories ul li {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 10px;
}

.categories ul li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.categories ul li a {
    display: flex;
    justify-content: space-between;
    color: var(--black);
}

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

.categories ul li a span {
    color: var(--dark-gray);
    font-size: 14px;
}

.recent-posts ul li {
    margin-bottom: 15px;
}

.recent-posts ul li:last-child {
    margin-bottom: 0;
}

.recent-posts ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.recent-posts ul li a img {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    object-fit: cover;
}

.recent-posts ul li a div h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--black);
    transition: var(--transition);
}

.recent-posts ul li a:hover div h4 {
    color: var(--primary-color);
}

.recent-posts ul li a div span {
    font-size: 13px;
    color: var(--dark-gray);
}

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

.tag-cloud a {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--light-gray);
    border-radius: 20px;
    font-size: 14px;
    color: var(--dark-gray);
    transition: var(--transition);
}

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

.sidebar-widget.newsletter p {
    margin-bottom: 20px;
    color: var(--dark-gray);
}

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

.sidebar-widget.cta {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.sidebar-widget.cta h3 {
    color: var(--white);
}

.sidebar-widget.cta h3::after {
    background-color: var(--white);
    left: 50%;
    transform: translateX(-50%);
}

.sidebar-widget.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

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

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

/* Blog Post Page */
.blog-post {
    padding: var(--section-spacing) 0;
}

.blog-post-content {
    display: flex;
    gap: 50px;
}

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

.blog-post-meta {
    display: flex;
    gap: 20px;
    font-size: 15px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.blog-post-meta i {
    margin-right: 5px;
}

.blog-post-image {
    margin-top: 20px;
    margin-bottom: 30px;
}

.blog-post-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.blog-post-body {
    margin-bottom: 40px;
}

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

.blog-post-body p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.blog-post-body ul, .blog-post-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

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

.blog-quote {
    background-color: var(--light-gray);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
}

.blog-quote p {
    margin-bottom: 10px;
    font-size: 18px;
}

.blog-quote cite {
    font-size: 15px;
    color: var(--dark-gray);
}

.blog-image-inline {
    margin: 30px 0;
}

.blog-image-inline img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.image-caption {
    text-align: center;
    font-size: 14px;
    color: var(--dark-gray);
    margin-top: 10px;
    font-style: italic;
}

.blog-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
}

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

.post-tags span {
    color: var(--dark-gray);
}

.post-tags a {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--light-gray);
    border-radius: 20px;
    font-size: 14px;
    color: var(--dark-gray);
    transition: var(--transition);
}

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

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

.post-share span {
    color: var(--dark-gray);
}

.social-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--light-gray);
    border-radius: 50%;
    color: var(--dark-gray);
    transition: var(--transition);
}

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

.blog-author {
    display: flex;
    gap: 20px;
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 40px;
}

.author-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.author-info h4 {
    margin-bottom: 10px;
}

.author-info p {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--dark-gray);
    transition: var(--transition);
}

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

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

.related-posts h3 {
    margin-bottom: 20px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-post {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.related-post h4 {
    padding: 15px;
    font-size: 16px;
    margin-bottom: 0;
}

.related-post-date {
    display: block;
    padding: 0 15px 15px;
    font-size: 14px;
    color: var(--dark-gray);
}

.post-comments {
    margin-bottom: 40px;
}

.post-comments h3 {
    margin-bottom: 30px;
}

.comment {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.comment-author-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-header h4 {
    margin-bottom: 0;
}

.comment-date {
    font-size: 14px;
    color: var(--dark-gray);
}

.comment-content p {
    margin-bottom: 10px;
}

.comment-actions a {
    font-size: 14px;
    font-weight: 600;
}

.comment-form h3 {
    margin-bottom: 20px;
}

/* ====================
   CONTACT PAGE
==================== */
.page-banner {
    padding: 100px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.page-banner h1 {
    color: var(--white);
    margin-bottom: 20px;
}

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

.contact-info {
    padding: var(--section-spacing) 0;
}

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

.contact-info-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-item h3 {
    margin-bottom: 15px;
}

.contact-info-item p {
    color: var(--dark-gray);
    line-height: 1.8;
}

.contact-form-section {
    padding: 0 0 var(--section-spacing);
}

.contact-form-container {
    display: flex;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.contact-form-content {
    flex: 1;
    padding: 40px;
}

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

.contact-form-content p {
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.contact-image {
    flex: 1;
    display: none;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-section {
    padding: 0 0 var(--section-spacing);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.contact-faq {
    background-color: var(--light-gray);
}

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

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

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-gray);
}

.thank-you-message i {
    font-size: 60px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.thank-you-message h2 {
    margin-bottom: 15px;
}

.thank-you-message p {
    margin-bottom: 25px;
    color: var(--dark-gray);
}

/* ====================
   DISCLAIMER PAGE
==================== */
.disclaimer-content {
    padding: var(--section-spacing) 0;
}

.policy-document {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.last-updated {
    margin-bottom: 30px;
    color: var(--dark-gray);
    font-style: italic;
}

.policy-intro {
    margin-bottom: 40px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.policy-section h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.policy-section p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.policy-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.policy-section a:hover {
    text-decoration: none;
}

/* ====================
   EDITOR'S NOTE
==================== */
.editor-note {
    padding: var(--section-spacing) 0;
    background-color: var(--light-gray);
}

.editor-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.editor-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.editor-text {
    flex: 1;
}

.editor-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.editor-signature {
    margin-top: 20px;
}

.editor-signature h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.editor-signature p {
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 0;
}

/* ====================
   COMPLAINT FORM
==================== */
.complaint-form {
    padding: var(--section-spacing) 0;
}

.complaint-form .container {
    max-width: 800px;
}

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

.complaint-form > p {
    margin-bottom: 30px;
    color: var(--dark-gray);
}

#complaintForm {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

/* ====================
   FOOTER
==================== */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 70px 0 0;
}

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

.footer-about .footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

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

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

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

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 15px;
}

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

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-newsletter p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-newsletter .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-newsletter .newsletter-form input {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 16px;
}

.footer-newsletter .newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

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

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

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

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

/* ====================
   COOKIE CONSENT
==================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

.cookie-content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cookie-content p {
    margin-bottom: 15px;
}

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

.cookie-content a {
    font-size: 14px;
    text-decoration: underline;
}

/* ====================
   RESPONSIVE STYLES
==================== */
@media screen and (min-width: 768px) {
    .contact-image {
        display: block;
    }
    
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    
    .cookie-content p {
        margin-bottom: 0;
        flex: 2;
    }
    
    .cookie-buttons {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 991px) {
    .hero .container,
    .demo .container,
    .feature-detail-item,
    .feature-detail-item.reverse,
    .contact-form-container,
    .blog-post-content,
    .editor-content {
        flex-direction: column;
    }
    
    .hero-image,
    .demo-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .feature-detail-image {
        margin-bottom: 30px;
    }
    
    .editor-content {
        text-align: center;
    }
    
    .editor-image {
        margin: 0 auto 20px;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100%;
        background-color: var(--white);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 200;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 80px 20px 20px;
    }
    
    nav ul li {
        margin: 0 0 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .features-grid,
    .contact-info-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-detail-item {
        margin-bottom: 50px;
    }
    
    .feature-detail-content {
        flex-direction: column;
    }
    
    .feature-detail-icon {
        margin-bottom: 15px;
    }
    
    .accordion-header h3 {
        font-size: 16px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-content {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .policy-document {
        padding: 25px;
    }
    
    .blog-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin-bottom: 20px;
    }
    
    .author-image img {
        margin: 0 auto;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .comment {
        flex-direction: column;
        text-align: center;
    }
    
    .comment-author-image {
        margin-bottom: 15px;
    }
    
    .comment-author-image img {
        margin: 0 auto;
    }
    
    .blog-post-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media screen and (max-width: 480px) {
    .blog-post-meta,
    .post-tags {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cookie-content {
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
}
