@import url('backgrounds.css');

/* Global Styles */
:root {
    --primary-color: #1e88e5;
    --secondary-color: #0d47a1;
    --accent-color: #42a5f5;
    --light-color: #e3f2fd;
    --dark-color: #0a2351;
    --text-color: #333;
    --light-text: #fff;
    --gray-color: #f5f5f5;
    --dark-gray: #777;
    --border-color: #ddd;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

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

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

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

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

ul {
    list-style: none;
}

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

section {
    padding: 80px 0;
}

.services-list {
    padding: 5px 0;
}

.pricing {
    padding: 60px 0;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.primary-btn, .secondary-btn, .service-btn, .submit-btn, .read-more-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

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

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

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

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

.service-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 10px 20px;
    border: none;
    margin-top: 15px;
}

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

.submit-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

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

.read-more-btn {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 8px 15px;
    font-size: 0.9rem;
    border: none;
}

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

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    padding: 15px 0;
}

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

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--primary-color);
}

.menu {
    display: flex;
}

.menu li {
    margin-left: 25px;
}

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

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

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

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

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.header-contact {
    background-color: var(--primary-color);
    padding: 10px 0;
}

.header-contact .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.phone-btn, .cta-btn {
    color: var(--light-text);
    font-weight: 500;
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.phone-btn i, .cta-btn i {
    margin-right: 5px;
}

.phone-btn:hover, .cta-btn:hover {
    color: var(--light-color);
}

/* Mobile CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    z-index: 999;
}

.mobile-call, .mobile-email {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 12px;
    color: var(--light-text);
    font-weight: 500;
    text-align: center;
}

.mobile-call {
    background-color: var(--secondary-color);
}

.mobile-call i, .mobile-email i {
    margin-right: 8px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
    padding: 120px 0;
}

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

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons {
    margin-bottom: 40px;
}

.hero-buttons .primary-btn, .hero-buttons .secondary-btn, .hero-buttons .call-btn {
    margin: 0 10px 10px;
}

.pricing-cta {
    margin-bottom: 40px;
}

.call-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    background-color: var(--success-color);
    color: var(--light-text);
    border: 2px solid var(--success-color);
}

.call-btn i {
    margin-right: 8px;
}

.call-btn:hover {
    background-color: #3d8b40;
    border-color: #3d8b40;
    color: var(--light-text);
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

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

.feature i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: var(--accent-color);
}

/* Services Section */
.services {
    background-color: var(--gray-color);
    text-align: center;
}

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

.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

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

.service-card p {
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.service-card ul {
    margin-bottom: 20px;
}

.service-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.service-card ul li i {
    color: var(--success-color);
    margin-right: 10px;
    margin-top: 5px;
}

/* About Section */
.about {
    background-color: #fff;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 40px 0;
    gap: 20px;
}

.stat {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--dark-color);
}

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

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

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

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-box h4 {
    margin-bottom: 10px;
}

.feature-box p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

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

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding: 0 10px;
}

.author-name {
    font-weight: 600;
    color: var(--dark-color);
}

/* FAQ Section */
.faq {
    background-color: #fff;
}

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

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

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

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

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

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

/* Blog Preview Section */
.blog-preview {
    background-color: var(--gray-color);
    text-align: center;
}

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

.blog-post {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.blog-content {
    padding: 20px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin: 0 15px;
}

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

.blog-content p {
    color: var(--dark-gray);
    margin-bottom: 15px;
    flex-grow: 1;
}

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

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 10px;
}

.blog-button {
    margin-top: 20px;
}

