.gf-country-contacts,
.gf-country-contacts *,
.gf-country-contacts *::before,
.gf-country-contacts *::after{
  box-sizing:border-box;
}
.gf-country-contacts{
  --gf-green:#8fbb45;
  --gf-green-dark:#78a233;
  --gf-green-deep:#5f8a26;
  --gf-blue:#15779b;
  --gf-text:#2b2b2b;
  --gf-muted:#f0f7e3;
  --gf-white:#ffffff;
  font-family:"Open Sans", Arial, sans-serif;
  color:var(--gf-white);
  margin:40px auto 0;
  max-width:1080px;
}

/* ---------- Header / Dropdowns ---------- */
.gf-cc-header{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  margin-bottom:36px;
  text-align:center;
}
.gf-cc-eyebrow{
  font-size:13px;
  font-weight:600;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:rgba(255,255,255,.85);
}
.gf-cc-label{
  font-size:26px;
  font-weight:600;
  color:var(--gf-white);
  margin-bottom:14px;
  line-height:1.2;
}
.gf-cc-selects{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  width:100%;
}
.gf-cc-field{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
  flex:1 1 260px;
  max-width:320px;
  text-align:left;
}
.gf-cc-field-label{
  font-size:12px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.8);
  padding-left:4px;
}
.gf-cc-select-wrap{
  position:relative;
  width:100%;
}
.gf-cc-field.is-hidden{ display:none; }

.gf-cc-button{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background:rgba(255,255,255,.15);
  border:2px solid rgba(255,255,255,.55);
  border-radius:30px;
  padding:12px 22px;
  font-family:inherit;
  font-size:16px;
  font-weight:500;
  color:var(--gf-white);
  cursor:pointer;
  transition:background .2s, border-color .2s, box-shadow .2s;
  text-align:left;
}
.gf-cc-button:hover{
  background:rgba(255,255,255,.25);
  border-color:#fff;
}
.gf-cc-button:focus,
.gf-cc-button[aria-expanded="true"]{
  outline:none;
  background:rgba(255,255,255,.28);
  border-color:#fff;
  box-shadow:0 0 0 4px rgba(255,255,255,.2);
}
.gf-cc-button-label{
  flex:1;
  display:flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.gf-cc-badge{
  display:inline-block;
  min-width:26px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  color:rgba(255,255,255,.7);
  text-transform:uppercase;
}
.gf-cc-option .gf-cc-badge{
  color:rgba(0,0,0,.35);
}
.gf-cc-option[aria-selected="true"] .gf-cc-badge{
  color:rgba(255,255,255,.85);
}
.gf-cc-chevron{
  color:var(--gf-white);
  font-size:18px;
  transition:transform .2s;
}
.gf-cc-button[aria-expanded="true"] .gf-cc-chevron{
  transform:rotate(180deg);
}

.gf-cc-list{
  list-style:none !important;
  margin:8px 0 0 !important;
  padding:6px !important;
  position:absolute;
  top:100%;
  left:0;
  right:0;
  width:100%;
  background:#ffffff;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
  z-index:20;
  opacity:0;
  transform:translateY(-6px);
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
}
.gf-cc-list li.gf-cc-option{
  margin:0 !important;
  list-style:none !important;
}
.gf-cc-list li.gf-cc-option::before,
.gf-cc-list li.gf-cc-option::marker{
  display:none !important;
  content:none !important;
}
.gf-cc-list.is-open{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.gf-cc-option{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  margin:0;
  border-radius:10px;
  font-size:15px;
  color:var(--gf-text);
  cursor:pointer;
  transition:background .15s, color .15s;
  list-style:none;
}
.gf-cc-option:hover,
.gf-cc-option.is-focus{
  background:#f0f7e3;
  color:var(--gf-green-deep);
}
.gf-cc-option[aria-selected="true"]{
  background:var(--gf-green);
  color:#fff;
  font-weight:600;
}

/* ---------- Contact Cards ---------- */
.gf-cc-panel{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
  max-width:520px;
  margin:0 auto;
}
.gf-cc-card{
  background:#ffffff;
  border-radius:10px;
  padding:28px 32px;
  box-shadow:0 6px 22px rgba(0,0,0,.12);
  opacity:0;
  animation:gfFadeIn .35s ease forwards;
  position:relative;
  overflow:hidden;
  width:100%;
  text-align:left;
  display:flex;
  align-items:center;
  gap:28px;
}
.gf-cc-card-main{
  flex:1 1 auto;
  min-width:0;
}
.gf-cc-card-aside{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-left:28px;
  border-left:1px solid rgba(0,0,0,.08);
}
.gf-cc-card::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:4px;
  background:var(--gf-green);
}
@keyframes gfFadeIn{
  from{ opacity:0; transform:translateY(10px); }
  to  { opacity:1; transform:translateY(0); }
}

.gf-cc-logo{
  display:block;
  max-width:150px;
  max-height:120px;
  width:auto;
  height:auto;
  margin:0;
  object-fit:contain;
}
/* Firmenlogo im grünen Firmeninformations-Block – ohne Hintergrund, Platz maximal ausnutzen */
.gf-cc-company-logo{
  display:block;
  max-width:100%;
  max-height:150px;
  width:auto;
  height:auto;
  object-fit:contain;
}
.gf-cc-role{
  font-size:12px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gf-green-dark);
  margin:0 0 6px;
}
.gf-cc-name{
  font-family:"Open Sans", Arial, sans-serif;
  font-size:20px;
  font-weight:700;
  color:var(--gf-text);
  margin:0 0 4px;
  line-height:1.25;
}
.gf-cc-section-label{
  display:block;
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gf-green-dark);
  margin:0 0 6px;
}
.gf-cc-section-label-light{ color:rgba(255,255,255,.85); }
.gf-cc-ap{ margin-top:6px; }
.gf-cc-person{
  font-size:16px;
  font-weight:700;
  color:var(--gf-text);
  margin:0 0 12px;
}
.gf-cc-lines{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:flex-start;
}
.gf-cc-lines li{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:15px;
  color:var(--gf-text);
  width:100%;
}
.gf-cc-lines li a{
  min-width:0;
  word-break:break-word;
}
.gf-cc-lines a{
  color:var(--gf-text);
  text-decoration:none;
  word-break:break-word;
  transition:color .15s;
}
.gf-cc-lines a:hover{
  color:var(--gf-green-dark);
}
.gf-cc-ico-wrap{
  flex:0 0 34px;
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--gf-green);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}
.gf-cc-ico{
  width:16px;
  height:16px;
}

