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

:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --bg: #0d2541;
    --bg-secondary: #1a3a5a;
    --text: #73CAFF;
    --text-secondary: #73CAFF;
    --border: #2a4a6a;
    --success: #10b981;
    --warning: #f59e0b;
    --accent-blue: #4db8ff;
    --accent-red: #ff6b6b;
    --light-text: #333333;
    --main-transparent: #0d25411a;

}


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 75px;
    padding-bottom: 75px;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 1);
}

body > main {
    flex: 1;
}

/* Header Navigation */
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    box-shadow: 14px 14px 20px #050f1a, -14px -14px 20px #153b6866;
    z-index: 900;
    border-bottom: 1px solid #050f1a45;
    width: 100%;
    max-width: 1200px;
    height: 75px;
    border-radius: 14px;
}

.header-content {
    padding-right: 2rem;
    padding-left: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 75px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d2541;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo svg {
    filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 1));
}

nav a {
    color: #333333;
    text-decoration: none;
    margin: 0 0.4rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

a {
    color: #73CAFF;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

nav a:hover {
    color: #73CAFF;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    cursor: pointer;
    display: inline-block;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    z-index: 1000;
    padding: 0.5rem 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333333;
    text-decoration: none;
    transition: background-color 0.3s;
    margin: 0;
}

.nav-dropdown-menu a:hover {
    background-color: #f0f0f0;
    color: #0d2541;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

#hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
}

#hamburger span {
    width: 25px;
    height: 3px;
    background: #0d2541;
    margin: 5px 0;
    transition: all 0.3s;
}

#hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

#hamburger.active span:nth-child(2) {
    opacity: 0;
}

#hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

#mobile-nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid #0d2541;
}

#mobile-nav.active {
    display: flex;
}

#mobile-nav a {
    padding: 1rem 2rem;
    text-decoration: none;
    color: #333333 !important;
    border-bottom: 1px solid #e0e0e0;
}

.material-icons, .button-label {
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 1);
}

@media (max-width: 768px) {
    header {
        width: calc(100% - 0px);
        margin: 0 0;
    }

    footer {
        width: calc(100% - 0px);
        margin: 0 0;
    }

    #hamburger {
        display: flex;
    }

    #nav-desktop {
        display: none;
    }

    .header-content {
        justify-content: space-between;
    }

    nav a {
        margin: 0;
    }

    .nav-dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: #f5f5f5;
        margin: 0;
        padding: 0.5rem 0 0.5rem 2rem;
        border-radius: 0;
    }

    .nav-dropdown-menu.active,
    .nav-dropdown-menu[style*="display: block"] {
        display: block !important;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: none;
    }

    #mobile-nav .nav-dropdown-menu a {
        padding: 0.5rem 0;
        border-bottom: none;
    }

    .services-grid,
    .team-grid,
    .impressum-grid,
    .datenschutz-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

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

header {
    border-bottom: 2px solid #73CAFF;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
}

h1 {
    font-size: 2rem;
    margin-top: 0rem;
    margin-bottom: 0.5rem;
    color: #73CAFF;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 1);
    border-bottom: 1px solid #73CAFF;
    padding-bottom: 0.5rem;
}

h2 {
    color: #73CAFF;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 1);
    margin-top: 0rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #73CAFF;
    padding-bottom: 0.5rem;
}

h3 {
    color: #73CAFF;
    margin-top: 0rem;
    border-bottom: 1px solid #73CAFF;
    padding-bottom: 0.5rem;
}

.header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0rem;
}

.timestamp {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.card {
    background-color: #0d2541;
    border: 1px solid #050f1a45;
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 14px 14px 20px #050f1a, -14px -14px 20px #153b6866;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #73CAFF;
    border-bottom: 2px solid #73CAFF;
    padding-bottom: 0.5rem;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 1);
}

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

.field {
    display: flex;
    flex-direction: column;
}

.field-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 1);
}

.field-value {
    font-size: 1rem;
    color: var(--text);
    word-break: break-word;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 1);
}

.field-value.highlight {
    font-weight: 600;
    color: #73CAFF;
    font-size: 1.1rem;
}

.management-item {
    background-color: var(--bg);
    border-left: 3px solid #73CAFF;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.375rem;
}

