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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: rgb(255, 153, 0);
    --secondary-dark: #cc7a00;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.logo{display:flex;align-items:center;gap:.6rem}
.logo-img{height:38px;width:auto;display:block}

h2.name {
  color: var(--secondary-color);
}

.site-title__accent {
  color: var(--secondary-color);
}

.phone-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 700;
}
.phone-link:hover { text-decoration: underline; }

.email-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 700;
}
.email-link:hover { text-decoration: underline; }


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

img {
    max-width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ===== Buttons ===== */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

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

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary--contact:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

/* ===== Navigation ===== */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

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

.nav-menu a:not(.btn-primary):hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 6px;
    margin-left: 0.5rem;
}

.nav-menu .btn-primary:hover {
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-profile-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero .btn-secondary {
    border-color: white;
    color: white;
}

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

.hero-social {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-social p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.hero-social-btn.facebook {
    background: rgba(24, 119, 242, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-social-btn.facebook:hover {
    background: #1877f2;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.hero-social-btn.tiktok {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-social-btn.tiktok:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.hero-social-btn i {
    font-size: 1.2rem;
}

/* ===== Services Section ===== */
.services {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Why Choose Us ===== */
.why-choose {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.benefit {
    text-align: center;
    padding: 1.5rem;
}

.benefit i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

/* ===== CTA Section ===== */
.cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ea580c 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===== Social Media Section ===== */
.social-media-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.social-media-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.social-media-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.social-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: height 0.3s ease;
}

.facebook-card::before {
    background: #1877f2;
}

.tiktok-card::before {
    background: linear-gradient(135deg, #00f2ea 0%, #ff0050 50%, #000000 100%);
}

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

.social-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.facebook-card .social-icon {
    background: #1877f2;
}

.tiktok-card .social-icon {
    background: linear-gradient(135deg, #00f2ea 0%, #ff0050 50%, #000000 100%);
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
}

.social-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.social-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.follow-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.facebook-card .follow-btn {
    background: #1877f2;
    color: white;
}

.tiktok-card .follow-btn {
    background: linear-gradient(135deg, #00f2ea 0%, #ff0050 100%);
    color: white;
}

.social-card:hover .follow-btn {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.social-feed-preview {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-feed-preview p {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
}

.social-feed-preview i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* ===== Contact Section ===== */
.contact {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.contact-grid {
  display: flex;               /* not grid */
  flex-direction: column;
  align-items: center;         /* center horizontally */
  justify-content: center;     /* center vertically if the container has height */
  gap: 1.5rem;                 /* spacing between items */
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}


.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.3rem;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background-color: var(--primary-dark);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

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

.contact-form button {
    width: 100%;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-col p {
    color: #9ca3af;
    line-height: 1.7;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

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

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

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

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

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 1rem 0;
}

.currency {
    font-size: 1.2rem;
    margin-right: 5px;
    margin-top: 10px;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

.features-list {
    padding: 1.5rem 0;
}

.features-list li {
    padding: 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list i {
    color: var(--success-color);
}

.features-list .not-included i {
    color: var(--text-light);
}

.features-list .not-included {
    color: var(--text-light);
}

.commercial-pricing {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
}

.commercial-pricing h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.commercial-card {
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.commercial-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

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

.commercial-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.commercial-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
}

.commercial-cta {
    margin-top: 2rem;
}

.additional-services {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.additional-services h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.services-table {
    max-width: 800px;
    margin: 0 auto;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.service-row:last-child {
    border-bottom: none;
}

.service-name {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-faq {
    background: white;
    padding: 3rem;
    border-radius: 12px;
}

.pricing-faq h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Articles Section ===== */
.articles-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.articles-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.article-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-3px);
}

.article-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    background-color: #f8f9fa;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    justify-content: center;
}

.article-category {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    color: white;
    font-weight: 500;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.article-category:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.article-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.article-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.article-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
}

.featured-article .article-image {
    height: 400px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.page-link {
    padding: 10px 15px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-dark);
    font-weight: 500;
}

.page-link:hover,
.page-link.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ===== Sidebar ===== */
.articles-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

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

.sidebar-widget h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.category-list li {
    margin-bottom: 0.8rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    padding: 8px 0;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: var(--primary-color);
}

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

.category-list span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.popular-article-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.popular-article-item:last-child {
    border-bottom: none;
}

.popular-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.popular-article-item a {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.popular-article-item a:hover {
    color: var(--primary-color);
}

.popular-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.newsletter-form input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.newsletter-form button {
    width: 100%;
    background-color: white;
    color: var(--primary-color);
}

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

.social-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-feed-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.social-feed-item i {
    font-size: 1.5rem;
}

/* ===== Impressum Section ===== */
.impressum-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.impressum-content {
    max-width: 900px;
    margin: 0 auto;
}

.impressum-block {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.impressum-block h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.impressum-block h3 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.info-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-item p, .info-item a {
    color: var(--text-light);
    line-height: 1.7;
}

.info-item a:hover {
    color: var(--primary-color);
}

.certification-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cert-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.cert-item i {
    color: var(--success-color);
    font-size: 1.5rem;
}

.cert-item strong {
    display: block;
    margin-bottom: 0.3rem;
}

.cert-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.regulatory-content p,
.data-protection-content p,
.dispute-content p,
.terms-content p,
.copyright-content p,
.technical-content p,
.disclaimer-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.regulatory-content ul,
.data-protection-content ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.regulatory-content li,
.data-protection-content li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    list-style: disc;
}

.legal-contact-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}


/* ===== Article Template Styles ===== */
.article-header {
    background: white;
    padding: 40px 0 30px;
    border-bottom: 1px solid var(--border-color);
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.article-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-breadcrumb a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.article-breadcrumb i {
    font-size: 0.7rem;
    color: var(--text-light);
}

.article-breadcrumb span {
    color: var(--text-light);
}

.article-header h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    font-weight: 700;
    max-width: 900px;
    color: var(--text-dark);
}

.article-meta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-info div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-meta-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.article-meta-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: var(--text-light);
    font-weight: 500;
}

.article-meta-details i {
    color: var(--primary-color);
    font-size: 1rem;
}


.article-meta-details i {
    font-size: 0.9rem;
}

.article-content-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    max-width: 1400px;
}

.article-main {
    background: white;
    padding: 4rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
}

.article-featured-image {
    margin: -4rem -4rem 4rem;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    background-color: #f8f9fa;
}

.article-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.lead {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-light);
    font-weight: 400;
}

.article-body {
    line-height: 1.9;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.article-body h2 {
    font-size: 2.2rem;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body h3 {
    font-size: 1.7rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
}

.article-body p {
    margin-bottom: 1.8rem;
    line-height: 1.9;
}

.article-body ul,
.article-body ol {
    margin: 2rem 0;
    padding-left: 2.5rem;
}

.article-body li {
    margin-bottom: 1rem;
    line-height: 1.9;
    font-size: 1.1rem;
}

.article-body ul li {
    list-style: disc;
    padding-left: 0.5rem;
}

.article-body ol li {
    list-style: decimal;
    padding-left: 0.5rem;
}

.article-body ol li strong {
    color: var(--primary-color);
}

.article-body blockquote {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 5px solid var(--primary-color);
    font-style: italic;
    border-radius: 8px;
}

.article-body blockquote p {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-body blockquote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.article-image-inline {
    margin: 3rem 0;
}

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

.image-caption {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

.article-callout {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    border-left: 5px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
}

.article-callout h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #92400e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.article-callout i {
    font-size: 1.5rem;
}

.article-callout p {
    color: #92400e;
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-tags {
    margin-top: 4rem;
    margin-bottom: 1rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.article-tags strong {
    font-size: 1rem;
    color: var(--text-dark);
}

.tag {
    display: inline-block;
    padding: 8px 18px;
    background: var(--bg-light);
    border-radius: 25px;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-weight: 500;
}

.tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.article-share {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.article-share h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.share-btn i {
    font-size: 1.1rem;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.email {
    background: #6b7280;
}

.author-bio {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    display: flex;
    gap: 2.5rem;
    border: 1px solid #bfdbfe;
}

.author-bio-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 3rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.author-bio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-bio-content h4 {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.author-bio-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.author-bio-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

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

.author-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.author-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.related-articles {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 3px solid var(--border-color);
}

.related-articles h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

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

.related-article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.related-article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.related-article-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-article-card:hover img {
    transform: scale(1.05);
}

.related-article-card h4 {
    padding: 1.5rem;
    padding-bottom: 0.8rem;
    font-size: 1.15rem;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.4;
    font-weight: 600;
}

.related-article-card .read-time {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.related-content {
    padding: 1.5rem;
}

.related-category {
    display: inline-block;
    padding: 5px 12px;
    background: var(--primary-color);
    color: white;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-content h4 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    line-height: 1.4;
    font-weight: 600;
}

.related-date {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.related-date::before {
    content: '📅';
    font-size: 0.9rem;
}

.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

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

.sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.toc-widget h3 {
    color: var(--primary-color);
}

.table-of-contents {
    list-style: none;
}

.table-of-contents li {
    margin-bottom: 0;
}

.table-of-contents a {
    color: var(--text-dark);
    display: block;
    padding: 12px 16px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-size: 0.95rem;
}

.table-of-contents a:hover {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    background: var(--bg-light);
    padding-left: 20px;
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta-widget h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-widget p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

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

.cta-widget .btn-primary:hover {
    background: var(--bg-light);
    transform: scale(1.05);
}

/* ===== Responsive Design ===== */
/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .articles-layout {
        grid-template-columns: 1fr;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .articles-sidebar,
    .article-sidebar {
        position: static;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .social-media-cards {
        grid-template-columns: 1fr;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .author-bio-image {
        margin: 0 auto;
    }

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

    .related-grid,
.related-articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        gap: 0.5rem;
    }

    .nav-menu.active {
        display: flex;
    }

    /* Hero - More compact */
    .hero {
        padding: 50px 0 40px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-profile-image {
        width: 120px;
        height: 120px;
        margin-bottom: 1.5rem;
    }

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

    .hero-buttons {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-social {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .hero-social p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .hero-social-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-social-btn {
        width: 180px;
        justify-content: center;
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    /* Article meta - compact display */
    .article-meta {
        gap: 0.5rem;
        margin-bottom: 1.2rem;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 0.3rem;
        padding-right: 2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        position: relative;
    }
    
    .article-meta::-webkit-scrollbar {
        display: none;
    }
    
    /* Optional: Add scroll hint text */
    .hero-content .article-meta::before {
        content: '← Swipe to see more';
        position: absolute;
        right: 10px;
        top: -25px;
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 500;
        pointer-events: none;
        animation: fadeInOut 3s ease-in-out infinite;
    }
    
    @keyframes fadeInOut {
        0%, 100% { opacity: 0; }
        50% { opacity: 1; }
    }

    .article-category {
        font-size: 0.7rem;
        padding: 5px 12px;
        flex-shrink: 0;
    }

    /* Services - More compact */
    .services {
        padding: 50px 0;
    }

    .services h2,
    .why-choose h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Why Choose - compact */
    .why-choose {
        padding: 50px 0;
    }

    .benefit {
        padding: 1rem;
    }

    .benefit i {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .benefit h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .benefit p {
        font-size: 0.9rem;
    }

    /* Social Media Section - compact */
    .social-media-section {
        padding: 50px 0;
    }

    .social-media-section h2 {
        font-size: 1.75rem;
    }

    .social-media-cards {
        margin: 2rem 0;
        gap: 1.5rem;
    }

    .social-card {
        padding: 2rem 1.5rem;
    }

    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .social-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .social-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .follow-btn {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .social-feed-preview p {
        font-size: 0.9rem;
    }

    /* CTA Section - compact */
    .cta {
        padding: 40px 0;
    }

    .cta h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Pricing - compact */
    .pricing-section {
        padding: 50px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-header h3 {
        font-size: 1.3rem;
    }

    .price .amount {
        font-size: 2.5rem;
    }

    .features-list li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    /* Contact Section - compact */
    .contact {
        padding: 50px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-item {
        font-size: 0.9rem;
    }

    /* Footer - compact */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer p,
    .footer li {
        font-size: 0.9rem;
    }

    /* Articles - compact */
    .article-image {
        height: 200px;
    }

    .featured-article .article-image {
        height: 250px;
    }

    .article-header h1 {
        font-size: 1.6rem;
    }

    .article-meta-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .article-meta-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .article-main {
        padding: 1.5rem;
    }

    .article-featured-image {
        margin: -1.5rem -1.5rem 1.5rem;
    }

    .article-featured-image img {
        height: 200px;
    }

    .article-body h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .article-body h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .article-body p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .article-body ul,
    .article-body ol {
        margin-bottom: 1rem;
    }

    .article-body li {
        font-size: 0.95rem;
    }

    .share-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .share-btn {
        justify-content: center;
    }

    .author-bio {
        flex-direction: column;
        padding: 1.5rem;
    }

    .author-bio-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin: 0 auto;
    }

    /* Impressum - compact */
    .impressum-section {
        padding: 50px 0;
    }

    .impressum-block {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .impressum-block h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-item {
        font-size: 0.9rem;
    }

    /* Page Header - compact */
    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens - even more compact */
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 0 30px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }

    h2 {
        font-size: 1.5rem;
    }

    .services,
    .why-choose,
    .contact,
    .pricing-section,
    .articles-section,
    .impressum-section,
    .article-content-section,
    .social-media-section {
        padding: 40px 0;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .service-card,
    .pricing-card,
    .impressum-block {
        padding: 1.25rem;
    }

    .service-icon,
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .service-card h3,
    .benefit h3 {
        font-size: 1.1rem;
    }

    .service-card p,
    .benefit p {
        font-size: 0.85rem;
    }

    .social-card {
        padding: 1.5rem 1.25rem;
    }

    .hero-social-btn {
        width: 160px;
        padding: 7px 14px;
        font-size: 0.85rem;
    }

    .article-header {
        padding: 30px 0 35px;
    }

    .article-header h1 {
        font-size: 1.4rem;
    }

    .article-main {
        padding: 1.25rem;
    }

    .article-featured-image {
        margin: -1.25rem -1.25rem 1.25rem;
    }

    .article-featured-image img {
        height: 180px;
    }

    .article-body blockquote {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .lead {
        font-size: 1rem;
    }

    .article-meta-details {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .btn-primary, .btn-secondary {
        padding: 9px 18px;
        font-size: 0.85rem;
    }

    .cta {
        padding: 35px 0;
    }

    .footer {
        padding: 35px 0 15px;
    }

    .footer-grid {
        gap: 1.5rem;
    }

    .commercial-card {
        padding: 1.25rem;
    }

    .commercial-price {
        font-size: 1.1rem;
    }

    .article-category {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
}
/* ===== Pricing Page Specific Styles ===== */
.pricing-info-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    border: 2px solid var(--primary-color);
}

.pricing-info-box h2 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.pricing-info-box h2 i {
    color: var(--primary-color);
}

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

.factor-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.factor-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.factor-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.factor-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.factor-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.important-note {
    background: var(--secondary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
}

.important-note i {
    font-size: 2rem;
    flex-shrink: 0;
}

.important-note p {
    margin: 0;
    font-size: 1.1rem;
}

.typical-pricing {
    margin-bottom: 4rem;
}

.typical-pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.typical-pricing .pricing-card {
    max-width: 600px;
    margin: 0 auto;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: right;
}

.service-time {
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.service-area {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.service-area h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-area-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.service-area-info i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.service-area-info h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-area-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-area-info p.note {
    background: #fef3c7;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-area-info p.note i {
    font-size: 1.25rem;
    margin: 0;
}

.service-area-map {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

#map {
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.map-placeholder {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

.radius-circle {
    position: absolute;
    border: 3px dashed rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.pricing-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ea580c 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.pricing-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

.cta-buttons .btn-primary {
    background-color: white;
    color: var(--secondary-color);
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* ===== Responsive Pricing Page ===== */
@media (max-width: 768px) {
    .pricing-section {
        padding: 40px 0;
    }

    .pricing-info-box {
        padding: 2rem 1.5rem;
    }

    .pricing-info-box h2 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .pricing-factors {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .factor-item {
        padding: 1.25rem;
    }

    .factor-item i {
        font-size: 2rem;
    }

    .important-note {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .important-note p {
        font-size: 1rem;
    }

    .typical-pricing {
        margin-bottom: 2rem;
    }

    .typical-pricing h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .typical-pricing .pricing-card {
        padding: 1.5rem;
    }

    .typical-pricing .pricing-header h3 {
        font-size: 1.3rem;
    }

    .typical-pricing .price .amount {
        font-size: 2rem;
    }

    .typical-pricing .features-list {
        margin-bottom: 1.5rem;
    }

    .typical-pricing .features-list li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .additional-services {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }

    .additional-services h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .service-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
    }

    .service-name {
        gap: 0.75rem;
        width: 100%;
    }

    .service-name span {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .service-price {
        text-align: left;
        margin-left: 0;
        width: 100%;
        padding-left: 2.3rem;
    }

    .service-details {
        align-items: flex-start;
        text-align: left;
        gap: 0.25rem;
    }

    .price-text {
        font-weight: 600;
        color: var(--primary-color);
        font-size: 1rem;
    }

    .service-time {
        font-size: 0.85rem;
        color: var(--text-light);
    }

    .service-note {
        font-size: 0.8rem;
        color: var(--text-light);
    }

    .pricing-faq {
        margin-bottom: 2rem;
    }

    .pricing-faq h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .faq-grid {
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }

    .service-area {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }

    .service-area h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .service-area-info {
        padding: 1.5rem;
    }

    .service-area-info h3 {
        font-size: 1.25rem;
    }

    .service-area-info p {
        font-size: 0.9rem;
    }

    .service-area-map {
        padding: 0.5rem;
    }

    #map {
        height: 300px !important;
    }

    .service-area-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-placeholder {
        width: 250px;
        height: 250px;
    }

    .map-placeholder i {
        font-size: 3rem;
    }

    .radius-circle {
        width: 350px;
        height: 350px;
        font-size: 1rem;
    }

    .pricing-cta h2 {
        font-size: 1.75rem;
    }

    .pricing-cta p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 30px 0;
    }

    .pricing-info-box {
        padding: 1.5rem 1rem;
    }

    .pricing-info-box h2 {
        font-size: 1.3rem;
    }

    .factor-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }

    .factor-item h3 {
        font-size: 1.05rem;
    }

    .factor-item p {
        font-size: 0.85rem;
    }

    .typical-pricing {
        margin-bottom: 1.5rem;
    }

    .typical-pricing h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .typical-pricing .pricing-card {
        padding: 1.25rem;
    }

    .typical-pricing .pricing-header h3 {
        font-size: 1.2rem;
    }

    .typical-pricing .price .amount {
        font-size: 1.75rem;
    }

    .typical-pricing .price-description {
        font-size: 0.85rem;
    }

    .typical-pricing .features-list li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .typical-pricing .features-list i {
        font-size: 0.9rem;
    }

    .additional-services {
        margin-bottom: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .additional-services h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-row {
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .service-name {
        gap: 0.5rem;
    }

    .service-name i {
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .service-name span {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .service-price {
        margin-left: 0;
        padding-left: 1.7rem;
    }

    .service-details {
        gap: 0.2rem;
    }

    .price-text {
        font-size: 0.95rem;
    }

    .service-time {
        font-size: 0.8rem;
    }

    .service-note {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .pricing-faq {
        margin-bottom: 1.5rem;
    }

    .pricing-faq h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .faq-grid {
        gap: 1rem;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .faq-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .faq-item h3 i {
        font-size: 0.9rem;
    }

    .faq-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .service-area {
        padding: 2rem 1rem;
    }

    .service-area h2 {
        font-size: 1.75rem;
    }

    .service-area-info,
    .service-area-map {
        padding: 1.5rem;
    }

    .service-area-map {
        padding: 0.5rem;
    }

    #map {
        height: 250px !important;
    }

    .map-placeholder {
        width: 200px;
        height: 200px;
    }

    .map-placeholder i {
        font-size: 2.5rem;
    }

    .map-placeholder p {
        font-size: 1rem;
    }

    .radius-circle {
        width: 280px;
        height: 280px;
        font-size: 0.9rem;
    }

    .pricing-cta {
        padding: 2rem 1.5rem;
    }

    .pricing-cta h2 {
        font-size: 1.5rem;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* ===== Article Specific Styles ===== */
.info-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box h4 i {
    font-size: 1.5rem;
}

.info-box p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.7;
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ea580c 100%);
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: var(--shadow-lg);
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

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

.cta-box .btn-primary {
    background-color: white;
    color: var(--secondary-color);
    font-size: 1.05rem;
}

.cta-box .btn-primary:hover {
    background-color: #f3f4f6;
}

.cta-box .btn-secondary {
    background-color: transparent;
    border-color: white;
    color: white;
    font-size: 1.05rem;
}

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

.article-card {
    transition: opacity 0.3s ease;
}

.category-filter {
    transition: all 0.3s ease;
}

.category-filter.active {
    color: var(--primary-color);
    font-weight: 600;
}

.category-filter.active i {
    color: var(--primary-color);
}

/* Mobile styles for new elements */
@media (max-width: 768px) {
    .info-box {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }

    .info-box h4 {
        font-size: 1.1rem;
    }

    .info-box h4 i {
        font-size: 1.25rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    .cta-box p {
        font-size: 1rem;
    }

    .cta-box .cta-buttons {
        flex-direction: column;
    }

    .cta-box .btn-primary,
    .cta-box .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .info-box {
        padding: 1rem;
    }

    .info-box h4 {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .info-box p {
        font-size: 0.9rem;
    }

    .cta-box {
        padding: 1.5rem 1rem;
    }

    .cta-box h3 {
        font-size: 1.3rem;
    }

    .cta-box p {
        font-size: 0.9rem;
    }
}
/* Hero section service badges - alias for article-meta */
.service-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    justify-content: center;
}

/* Mobile optimization for service badges */
@media (max-width: 768px) {
    .service-badges {
        gap: 0.5rem;
        margin-bottom: 1.2rem;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 0.3rem;
        padding-right: 2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        position: relative;
    }
    
    .service-badges::-webkit-scrollbar {
        display: none;
    }
    
    /* Fade gradient on right edge */
    .service-badges::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 60px;
        background: linear-gradient(to left, var(--primary-color) 30%, transparent);
        pointer-events: none;
        z-index: 1;
    }
}

/* Enhanced scroll indicator with arrow icon */
@media (max-width: 768px) {
    /* Add a scroll arrow indicator on the right */
    .hero .article-meta::after {
        content: '›';
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
        color: white;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        pointer-events: none;
        z-index: 2;
        animation: bounceRight 1.5s ease-in-out infinite;
        font-weight: bold;
    }
    
    @keyframes bounceRight {
        0%, 100% {
            transform: translateY(-50%) translateX(0);
            opacity: 0.6;
        }
        50% {
            transform: translateY(-50%) translateX(5px);
            opacity: 1;
        }
    }
    
    /* Subtle dots indicator at bottom */
    .hero .article-meta {
        padding-bottom: 1rem;
    }
}