/* ---------- Firmen-Info-Block ---------- */
.gf-cc-company{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.3);
  border-left:4px solid var(--gf-white);
  padding:18px 22px;
  border-radius:8px;
  font-size:15px;
  line-height:1.6;
  color:#fff;
  backdrop-filter:blur(2px);
  width:100%;
  max-width:520px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:24px;
}
.gf-cc-company.has-logo{ max-width:680px; }
.gf-cc-company-body{ flex:1 1 auto; min-width:0; }
.gf-cc-company-aside{
  flex:0 0 220px;
  align-self:stretch;
  display:flex;
  align-items:center;
  justify-content:center;
}
.gf-cc-company strong{ color:#fff; font-weight:700; }
.gf-cc-addr{
  display:flex;
  align-items:center;
  gap:12px;
}
.gf-cc-addr-text{ flex:1 1 auto; min-width:0; }

.gf-cc-lines-light{ margin-top:12px; }
.gf-cc-lines-light li{ color:#fff; }
.gf-cc-lines-light a{ color:#fff; }
.gf-cc-lines-light a:hover{ color:var(--gf-muted); }

@media (max-width:600px){
  .gf-cc-label{ font-size:22px; }
  .gf-cc-card{ padding:22px 20px; flex-direction:column; align-items:flex-start; gap:20px; }
  .gf-cc-name{ font-size:18px; }
  .gf-cc-card-aside{
    padding-left:0;
    padding-top:20px;
    border-left:none;
    border-top:1px solid rgba(0,0,0,.08);
    width:100%;
    justify-content:flex-start;
  }
  .gf-cc-company{ flex-direction:column; align-items:flex-start; gap:18px; }
  .gf-cc-company-aside{ justify-content:flex-start; }
}
