/* Start custom CSS for text-editor, class: .elementor-element-7a314cdf *//* Globale Variablen */
:root {
    --gts-blue: #005a87;
    --gts-turquoise: #00a1af;
    --gts-yellow: #ffcc00;
    --gts-text: #333;
    --gts-light: #f8f9fa;
    --gts-dark: #2c3e50;
}

.gts-seo-page {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--gts-text);
    line-height: 1.6;
}

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

/* Navigation */
.gts-nav-top {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.gts-back-btn {
    text-decoration: none;
    color: var(--gts-blue);
    font-weight: bold;
}

/* Hero */
.gts-hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0,90,135,0.05) 0%, rgba(0,161,175,0.05) 100%);
}

.gts-tag {
    background: var(--gts-turquoise);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
}

.gts-hero h1 {
    font-size: 2.8rem;
    color: var(--gts-blue);
    margin: 20px 0;
    line-height: 1.2;
}

.gts-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Dual CTA Buttons */
.gts-hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.gts-btn-primary {
    background: var(--gts-yellow);
    color: #000;
    padding: 18px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.gts-btn-secondary {
    background: var(--gts-blue);
    color: #fff;
    padding: 18px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.gts-btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 18px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* USP Grid */
.gts-usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: -40px;
}

.gts-usp-item {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.gts-usp-item strong { display: block; color: var(--gts-blue); font-size: 1.2rem; }

/* Tables */
.gts-section { padding: 80px 0; }
.gts-bg-light { background: var(--gts-light); }
.gts-bg-dark { background: var(--gts-dark); color: #fff; }

.gts-table-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

table {
    width: 100%;
    background: #fff;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
}

th { background: var(--gts-blue); color: #fff; padding: 12px; text-align: left; }
td { padding: 12px; border-bottom: 1px solid #eee; color: #333; }
.gts-highlight { background: #fff9e6; font-weight: bold; color: #d35400; }

/* Visual Cards */
.gts-flex-visual {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
}

.gts-card { text-align: center; }
.gts-card img { max-width: 100%; border-radius: 10px; border: 4px solid #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* Bohrungen */
.gts-bohrung-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gts-bohrung-item {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.gts-bohrung-item.featured {
    background: #fff;
    color: var(--gts-text);
    position: relative;
    transform: scale(1.05);
}

.gts-reco-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #e67e22;
    color: #fff;
    padding: 2px 10px;
    font-size: 0.7rem;
    border-radius: 3px;
}

/* Footer */
.gts-footer { background: var(--gts-blue); color: #fff; text-align: center; padding: 80px 0; }
.text-white { color: #fff; }

/* Animation */
@keyframes gts-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}
.gts-pulse { animation: gts-pulse 2s infinite ease-in-out; }

/* Mobile */
@media (max-width: 768px) {
    .gts-hero h1 { font-size: 2rem; }
    .gts-hero-ctas { flex-direction: column; }
    .gts-flex-visual { flex-direction: column; }
    .gts-bohrung-item.featured { transform: none; }
}/* End custom CSS */