.error {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Main Content */
main {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px;
    width: 100%;
}

main > section,
main > div {
    width: 100%;
    max-width: 1200px;
    border: 1px solid #050f1a45;
    padding: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 14px;
    box-shadow: 14px 14px 20px #050f1a, -14px -14px 20px #153b6866;
}

.hero {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 4rem;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-logo {
    display: block;
    margin: 0 auto 2rem;
    filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 1));
    align-self: center;
}

#networkCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
    border-bottom: none;
    padding-bottom: 0;
}

.hero p {
    font-size: 1.2rem;
    color: #73CAFF;
    max-width: 600px;
    margin: 0 auto;
}

.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.problem-card, .solution-card {
    padding: 2rem;
    border-radius: 8px;
    background: rgba(115, 202, 255, 0.05);
    transition: all 0.3s;
}

.problem-card {
    border-left: 4px solid var(--accent-red) !important;
}

.solution-card {
    border-left: 4px solid var(--text) !important;
}

.problem-card h3, .solution-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--text);
}

.problem-card ul, .solution-card ul {
    list-style-position: inside;
    line-height: 1.8;
}

#services {
    margin-bottom: 4rem;
}

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

/* ========== Grid Styles ========== */
.services-grid,
.team-grid,
.impressum-grid,
.contact-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

.datenschutz-card ul {
    margin-left: 1.5rem;
}

/* Card Base Styles & Hover Effects */
.service-card,
.team-card,
.problem-card,
.solution-card,
.impressum-card,
.datenschutz-card {
    background: rgba(115, 202, 255, 0.05);
    border: 1px solid rgba(115, 202, 255, 0.3);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.service-card:hover,
.team-card:hover,
.problem-card:hover,
.solution-card:hover,
.impressum-card:hover,
.datenschutz-card:hover {
    background: rgba(115, 202, 255, 0.1);
    transform: translateY(-5px);
}

/* Contact Button Styles */


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

.service-card p {
    color: #73CAFF;
    line-height: 1.6;
}

#team {
    margin-bottom: 4rem;
}

.team-grid {
    margin-bottom: 2rem;
}

/* Team Card Link Styling */
a.team-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}



.team-card {
    text-align: center;
}

.team-card img {
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    border: 2px solid rgba(115, 202, 255, 0.3);
}

.placeholder-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(115, 202, 255, 0.1);
    border: 2px solid rgba(115, 202, 255, 0.3);
    font-size: 2rem;
    font-weight: bold;
    color: #73CAFF;
}

.team-card h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
}

.team-card p {
    color: #73CAFF;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.apply-button {
    color: #73CAFF;
    transition: all 0.3s;
}

.apply-button:hover {
    background: rgba(115, 202, 255, 0.15) !important;
    transform: translateY(-2px);
}

.impressum-grid {
    margin-bottom: 2rem;
}


.impressum-card h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
}

.impressum-card p {
    margin: 0;
    line-height: 1.6;
}

#contact {
    margin-bottom: 4rem;
}

.contact-grid {
    margin-top: 2rem;
}

.contact-column {
    display: flex;
    flex-direction: column;
    gap: 0rem;
    align-items: center;
}

.contact-column p {
    color: #73CAFF;
    gap: 1rem;
}

.contact-column p:first-child {
    margin-top: 0;
}

.contact-info {
    font-size: 1.1rem;
    line-height: 2;
    text-align: left;
}

.contact-info-column {
    align-items: flex-start !important;
    gap: 2rem;
}

.contact-info a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    gap: 0.75rem;
    padding: 0.4rem 1rem;
    margin: 15px 0;
    color: #73CAFF;
    text-decoration: none;
    text-align: center;
    width: 100%;
    max-width: 230px;
    border-radius: 28px;
    background: rgba(115, 202, 255, 0.05);
    border: 1px solid rgba(115, 202, 255, 0.3);
    transition: all 0.3s;
    height: 45px;
}

.contact-button:hover {
    background: rgba(115, 202, 255, 0.1);
    transform: translateY(-5px);
}

.button-icon {
    font-size: 1.5rem;
    color: #73CAFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-label {
    color: #73CAFF;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1;
    display: flex;
    align-items: center;
}

#about {
    background: rgba(115, 202, 255, 0.05);
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid var(--text);
}