/* Contact Section */
.contact {
    background-color: #fff;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-top: 40px;
    text-align: left;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-item p, .info-item a {
    color: var(--dark-gray);
}

.contact-form {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    max-width: 95%;
    margin: inherit;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

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

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

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

.footer-about {
    grid-column: span 2;
}

.footer-about h3, .footer-links h3, .footer-contact h3, .footer-info h3 {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-about p {
    margin-bottom: 20px;
    color: #ccc;
}

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

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

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

.footer-links ul, .footer-contact ul, .footer-info ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
}

.footer-links, .footer-contact, .footer-info {
    padding-left: 15px;
}

.footer-links a, .footer-contact a, .footer-info a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links a:hover, .footer-contact a:hover, .footer-info a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a {
    color: var(--accent-color);
}

/* Mobile Fixed Buttons */
.mobile-fixed-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.mobile-call-fixed, .mobile-contact-fixed {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 15px;
    color: var(--light-text);
    font-weight: 500;
}

.mobile-call-fixed {
    max-width: 200px;
    margin: 0 auto;
    border-radius: 5px;
}

.mobile-call-fixed {
    background-color: var(--secondary-color);
}

.mobile-contact-fixed {
    background-color: var(--primary-color);
}

.mobile-call-fixed i, .mobile-contact-fixed i {
    margin-right: 8px;
}

/* Blog Page Styles */
.blog-header {
    background: #fff;
    text-align: center;
    padding: 80px 0;
}

.blog-header h1 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.blog-content {
    padding: 80px 0;
}

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

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

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

.blog-post-image {
    height: 220px;
    overflow: hidden;
}

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

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

.blog-post-content {
    padding: 25px;
}

.blog-post-date {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-post-content h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.blog-post-content p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/blog-header-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
    padding: 40px 0;
}

.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
    padding: 80px 0;
}

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

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

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

/* Blog Single Post Styles */
.blog-single {
    padding: 80px 0;
}

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

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

.blog-category {
    color: var(--primary-color);
    font-weight: 500;
}

.blog-featured-image {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
}

.blog-text {
    margin-bottom: 40px;
}

.blog-text h2 {
    margin-top: 40px;
    font-size: 1.8rem;
}

.blog-text h3 {
    margin-top: 30px;
    font-size: 1.4rem;
}

.blog-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.blog-text ul, .blog-text ol {
    margin: 20px 0;
    padding-left: 20px;
}

.blog-text ul li, .blog-text ol li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
}

.blog-text ul {
    list-style-type: disc;
}

.blog-text ol {
    list-style-type: decimal;
}

.blog-cta {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    text-align: center;
}

.blog-cta h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

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

.blog-share {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.blog-share span {
    margin-right: 15px;
    font-weight: 500;
}

.share-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--primary-color);
    transition: var(--transition);
}

.share-icon:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.blog-related {
    margin-top: 40px;
}

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

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

.related-post {
    display: flex;
    flex-direction: column;
}

.related-post img {
    border-radius: 10px;
    margin-bottom: 15px;
    height: 150px;
    object-fit: cover;
}

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

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

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

/* Responsive Styles */
@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-about {
        grid-column: span 1;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 35, 81, 0.95);
    color: #fff;
    padding: 15px 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    margin: 0;
    padding: 10px 0;
    flex: 1;
    min-width: 300px;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    padding: 10px 0;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background-color: var(--secondary-color);
}

.cookie-settings {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

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

.cookie-save {
    background-color: var(--success-color);
    color: white;
}

.cookie-save:hover {
    background-color: #3d8b40;
}

.cookie-settings-panel {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.cookie-settings-panel h3 {
    margin-top: 0;
    color: white;
}

.cookie-option {
    margin: 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-option label {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 5px;
    cursor: pointer;
}

.cookie-option input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.cookie-option p {
    margin: 5px 0 0 28px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-settings-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-settings-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .menu.active {
        display: flex;
    }
    
    .menu li {
        margin: 10px 0;
    }
    
    .mobile-menu-icon {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .services-grid, .blog-posts, .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .stat {
        margin-bottom: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonial {
        min-width: 100%;
    }
    
    .mobile-cta {
        display: flex;
    }
    
    .mobile-fixed-buttons {
        display: flex;
    }
    
    footer {
        padding-bottom: 80px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-image, .blog-image {
        height: 180px;
    }
    
    .related-posts {
        grid-template-columns: 1fr;
    }
}

/* Pixabay Images Styles */
.pixabay-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.pixabay-image-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.pixabay-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.pixabay-image-credit {
    padding: 10px;
    background-color: var(--light-color);
    font-size: 0.8rem;
    text-align: center;
}

.pixabay-image-credit a {
    color: var(--dark-gray);
}

.loading-spinner {
    text-align: center;
    padding: 20px;
    color: var(--dark-gray);
}

/* Pricing Table Styles */
.pricing-table {
    margin-bottom: 30px;
    background: linear-gradient(to right, #f5f9ff, #e3f2fd);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.pricing-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.pricing-table th {
    background: var(--primary-color);
    color: white;
    padding: 12px 15px;
    text-align: left;
    border-radius: 5px;
}

.pricing-table td {
    padding: 12px 15px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.pricing-table tr td:first-child {
    width: 70%;
    font-weight: 500;
}

.pricing-table tr td:last-child {
    width: 30%;
    text-align: right;
    font-weight: 600;
    color: var(--secondary-color);
}

.pricing-category {
    margin-bottom: 40px;
}

.pricing-category h2 {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 20px;
}