#about h2 {
    color: var(--text);
    margin-bottom: 1rem;
}

#about p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #73CAFF;
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-top: 1px solid #050f1a45;
    font-size: 0.9rem;
    color: var(--light-text);
    height: 75px;
    z-index: 900;
    width: 100%;
    max-width: 1200px;
    border-radius: 14px;
    box-shadow: 14px 14px 20px #050f1a, -14px -14px 20px #153b6866;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer p {
    padding-right: 2rem;
    padding-left: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.material-icons, .button-label {
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 1);
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .header-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .field-group {
        grid-template-columns: 1fr;
    }

    .problem-solution {
        grid-template-columns: 1fr;
    }
}
#wp-live-chat-by-3CX {
    bottom: 8px;
    font-size: 16px;
    line-height: 17px;
    z-index: 99999;
    position: fixed;
    --call-us-main-accent-color: var(--bg);
    --call-us-main-background-color: var(--text);
    --call-us-plate-background-color: var(--bg);
    --call-us-plate-font-color: var(--text);
    --call-us-main-font-color: var(--bg);
    --call-us-agent-bubble-color: var(--main-transparent);
    --call-us-form-header-background: var(--text);
    --call-us-main-button-background: var(--text);
    --call-us-z-index-header-call:1000;
    --call-us-round-button: 50%;

    --call-us-element-side-offset-small: 10px;
    --call-us-font-size: 0.9rem;
    --call-us-plate-bg-with-gradient: var(--main-transparent);
    --call-us-form-height: 585px;
    --call-us-form-width:330px;
    --call-us-small-form-height: 585px;
    --call-us-form-width: 350px;
/*
  --call-us-header-height
    */
}

#wp-live-chat-by-3CX { right: 0px; }
@media (min-width: 600px)  {#wp-live-chat-by-3CX {right: 8px;}}
@media (min-width: 1201px) {#wp-live-chat-by-3CX {right: calc((100vw - 1200px) / 2 + 8px);}}


.hur54b{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	box-sizing:border-box;
	background-color:rgba(32,33,36,.6);
	z-index:9999
}
@media (width <= 700px) {
    .hur54b {
        padding: 0 0 0 0;
    }
}
@media (width >= 700px) {
    .hur54b {
        padding:72px;
    }
}

.mmGMM {
	border:none;
	border-radius:8px;
	background-color:#ffffff00;
	width:100%;
	height:100%
}
.Xfsokf{
	position:fixed;
	top:24px;
	right:20px;
	display:-webkit-box;
	display:-webkit-flex;
	display:flex;
	-webkit-box-align:center;
	-webkit-align-items:center;
	align-items:center;
	border:none;
	border-radius:18px;
	height:36px;
	padding:16px;
	cursor:pointer;
	background-color:rgb(60,64,67)
}
/* Modal Overlay */
#contact-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

#contact-modal.active {
  display: flex;
}

.modal-content-wrapper {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.modal-footer {
  padding: 0.75rem 2rem;
  background-color: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  flex-shrink: 0;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2rem;
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  flex-shrink: 0;
  gap: 16px;
  z-index: 1;
}

.modal-logo {
  height: 35px;
  max-width: 191px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 1));
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #333;
}

#modal-content {
  flex: 1;
  border: none;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.material-icons, .button-label {
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 1);
}

@media (max-width: 768px) {
  .modal-content-wrapper {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
  }
  
  #contact-modal {
    padding: 0;
    align-items: stretch;
  }
  
  .modal-footer {
  padding: 0.75rem 2rem;
  background-color: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  flex-shrink: 0;
}

.modal-header {
    border-radius: 0;
  }
}

/* FAQ Section */
.faq-section {
    padding: 3rem 2rem;
    background: var(--bg-secondary);
}

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

.faq-card {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s;
}

.faq-card:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.faq-card h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Support Form */
.support-section {
    padding: 3rem 2rem;
    background: var(--bg);
}

.support-form {
    max-width: 600px;
    margin: 2rem auto;
    background: rgba(37, 99, 235, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text);
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.loading {
    text-align: center;
    color: var(--text);
    margin-top: 1rem;
    display: none;
}

.loading.show {
    display: block;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--border);
    border-top-color: var(--primary-light);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.message.success {
    display: block;
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    border: 1px solid var(--success);
}

.message.error {
    display: block;
    background: rgba(255, 107, 107, 0.2);
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
}

/* Contact Section */
.contact-section {
    padding: 3rem 2rem;
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto;
    align-items: center;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

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

.contact-column h3 {
    color: var(--text);
    margin-bottom: 1rem;
}

.contact-column p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 4px;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: all 0.3s;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.button-icon {
    font-size: 1.25rem;
}


/* ===== FAQ Search ===== */
.faq-search-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
  margin-top: 1.5rem;
}

.faq-search-input {
  flex: 1;
  max-width: 500px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  transition: all 0.2s;
  font-family: inherit;
}

.faq-search-input::placeholder {
  color: var(--text-secondary);
}

.faq-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-results-count {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

/* ===== FAQ Categories ===== */
.faq-category-group {
  margin-bottom: 3rem;
}

.faq-category-group h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
  color: var(--text);
}

/* ===== FAQ Container (1-spaltig) ===== */
.faq-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* ===== FAQ Card ===== */
.faq-card {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
  margin-bottom: 1.5rem;
}

.faq-card:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.faq-card h3 {
  color: var(--text);
  margin-bottom: 1rem;
  margin-top: 0;
  font-size: 1.1rem;
}

.faq-card p {
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* ===== FAQ Filters ===== */
.faq-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

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

.filter-btn:hover:not(.active) {
  background: rgba(37, 99, 235, 0.1);
}

@media (max-width: 768px) {
  .faq-search-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-search-input {
    max-width: 100%;
  }

  .search-results-count {
    text-align: center;
  }
}

/* Card Backgrounds */
.doc-card,
.issue-card,
.practice-card,
.faq-card {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
  margin: 35px 0;
}

.doc-card:hover,
.issue-card:hover,
.practice-card:hover,
.faq-card:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.doc-card h3,
.issue-card h3,
.practice-card h3,
.faq-card h3 {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.doc-card p,
.issue-card p,
.practice-card p,
.faq-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* List Indentation */
ul {
  margin-left: 2rem;
}

li {
  margin-left: 1rem;
}

/* Section Backgrounds */
.docs-section,
.troubleshooting-section,
.best-practices-section,
.faq-section {
  background-color: var(--bg);
}

/* Solution Boxes */
.solution {
  background-color: transparent;
  border: 2px dotted;
  padding: 15px;
  border-radius: 5px;
  margin-top: 10px;
}

.solution ul {
  margin: 10px 0;
  padding-left: 20px;
}

.solution li {
  margin: 5px 0;
}

/* Advanced Practices */
.advanced-practices {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid #ddd;
}

.advanced-card {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
  margin: 35px 0;
  border-left: 4px solid #73caff;
}

/* Integrations Section */
.integrations-section {
  background-color: var(--bg);
  padding: 3rem 2rem;
}

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

.comparison-container h2 {
  color: var(--text);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

/* Comparison Table */
.comparison-table {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.comparison-table thead {
  background: rgba(37, 99, 235, 0.15);
}

.comparison-table th {
  color: var(--text);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

.comparison-table td {
  color: var(--text-secondary);
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Comparison Cards */
.comparison-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  row-gap: 2rem;
  column-gap: 2rem;
  margin: 2rem 0;
}

.comparison-card {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
}

.comparison-card:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.comparison-card h3 {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.comparison-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.comparison-card ul {
  margin-left: 2rem;
}

.comparison-card li {
  margin: 0.5rem 0;
  color: var(--text-secondary);
}

.comparison-card.sipgate {
  border-left: 4px solid #10b981;
}

.comparison-card.easybell {
  border-left: 4px solid #3b82f6;
}

/* Recommendation Box */
.recommendation-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(16, 185, 129, 0.1));
  border: 2px solid var(--primary-light);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2rem;
}

.recommendation-box h4 {
  color: var(--text);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.recommendation-box p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0.5rem 0;
}

.recommendation-box strong {
  color: var(--text);
}

/* Business Tools Section */
.businesstools-section {
  background-color: var(--bg);
  padding: 3rem 2rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 2rem;
  column-gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.tool-card {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
}

.tool-card:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.tool-card h3 {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.tool-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}
