/* Modern, Turkish-language Insurance Agency Website Styles */
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222;
  margin-bottom: 0 !important;
  font-size: 18px;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.logo-img {
  height: 275px;
  width: auto;
  display: block;
  margin-right: 24px;
}
.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s, background-color 0.3s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(200,169,81,0.1);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}
.nav-links li a {
  color: #C8A951;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
  position: relative;
  min-width: 140px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0.8em;
  background: rgba(200,169,81,0.13);
  border: none;
  font-size: 0.95em;
  box-shadow: 0 1px 3px rgba(200,169,81,0.04);
  line-height: 1.1;
}
.nav-links li a:hover,
.nav-links li a.active {
  background: #C8A951;
  color: #fff;
  box-shadow: 0 4px 16px rgba(200,169,81,0.18);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.nav-toggle span {
  width: 28px;
  height: 3px;
  background: #C8A951;
  border-radius: 2px;
  transition: all 0.3s;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #fff 60%, #C8A951 100%);
  padding: 0;
  text-align: center;
  animation: fadeIn 1s;
}
.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #222;
  font-weight: 700;
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #444;
}
.hero-btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.cta-btn {
  background: #C8A951;
  color: #fff;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(200,169,81,0.15);
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.cta-btn:hover {
  background: #b89a45;
  transform: translateY(-3px) scale(1.04);
}
.cta-btn.secondary-btn {
  background: #fff;
  color: #C8A951;
  border: 2px solid #C8A951;
  box-shadow: 0 4px 16px rgba(200,169,81,0.08);
  font-weight: 700;
  transition: background 0.3s, color 0.3s, border 0.3s;
}
.cta-btn.secondary-btn:hover {
  background: #C8A951;
  color: #fff;
  border-color: #b89a45;
}
.about {
  background: #fff;
  padding: 70px 0;
  animation: fadeInUp 1s;
}
.about-content h2 {
  color: #C8A951;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-align: center;
}
.about-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.about-main-text {
  font-size: 1.1rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.about-card {
  background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(200,169,81,0.15), 0 4px 12px rgba(0,0,0,0.12);
}
.about-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.about-card h3 {
  color: #C8A951;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.about-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
.values-list {
  text-align: left;
}
.value-item {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #e0e0e0;
}
.value-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.value-item strong {
  color: #C8A951;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem 0;
}
.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #C8A951 0%, #b89a45 100%);
  border-radius: 12px;
  color: white;
  transition: transform 0.3s, box-shadow 0.3s, filter 0.3s;
  box-shadow: 0 4px 16px rgba(200,169,81,0.13);
  opacity: 0;
  transform: translateY(40px);
  animation: statFadeInUp 0.9s cubic-bezier(.4,0,.2,1) forwards;
}
.stat-item:hover {
  transform: scale(1.07) translateY(-4px);
  box-shadow: 0 8px 32px rgba(200,169,81,0.22), 0 2px 8px rgba(0,0,0,0.10);
  filter: brightness(1.08) saturate(1.2);
}
@keyframes statFadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: 1px;
  transition: color 0.3s;
  /* Counter animasyonu için JS ile eklenecek */
}
.stat-label {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}
.about-story {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
}
.about-story h3 {
  color: #C8A951;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.about-story p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.services {
  background: #f8f8f8;
  padding: 70px 0;
  animation: fadeInUp 1.2s;
}
.services h2 {
  color: #C8A951;
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 0.7em;
  letter-spacing: 0.5px;
  text-align: center;
}
.services-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(200,169,81,0.08), 0 1.5px 6px rgba(0,0,0,0.04);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  width: 320px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  animation: cardPop 0.8s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}
.service-icon {
  font-size: 4.5rem;
  margin-bottom: 1.2rem;
  display: block;
  transition: transform 0.4s;
  filter: drop-shadow(0 4px 8px rgba(200,169,81,0.2));
}
.service-card h3 {
  color: #C8A951;
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.service-card p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.service-btn {
  display: inline-block;
  background: linear-gradient(135deg, #C8A951 0%, #b89a45 100%);
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(200,169,81,0.3);
  border: none;
  cursor: pointer;
  margin-top: auto;
}
.service-btn:hover {
  background: linear-gradient(135deg, #b89a45 0%, #a88a35 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(200,169,81,0.4);
}
.service-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 8px 32px rgba(200,169,81,0.18), 0 2px 8px rgba(0,0,0,0.08);
}
.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-6deg);
  filter: drop-shadow(0 8px 16px rgba(200,169,81,0.4));
}

/* Neden Biz Section */
.neden-biz {
  background: #fff;
  padding: 70px 0;
  animation: fadeInUp 1.4s;
}

.nedenbiz-content h2 {
  color: #C8A951;
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  text-align: center;
}

.nedenbiz-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
}

.nedenbiz-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(200,169,81,0.12), 0 4px 16px rgba(0,0,0,0.08);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: cardPop 0.8s;
  border: 3px solid #f0f0f0;
  width: 320px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nedenbiz-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C8A951, #e6c76b);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nedenbiz-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 16px 48px rgba(200,169,81,0.25), 0 8px 24px rgba(0,0,0,0.12);
  border-color: #C8A951;
}

.nedenbiz-card:hover::before {
  transform: scaleX(1);
}

.nedenbiz-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 4px 8px rgba(200,169,81,0.2));
}

.nedenbiz-card:hover .nedenbiz-icon {
  transform: scale(1.15) rotate(8deg);
  filter: drop-shadow(0 8px 16px rgba(200,169,81,0.4));
}

.nedenbiz-card h3 {
  color: #C8A951;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(200,169,81,0.1);
}

.nedenbiz-card p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}
section.contact, .contact, .contact-content, .container.contact-content {
  background: #faf9f6 !important;
}
section.contact {
  margin-bottom: 0 !important;
  padding-bottom: 64px;
}
.contact-content {
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
}
.contact-columns {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
.contact-single-column {
  width: 100%;
  margin: 0;
  align-items: stretch;
}
.contact-single-column .kvkk-block {
  max-width: none;
  width: 100%;
  margin: 0;
}
.kvkk-block, .kvkk-block * {
  text-align: left !important;
}
.contact-info-panel {
  flex: 1 1 40%;
  min-width: 220px;
  max-width: 320px;
}
.contact-form-panel {
  flex: 1 1 60%;
  min-width: 260px;
  max-width: 520px;
  width: 100%;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
.contact-desc {
  font-size: 16px !important;
  color: #666 !important;
  font-weight: 500;
  margin-bottom: 18px;
  text-align: center;
}
.contact-info-box {
  background: #f7f7fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 1rem;
  color: #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  max-width: 420px;
  text-align: left;
}
.contact-info-box div {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-info-box a {
  color: #1a4d8c;
  text-decoration: underline;
}
.contact-icon {
  color: #C8A951;
  font-size: 1.2em;
}
#contactForm, .contact-form-panel, .kvkk-block {
  width: 100% !important;
}
#contactForm input,
#contactForm select,
#contactForm textarea,
#contactForm button {
  width: 100%;
  box-sizing: border-box;
}
#contactForm input,
#contactForm select,
#contactForm textarea {
  background: #fff;
  border: 2px solid #C8A951;
  color: #222;
  border-radius: 18px;
  font-size: 1.12em;
  font-family: inherit;
  outline: none;
  transition: border 0.25s, box-shadow 0.25s, transform 0.18s;
  resize: none;
  margin-bottom: 2px;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 2px 10px rgba(200,169,81,0.08);
}
#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
  border: 2.5px solid #C8A951;
  box-shadow: 0 0 0 4px #c8a95133, 0 2px 16px rgba(200,169,81,0.16);
  transform: scale(1.025);
}
#contactForm input:hover,
#contactForm select:hover,
#contactForm textarea:hover {
  border-color: #b89a45;
  box-shadow: 0 0 0 3px #b89a4533, 0 2px 12px rgba(200,169,81,0.18);
}
#contactForm input::placeholder,
#contactForm textarea::placeholder {
  color: #C8A951;
  opacity: 1;
  font-size: 1em;
  font-family: inherit;
  letter-spacing: 0.2px;
}
.kvkk-consent, .recaptcha-box, #contactForm button, #formSuccess {
  grid-column: 1 / span 2;
}
.kvkk-checkbox-row {
  width: 100%;
  margin-left: 0;
  padding-left: 0;
  box-sizing: border-box;
}
.kvkk-checkbox-row input[type="checkbox"] {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  border-radius: 5px;
  accent-color: #C8A951;
  border: 2px solid #C8A951;
  margin-top: 0;
}
.kvkk-checkbox-row label,
.kvkk-label {
  width: 100%;
  display: block;
  text-align: left;
}
.kvkk-info {
  font-size: 0.98em;
  color: #B0892E;
  font-weight: 600;
  margin-left: 0;
  margin-top: 10px;
  margin-bottom: 8px;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  width: 100%;
}
.kvkk-info-inner {
  text-align: left;
  max-width: 500px;
}
.kvkk-info a {
  color: #C8A951;
  text-decoration: underline;
  font-weight: 700;
}
.recaptcha-box {
  margin-bottom: 8px !important;
  margin-top: 8px !important;
}
.footer, .footer-grid, .footer-col, .footer-bottom {
  background: #000 !important;
  color: #fff !important;
  margin-top: 0;
  padding-top: 32px;
}
.footer-slogan {
  font-size: 1.18rem;
  font-weight: 600;
  color: #C8A951;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-align: left;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-address {
  padding-top: 18px;
  line-height: 1.6;
}
.footer-map iframe {
  width: 100%;
  min-width: 544px;
  max-width: 850px;
  height: 320px;
  border-radius: 8px;
  border: 0;
  background: #222;
  display: block;
  margin-top: 12px;
  margin-bottom: 18px;
}
.footer-title {
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  margin-top: 0;
}
.menu-col {
  padding-left: 0;
  margin-top: 0;
}
.menu-col h4, .social-col h4 {
  color: #C8A951;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 700;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.footer-menu li {
  margin-bottom: 12px;
}
.footer-menu li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 16px;
}
.footer-menu li a:hover {
  color: #C8A951;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}
.social-icons a img {
  height: 32px;
  width: 32px;
  filter: brightness(1) grayscale(0);
  transition: transform 0.2s, filter 0.2s, opacity 0.2s;
  cursor: pointer;
}
.social-icons a img:hover {
  filter: brightness(1) grayscale(0);
  opacity: 1;
  transform: scale(1.18);
}
.footer-bottom {
  text-align: center;
  margin-top: 28px;
  font-size: 15px;
  color: #aaa;
  background: #000;
  padding-bottom: 12px;
  border-top: none;
}
.footer-bottom a {
  color: #C8A951;
  text-decoration: none;
  margin: 0 8px;
  font-size: 15px;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.footer-col:not(:last-child) {
  border-right: 1.5px solid rgba(200, 169, 81, 0.18);
  padding-right: 32px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-col, .footer-address, .footer-map, .menu-col, .social-col {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .footer-title {
    text-align: center;
  }
  .footer-map iframe {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: 180px;
  }
  .footer-address {
    margin-bottom: 12px;
  }
  .footer-col {
    margin-bottom: 24px;
  }
  .menu-col {
    margin-top: 18px;
  }
  .footer-col:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }
  .footer-slogan {
    text-align: center;
  }
  .contact-columns {
    flex-direction: column;
    gap: 0;
  }
  .contact-content {
    padding-left: 0;
    padding-right: 0;
  }
  .contact-single-column, .contact-single-column .kvkk-block {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  .contact-info-panel, .contact-form-panel {
    margin-left: 0;
    max-width: 100%;
  }
  .contact-single-column {
    align-items: center;
  }
}
@media (max-width: 600px) {
  .footer {
    padding: 24px 4px 10px;
    font-size: 14px;
    max-height: none;
  }
  .footer-map iframe {
    height: 120px;
  }
  .social-icons a img {
    height: 26px;
    width: 26px;
  }
  .footer-bottom {
    font-size: 13px;
    margin-top: 14px;
  }
  .footer-bottom a {
    font-size: 13px;
  }
  .contact-content {
    max-width: 100vw;
    min-width: 0;
    padding: 18px 8px 18px 8px;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
  }
  .hero-btn-group {
    flex-direction: column;
    gap: 0.7rem;
    align-items: center;
  }
}
@media (prefers-color-scheme: light) {
  .footer {
    background: #f8f8f8;
    color: #222;
  }
  .footer-col h4, .footer-bottom a {
    color: #C8A951;
  }
  .footer-col ul li a {
    color: #444;
  }
  .footer-col ul li a:hover {
    color: #C8A951;
  }
  .footer-bottom {
    color: #888;
  }
  .social-icons a img {
    filter: none;
  }
  .social-icons a img:hover {
    filter: brightness(0.8) sepia(1) hue-rotate(20deg) saturate(2);
  }
}
@media (max-width: 700px) {
  .services-cards {
    flex-direction: column;
    align-items: center;
  }
  .service-card {
    width: 90%;
    margin-bottom: 1.5rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-card {
    margin-bottom: 1rem;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .stat-item {
    padding: 1rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .about-story {
    padding: 1rem 0;
  }
  .about-story h3 {
    font-size: 1.5rem;
  }
  .value-item {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.6rem;
  }
  .value-item strong {
    margin-bottom: 6px;
  }
  .nedenbiz-grid {
    grid-template-columns: 1fr;
  }
  .nedenbiz-card {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .footer-flex {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }
  .footer-social {
    margin-top: 0.5rem;
    justify-content: center;
  }
  .adres {
    font-size: 1rem;
    padding: 0.8rem 0.7rem;
  }
  .contact-content {
    max-width: 99vw;
    padding: 6px 1vw 10px 1vw;
  }
  #contactForm {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  #contactForm textarea,
  .kvkk-consent, .recaptcha-box, #contactForm button, #formSuccess {
    grid-column: 1 / span 1;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .kvkk-block {
    margin-top: 18px;
  }
}
@media (max-width: 700px) {
  .logo-img {
    height: 90px;
    margin-right: 12px;
  }
  .nav-container {
    height: 70px;
    padding: 0 8px;
  }
  .nav-links {
    gap: 0.3rem;
    font-size: 0.95em;
  }
  .about-content h2, .services h2, .contact-content h2 {
    font-size: 1.3rem;
  }
  .about-grid, .services-cards, .nedenbiz-grid, .blog-cards {
    gap: 1rem;
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
  }
  .service-card, .about-card, .nedenbiz-card, .blog-card {
    padding: 1.2rem 0.7rem;
    min-width: 0;
    width: 100%;
  }
  .contact-form-section, .contact-info-section {
    padding: 0;
  }
  .contact-form-card, .contact-info-card {
    padding: 1rem 0.5rem;
  }
  .contact-form-section .consent-text {
    font-size: 0.98em;
  }
}
@media (max-width: 480px) {
  .logo-img {
    height: 60px;
    margin-right: 6px;
  }
  .nav-container {
    height: 54px;
    padding: 0 2px;
  }
  .nav-links {
    gap: 0.1rem;
    font-size: 0.9em;
  }
  .service-card, .about-card, .nedenbiz-card, .blog-card {
    padding: 0.7rem 0.2rem;
  }
  .contact-form-card, .contact-info-card {
    padding: 0.5rem 0.2rem;
  }
}
@media (max-width: 600px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    justify-content: flex-start;
    position: absolute;
    top: 100px;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1001;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links li a {
    width: 100%;
    min-width: 0;
    height: 48px;
    text-align: left;
    margin-bottom: 0.5em;
    font-size: 1em;
    padding: 0;
    border-radius: 0.7em;
    justify-content: flex-start;
  }
  .nav-toggle {
    display: flex;
  }
  .maps-content iframe {
    height: 220px;
  }
  .nedenbiz-content h2, .maps-content h2 {
    font-size: 1.8rem;
  }
  .nedenbiz-grid {
    gap: 1.5rem;
  }
  .nedenbiz-card {
    padding: 2rem 1.5rem;
    width: 280px;
    min-height: 260px;
  }
  .nedenbiz-icon {
    font-size: 3rem;
  }
  .adres {
    font-size: 0.98rem;
    padding: 0.7rem 0.3rem;
  }
  .footer-social {
    gap: 14px;
  }
  .social-icons img {
    width: 24px;
    height: 24px;
    margin: 0 6px;
  }
  footer {
    padding: 28px 6px;
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .container {
    width: 98%;
  }
  .about-content h2, .services h2, .contact-content h2 {
    font-size: 1.3rem;
  }
  .about-grid {
    gap: 2rem;
  }
  .about-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  .about-stats {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .stat-item {
    padding: 0.8rem;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .about-story h3 {
    font-size: 1.4rem;
  }
  .about-story p {
    font-size: 1rem;
  }
  .value-item {
    font-size: 0.85rem;
    margin-bottom: 0.7rem;
    padding-bottom: 0.5rem;
  }
  .value-item strong {
    margin-bottom: 8px;
  }
  .service-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .nedenbiz-content h2 {
    font-size: 1.5rem;
  }
  .nedenbiz-card {
    padding: 1.8rem 1.2rem;
    width: 260px;
    min-height: 240px;
  }
  .nedenbiz-icon {
    font-size: 2.5rem;
  }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cardPop {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
[data-animate].animated {
  opacity: 1;
  transform: none;
}
footer * {
  color: #fff !important;
}

/* Policy Content Box Improvements */
.policy-content {
  background: #fff;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  margin: 3rem auto 2rem auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  line-height: 1.7;
  max-width: 900px;
  min-width: 0;
}
.policy-content h1 {
  color: #C8A951;
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.policy-content h2 {
  color: #C8A951;
  font-size: 1.35rem;
  margin: 2.2rem 0 1.1rem 0;
  font-weight: 600;
  border-bottom: 2px solid #C8A951;
  padding-bottom: 0.4rem;
}
.policy-content h3, .policy-content .policy-section-title {
  color: #C8A951;
  font-size: 1.15rem;
  margin: 2rem 0 1rem 0;
  font-weight: 600;
  border-bottom: 2px solid #C8A951;
  padding-bottom: 0.3rem;
}
.policy-content p {
  color: #222;
  font-size: 1.08rem;
  margin-bottom: 1.1rem;
  font-weight: 400;
}
.policy-content ul, .policy-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding-left: 1.5rem;
}
.policy-content li {
  color: #222;
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
  font-weight: 400;
}
.policy-content strong {
  color: #222;
  font-weight: 600;
}
@media (max-width: 900px) {
  .policy-content {
    padding: 2rem 1rem;
    margin: 2rem 0.5rem;
  }
  .policy-content h1 {
    font-size: 1.5rem;
  }
  .policy-content h2 {
    font-size: 1.1rem;
  }
}

/* Contact Info Box Improvements */
.form-success-message {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 2px solid #22c55e;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
  color: #166534;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
  animation: successFadeIn 0.5s ease-in-out;
  font-size: 1.08em;
  font-weight: 500;
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
#contactForm button,
.contact-form-panel button,
.kvkk-block button,
form button {
  width: 100% !important;
  display: block !important;
  margin: 24px auto 0 auto !important;
  border-radius: 32px !important;
  background: linear-gradient(90deg, #C8A951 0%, #e6d3a1 100%) !important;
  color: #fff !important;
  font-size: 1.18em !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 24px rgba(200,169,81,0.13) !important;
  border: none !important;
  padding: 16px 0 !important;
  letter-spacing: 0.7px !important;
  cursor: pointer !important;
  transition: background 0.25s, transform 0.18s, box-shadow 0.18s !important;
}
#contactForm button:hover,
.contact-form-panel button:hover,
.kvkk-block button:hover,
form button:hover {
  background: linear-gradient(90deg, #b89a45 0%, #C8A951 100%) !important;
  color: #fff !important;
  transform: translateY(-2px) scale(1.04) !important;
  box-shadow: 0 8px 32px rgba(200,169,81,0.18) !important;
}
#contactForm {
  padding-bottom: 0 !important;
}
.kvkk-block {
  margin-bottom: 0 !important;
}
.kvkk-consent {
  width: 100%;
  align-items: flex-start;
  margin-top: 8px;
  padding-left: 0;
}
.kvkk-checkbox-row {
  width: 100%;
  justify-content: flex-start;
}
.kvkk-label {
  text-align: left;
}
.kvkk-info {
  font-size: 0.97em;
  color: #B0892E;
  font-weight: 600;
  margin-left: 27px;
  margin-top: 2px;
  margin-bottom: 8px;
  line-height: 1.4;
}
.kvkk-info a {
  color: #B0892E;
  text-decoration: underline;
  font-weight: 700;
}
.form-label {
  font-size: 1.05em;
  color: #666;
  font-weight: 600;
  margin-bottom: 2px;
  display: block;
}
.field-error {
  font-size: 0.97em;
  color: #d32f2f;
  margin-top: 2px;
  min-height: 18px;
  display: block;
}
.footer-menu a, .footer-title, .footer-col a, .social-icons a {
  color: #fff !important;
}
.footer {
  margin-top: 0;
  padding-top: 32px;
}
.required-star {
  color: #d32f2f;
  font-weight: bold;
  margin-left: 2px;
}
.custom-checkbox {
  display: none;
}
.contact-info-highlight {
  font-size: 1.09em;
  font-weight: 600;
}
.form-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 0;
}
.form-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
}
#contactForm input,
#contactForm select,
#contactForm textarea {
  min-height: 52px;
  padding: 0.9rem 1.1rem;
  font-size: 1.08em;
}
#contactForm textarea {
  min-height: 110px;
  resize: vertical;
}
.form-label {
  margin-bottom: 4px;
}
.form-row:last-child {
  margin-bottom: 0;
}
.form-group[style] {
  width: 100% !important;
}
.kvkk-block .kvkk-info-inner {
  text-align: left;
}
@media (max-width: 700px) {
  .kvkk-block {
    margin-top: 18px;
  }
}
.container.contact-content {
  max-width: 1150px;
}
.kvkk-checkbox-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.kvkk-checkbox-row label, .kvkk-label {
  display: block;
  width: auto;
  margin: 0;
}
.recaptcha-box, .contact-single-column button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.contact-single-column button {
  width: 320px !important;
}
.stat-number-static {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  line-height: 1.1;
}
@media (max-width: 700px) {
  .nav-links li a {
    width: 100%;
    text-align: left;
    margin-bottom: 0.5em;
    font-size: 1em;
  }
}
@media (max-width: 700px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    justify-content: flex-start;
  }
}

.faq { background: #faf9f6; padding: 60px 0; }
.faq-content h2 { color: #C8A951; font-size: 2.1rem; text-align: center; margin-bottom: 2.2rem; font-weight: 900; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 14px; box-shadow: 0 2px 12px rgba(200,169,81,0.07); margin-bottom: 1.2rem; padding: 1.3rem 1.5rem; }
.faq-question { width: 100%; background: none; border: none; outline: none; color: #C8A951; font-weight: 700; font-size: 1.1rem; margin-bottom: 0; display: flex; align-items: center; justify-content: space-between; cursor: pointer; padding: 0; transition: color 0.2s; }
.faq-arrow { font-size: 1.2em; margin-left: 0.7em; transition: transform 0.3s cubic-bezier(.4,0,.2,1); }
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(.4,0,.2,1), opacity 0.3s; margin-top: 0; }
.faq-item.active .faq-answer {
  max-height: none;
  opacity: 1;
  margin-top: 0.7em;
}
.faq-item { transition: box-shadow 0.3s; }
.faq-item.active { box-shadow: 0 6px 24px rgba(200,169,81,0.13); }

.blog { background: #fff; padding: 60px 0; }
.blog-content h2 { color: #C8A951; font-size: 2.1rem; text-align: center; margin-bottom: 2.2rem; font-weight: 900; }
.blog-cards { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.blog-card {
  background: #faf9f6;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(200,169,81,0.07);
  padding: 2.1rem 1.3rem 1.3rem 1.3rem;
  width: 320px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s cubic-bezier(.4,0,.2,1);
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  animation: blogCardFadeIn 0.9s forwards;
}
.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-card:nth-child(5) { animation-delay: 0.5s; }
@keyframes blogCardFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.blog-card:hover {
  transform: translateY(-12px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(200,169,81,0.18), 0 2px 8px rgba(0,0,0,0.08);
  z-index: 2;
}
.blog-category {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  padding: 0.35em 1.1em;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  animation: blogCatFadeIn 0.7s forwards;
}
.blog-card:nth-child(1) .blog-category { animation-delay: 0.2s; }
.blog-card:nth-child(2) .blog-category { animation-delay: 0.3s; }
.blog-card:nth-child(3) .blog-category { animation-delay: 0.4s; }
.blog-card:nth-child(4) .blog-category { animation-delay: 0.5s; }
.blog-card:nth-child(5) .blog-category { animation-delay: 0.6s; }
@keyframes blogCatFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.blog-category.rehber { background: linear-gradient(90deg, #C8A951 60%, #e6c76b 100%); }
.blog-category.ipucu { background: linear-gradient(90deg, #4caf50 60%, #81c784 100%); }
.blog-category.haber { background: linear-gradient(90deg, #1976d2 60%, #64b5f6 100%); }
.blog-category.musteri { background: linear-gradient(90deg, #e91e63 60%, #f06292 100%); }
.blog-date {
  color: #b89a45;
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  margin-top: 1.2rem;
}
.blog-title {
  color: #C8A951;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  margin-top: 0.2rem;
  transition: color 0.2s;
}
.blog-card:hover .blog-title {
  color: #b89a45;
}
.blog-summary {
  color: #444;
  font-size: 1rem;
  margin-bottom: 1.1rem;
  line-height: 1.6;
}
.blog-link {
  color: #fff;
  background: linear-gradient(90deg, #C8A951 60%, #e6c76b 100%);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.7em 1.5em;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(200,169,81,0.13);
  display: inline-block;
  margin-top: auto;
}
.blog-link:hover {
  background: linear-gradient(90deg, #b89a45 60%, #a88a35 100%);
  color: #fffbe6;
  box-shadow: 0 4px 16px rgba(200,169,81,0.18);
}
@media (max-width: 900px) {
  .blog-cards { flex-direction: column; align-items: center; gap: 1.2rem; }
  .blog-card { width: 100%; max-width: 500px; }
}

/* Contact Social Buttons */
.contact-social-buttons {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #faf9f6 0%, #f5f5f5 100%);
  border-radius: 16px;
  border: 2px solid #e8e8e8;
}

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

.social-contact-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 2px solid transparent;
}

.social-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  border-color: #25D366;
}

.instagram-btn {
  background: linear-gradient(135deg, #E4405F 0%, #C13584 100%);
  color: white;
}

.instagram-btn:hover {
  background: linear-gradient(135deg, #C13584 0%, #833AB4 100%);
  border-color: #E4405F;
}

.facebook-btn {
  background: linear-gradient(135deg, #1877F2 0%, #0D6EFD 100%);
  color: white;
}

.facebook-btn:hover {
  background: linear-gradient(135deg, #0D6EFD 0%, #0A58CA 100%);
  border-color: #1877F2;
}

.social-icon {
  font-size: 1.2rem;
}

.social-text {
  font-weight: 600;
}

/* Enhanced Contact Info Box */
.contact-info-box {
  background: linear-gradient(135deg, #f7f7fa 0%, #f0f0f5 100%);
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #222;
  box-shadow: 0 4px 16px rgba(200,169,81,0.08);
  max-width: 420px;
  text-align: left;
}

.contact-info-highlight {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  line-height: 1.5;
}

.contact-info-highlight:last-child {
  margin-bottom: 0;
}

.contact-info-highlight .contact-icon {
  color: #C8A951;
  font-size: 1.3em;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.contact-info-highlight strong {
  color: #C8A951;
  font-weight: 700;
}

.contact-info-highlight a {
  color: #1a4d8c;
  text-decoration: underline;
  transition: color 0.2s;
}

.contact-info-highlight a:hover {
  color: #C8A951;
}

/* Enhanced Form Styling */
#contactForm input::placeholder,
#contactForm textarea::placeholder {
  color: #999;
  opacity: 1;
  font-size: 0.95em;
  font-family: inherit;
  letter-spacing: 0.2px;
}

#contactForm input:focus::placeholder,
#contactForm textarea:focus::placeholder {
  color: #C8A951;
  opacity: 0.7;
}

/* Enhanced Submit Button */
#contactForm button {
  background: linear-gradient(135deg, #C8A951 0%, #b89a45 100%);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(200,169,81,0.3);
  width: 100%;
  margin-top: 1rem;
  letter-spacing: 0.5px;
}

#contactForm button:hover {
  background: linear-gradient(135deg, #b89a45 0%, #a88a35 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,169,81,0.4);
}

#contactForm button:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(200,169,81,0.3);
}

/* Responsive Design for Contact Section */
@media (max-width: 900px) {
  .social-contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .social-contact-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .contact-info-highlight {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  
  .contact-info-highlight .contact-icon {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .contact-social-buttons {
    padding: 1rem;
  }
  
  .social-contact-btn {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
  
  .contact-info-box {
    padding: 1.2rem;
    font-size: 0.95rem;
  }
}

/* Modern Contact Section */
.contact {
  background: linear-gradient(135deg, #faf9f6 0%, #f5f5f5 100%);
  padding: 80px 0;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C8A951, #e6c76b);
}

/* Contact Header */
.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-title {
  color: #C8A951;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 2.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Info Section */
.contact-info-section {
  display: flex;
  flex-direction: column;
}

.contact-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(200,169,81,0.12);
  border: 2px solid #f0f0f0;
  height: fit-content;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(200,169,81,0.18);
  border-color: #C8A951;
}

.contact-section-title {
  color: #C8A951;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.contact-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #C8A951, #e6c76b);
  border-radius: 2px;
}

/* Contact Info Items */
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #faf9f6 0%, #f5f5f5 100%);
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
  border-color: #C8A951;
  transform: translateX(5px);
}

.contact-icon-wrapper {
  background: linear-gradient(135deg, #C8A951, #e6c76b);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(200,169,81,0.3);
}

.contact-icon {
  font-size: 1.5rem;
  color: #fff;
}

.contact-info-content h4 {
  color: #C8A951;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-info-content a,
.contact-info-content p {
  color: #444;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.contact-info-content a:hover {
  color: #C8A951;
  text-decoration: underline;
}

/* Contact Map */
.contact-map {
  margin-top: 1rem;
}

.contact-map iframe {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Contact Form Section */
.contact-form-section {
  display: flex;
  flex-direction: column;
}

.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(200,169,81,0.12);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.contact-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(200,169,81,0.18);
  border-color: #C8A951;
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

/* Form Labels */
.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #C8A951;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.label-icon {
  font-size: 1.1rem;
}

.required-star {
  color: #e74c3c;
  font-weight: 900;
}

/* Form Inputs */
#contactForm input,
#contactForm select,
#contactForm textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  background: #faf9f6;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
  outline: none;
  border-color: #C8A951;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200,169,81,0.1);
  transform: translateY(-2px);
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
  color: #999;
  opacity: 1;
}

#contactForm textarea {
  resize: vertical;
  min-height: 120px;
}

/* Form Consent */
.form-consent {
  margin-bottom: 2rem;
}

.consent-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #faf9f6;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
}

.consent-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  accent-color: #C8A951;
  border: 2px solid #C8A951;
  border-radius: 4px;
}

.consent-label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}

.consent-text a {
  color: #C8A951;
  text-decoration: underline;
}

.consent-text a:hover {
  color: #b89a45;
}

/* Form Actions */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.recaptcha-container {
  display: flex;
  justify-content: center;
}

.submit-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #C8A951 0%, #b89a45 100%);
  color: #fff;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(200,169,81,0.3);
  min-width: 200px;
  justify-content: center;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #b89a45 0%, #a88a35 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(200,169,81,0.4);
}

.submit-btn:active {
  transform: translateY(-1px);
}

.btn-icon {
  font-size: 1.2rem;
}

/* Social Media Section */
.contact-social-section {
  text-align: center;
  margin-top: 60px;
}

.social-header h3 {
  color: #C8A951;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.social-header p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1.2rem;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  border: 2px solid transparent;
}

.social-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.social-btn:hover::before {
  left: 100%;
}

.social-btn:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.social-icon {
  font-size: 2rem;
}

.social-text {
  font-size: 1rem;
  font-weight: 700;
}

.social-desc {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Social Button Colors */
.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
  border-color: #25D366;
}

.instagram-btn {
  background: linear-gradient(135deg, #E4405F 0%, #C13584 100%);
}

.instagram-btn:hover {
  border-color: #E4405F;
}

.facebook-btn {
  background: linear-gradient(135deg, #1877F2 0%, #0D6EFD 100%);
}

.facebook-btn:hover {
  border-color: #1877F2;
}

.youtube-btn {
  background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.youtube-btn:hover {
  border-color: #FF0000;
}

.linkedin-btn {
  background: linear-gradient(135deg, #0077B5 0%, #005885 100%);
}

.linkedin-btn:hover {
  border-color: #0077B5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
  
  .contact-title {
    font-size: 2.5rem;
  }
  
  .contact-subtitle {
    font-size: 1.1rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .social-buttons {
    gap: 1rem;
  }
  
  .social-btn {
    min-width: 120px;
    padding: 1.2rem 1rem;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 2rem;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem;
  }
  
  .contact-info-item {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .contact-icon-wrapper {
    align-self: center;
  }
  
  .social-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .social-btn {
    width: 100%;
    max-width: 200px;
  }
}

/* Success Message */
.form-success-message {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 2px solid #22c55e;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
  color: #166534;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
  animation: successFadeIn 0.5s ease-in-out;
  font-weight: 600;
}

/* Field Errors */
.field-error {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 0.3rem;
  display: block;
} 

/* Blog Post Styles */
.blog-post {
  background: #faf9f6;
  min-height: 100vh;
  padding: 40px 0;
}

.blog-post .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.blog-content {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.blog-header {
  margin-bottom: 3rem;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 2rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.blog-category {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-category.rehber { background: linear-gradient(90deg, #C8A951 60%, #e6c76b 100%); }
.blog-category.ipucu { background: linear-gradient(90deg, #4caf50 60%, #81c784 100%); }
.blog-category.haber { background: linear-gradient(90deg, #1976d2 60%, #64b5f6 100%); }
.blog-category.musteri { background: linear-gradient(90deg, #e91e63 60%, #f06292 100%); }

.blog-date {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}

.blog-read-time {
  color: #888;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.blog-excerpt {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  font-weight: 400;
}

.blog-body {
  line-height: 1.7;
}

.blog-section {
  margin-bottom: 3rem;
}

.blog-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #C8A951;
  margin-bottom: 1.5rem;
  border-left: 4px solid #C8A951;
  padding-left: 1rem;
}

.blog-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin: 2rem 0 1rem 0;
}

.blog-section p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.blog-section ul, .blog-section ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.blog-section li {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.blog-section strong {
  color: #C8A951;
  font-weight: 600;
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 4px solid #C8A951;
}

.info-box h3 {
  color: #C8A951;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.info-box p {
  margin: 0;
  color: #555;
}

/* Customer Quote */
.customer-quote {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  border-left: 4px solid #C8A951;
}

.customer-quote blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #333;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.customer-quote cite {
  font-weight: 600;
  color: #C8A951;
  font-style: normal;
}

/* Timeline */
.timeline {
  margin: 2rem 0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-marker {
  background: #C8A951;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.timeline-content h4 {
  color: #C8A951;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #666;
  margin: 0;
}

/* Process Steps */
.process-steps {
  margin: 2rem 0;
}

.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.step-number {
  background: #C8A951;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-content h3 {
  color: #C8A951;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.step-content p {
  color: #555;
  margin: 0;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-item {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-item h3 {
  color: #C8A951;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.feature-item p {
  color: #555;
  margin: 0;
  font-size: 1rem;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit-item {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}

.benefit-item:hover {
  border-color: #C8A951;
  transform: translateY(-2px);
}

.benefit-item h3 {
  color: #C8A951;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.benefit-item p {
  color: #555;
  margin: 0;
}

/* Benefits List */
.benefits-list {
  margin: 2rem 0;
}

.benefit-item {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid #C8A951;
}

.benefit-item h3 {
  color: #C8A951;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.benefit-item p {
  color: #555;
  margin: 0;
}

/* Insurance Types */
.insurance-types {
  margin: 2rem 0;
}

.type-item {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #C8A951;
}

.type-item h3 {
  color: #C8A951;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.type-item p {
  color: #555;
  margin-bottom: 1rem;
}

.type-item ul {
  margin: 0;
  padding-left: 1.5rem;
}

.type-item li {
  color: #666;
  margin-bottom: 0.5rem;
}

/* Checklist */
.checklist {
  margin: 2rem 0;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
}

.check-icon {
  color: #4caf50;
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.check-content h4 {
  color: #C8A951;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.check-content p {
  color: #555;
  margin: 0;
}

/* Important Details */
.important-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.detail-item {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.3s;
}

.detail-item:hover {
  border-color: #C8A951;
}

.detail-item h3 {
  color: #C8A951;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.detail-item p {
  color: #555;
  margin: 0;
}

/* Common Mistakes */
.common-mistakes {
  margin: 2rem 0;
}

.mistake-item {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid #f39c12;
}

.mistake-item h3 {
  color: #d68910;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.mistake-item p {
  color: #856404;
  margin: 0;
}

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

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.comparison-table th {
  background: #C8A951;
  color: #fff;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  color: #555;
}

.comparison-table tr:hover {
  background: #f8f9fa;
}

/* Expert Tips */
.expert-tips {
  margin: 2rem 0;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  background: #e8f5e8;
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid #4caf50;
}

.tip-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.tip-content h3 {
  color: #2e7d32;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tip-content p {
  color: #388e3c;
  margin: 0;
}

/* Online Process */
.online-process {
  margin: 2rem 0;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s;
}

.process-step:hover {
  transform: translateX(5px);
}

.step-number {
  background: #C8A951;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-content h3 {
  color: #C8A951;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.step-content p {
  color: #555;
  margin: 0;
}

/* Calculation Examples */
.calculation-example {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  border-left: 4px solid #C8A951;
}

.calculation-example h3 {
  color: #C8A951;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.calc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid #e9ecef;
}

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

.calc-item.total {
  font-weight: 700;
  color: #C8A951;
  font-size: 1.1rem;
}

.calc-label {
  color: #555;
  font-weight: 500;
}

.calc-value {
  color: #C8A951;
  font-weight: 600;
}

/* Claim Details */
.claim-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.detail-item {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.3s;
}

.detail-item:hover {
  border-color: #C8A951;
}

.detail-item h3 {
  color: #C8A951;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.detail-item p {
  color: #555;
  margin: 0;
  font-weight: 500;
}

/* Why Choose Us */
.why-choose-us {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.reason-item {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.reason-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.reason-item h3 {
  color: #C8A951;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.reason-item p {
  color: #555;
  margin: 0;
}

/* Customer Testimonial */
.customer-testimonial {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  border-left: 4px solid #C8A951;
}

.testimonial-content p {
  font-size: 1.2rem;
  font-style: italic;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-info h4 {
  color: #C8A951;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.author-info span {
  color: #666;
  font-size: 0.9rem;
}

.rating {
  margin-top: 0.5rem;
}

.star {
  color: #ffc107;
  font-size: 1.1rem;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, #C8A951 0%, #e6c76b 100%);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
  color: #fff;
}

.cta-box h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #fff;
  opacity: 0.9;
}

.cta-box .cta-btn {
  background: #fff;
  color: #C8A951;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-box .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Blog Footer */
.blog-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #f0f0f0;
}

.blog-tags {
  margin-bottom: 2rem;
}

.tag {
  display: inline-block;
  background: #f0f0f0;
  color: #666;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  transition: background 0.3s, color 0.3s;
}

.tag:hover {
  background: #C8A951;
  color: #fff;
}

.blog-share h4 {
  color: #C8A951;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.share-btn:hover {
  transform: translateY(-2px);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-widget {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.sidebar-widget h3 {
  color: #C8A951;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 0.8rem;
}

/* Related Posts */
.related-posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-post {
  display: block;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.related-post:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.related-post h4 {
  color: #C8A951;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.post-date {
  color: #666;
  font-size: 0.85rem;
}

/* Service Links */
.service-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-link {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: #555;
  transition: background 0.3s, color 0.3s;
}

.service-link:hover {
  background: #C8A951;
  color: #fff;
}

.service-icon {
  font-size: 1.2rem;
  margin-right: 0.8rem;
}

/* Contact Info */
.contact-info {
  text-align: center;
}

.contact-info p {
  margin-bottom: 1rem;
  color: #555;
}

.contact-info a {
  color: #C8A951;
  text-decoration: none;
  font-weight: 500;
}

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

.contact-btn {
  display: inline-block;
  background: #C8A951;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 1rem;
  transition: background 0.3s, transform 0.3s;
}

.contact-btn:hover {
  background: #b89a45;
  transform: translateY(-2px);
}

/* Calculator Styles */
.bes-calculator, .life-calculator, .quote-comparison {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
}

.calc-input, .comparison-input {
  margin-bottom: 1rem;
}

.calc-input label, .comparison-input label {
  display: block;
  color: #555;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.calc-input input, .comparison-input input, .comparison-input select {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.calc-input input:focus, .comparison-input input:focus, .comparison-input select:focus {
  border-color: #C8A951;
  outline: none;
}

.calc-result, .comparison-result {
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.calc-btn, .compare-btn {
  width: 100%;
  background: #C8A951;
  color: #fff;
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.calc-btn:hover, .compare-btn:hover {
  background: #b89a45;
}

/* Customer Reviews */
.customer-reviews {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-item {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
  border-left: 3px solid #C8A951;
}

.review-stars {
  color: #ffc107;
  margin-bottom: 0.5rem;
}

.review-item p {
  color: #555;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.reviewer {
  color: #C8A951;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Comparison Results */
.comparison-results {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.company-result {
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.5rem;
  border-left: 3px solid #C8A951;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blog-post .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .blog-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .blog-content {
    padding: 2rem;
  }
  
  .blog-title {
    font-size: 2rem;
  }
  
  .feature-grid, .benefits-grid, .important-details, .why-choose-us {
    grid-template-columns: 1fr;
  }
  
  .timeline-item, .step-item, .process-step {
    flex-direction: column;
    text-align: center;
  }
  
  .timeline-marker, .step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .calc-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .share-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .blog-content {
    padding: 1.5rem;
  }
  
  .blog-title {
    font-size: 1.8rem;
  }
  
  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .sidebar-widget {
    padding: 1.5rem;
  }
}

/* Override for Hizmetlerimiz icons */
.services-cards .service-icon {
  font-size: 4.5rem !important;
  margin-bottom: 1.2rem;
}

/* Büyütülmüş iletişim sosyal medya ikonları */
.contact-social-section .social-svg img {
  height: 48px !important;
  width: 48px !important;
}

/* İletişim formu için checkbox boyutu */
.contact-form-section input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.contact-form-section .consent-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-form-section .consent-item input[type="checkbox"] {
  margin-top: 4px;
}
.contact-form-section .consent-label {
  display: block;
  width: 100%;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100vw;
    max-width: 100vw;
    box-shadow: 0 8px 32px rgba(200,169,81,0.10);
    z-index: 999;
    display: none;
    padding: 0.5rem 0 1rem 0;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-toggle {
    display: flex;
    margin-left: 12px;
    z-index: 1001;
  }
  .nav-links li a {
    width: 100vw;
    min-width: 0;
    justify-content: flex-start;
    padding: 1rem 2rem;
    font-size: 1.1em;
    border-radius: 0;
    background: none;
    box-shadow: none;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav-links li:last-child a {
    border-bottom: none;
  }
}

/* === Responsive Fixes for All Devices (AI-2024) === */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Tüm kutu ve metin alanlarında taşmayı önle */
.info-box,
.contact-info-box,
.kvkk-block,
.form-group,
.contact-form-card,
.contact-info-card,
.blog-card,
.service-card,
.about-card,
.nedenbiz-card {
  word-break: break-word;
  overflow-wrap: break-word;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  /* Kutu ve grid genişliklerini sınırla */
  .info-box,
  .contact-info-box,
  .form-group,
  .contact-form-card,
  .contact-info-card,
  .blog-card,
  .service-card,
  .about-card,
  .nedenbiz-card {
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    margin: 0 0 16px 0 !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  /* Form ve checkbox alanlarını mobilde düzelt */
  .kvkk-checkbox-row {
    flex-direction: column !important;
    gap: 6px !important;
    align-items: flex-start !important;
  }
  .kvkk-label, .kvkk-info {
    font-size: 0.98em !important;
    line-height: 1.3 !important;
    margin-left: 0 !important;
  }
  .contact-form-card, .contact-info-card {
    padding: 0.5rem 0.2rem !important;
  }
  /* Buton ve input'lar kutudan taşmasın */
  #contactForm input,
  #contactForm textarea,
  #contactForm button {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
}

/* === Mobilde Kart Genişliği ve Hizalama Eşitleme (AI-2024) === */
@media (max-width: 700px) {
  .service-card,
  .about-card,
  .nedenbiz-card,
  .blog-card,
  .contact-form-card,
  .contact-info-card,
  .info-box,
  .contact-info-box {
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 18px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    display: block !important;
  }
  /* Kartları ortala ve taşmayı engelle */
  .services-cards,
  .about-grid,
  .nedenbiz-grid,
  .blog-cards {
    justify-content: center !important;
    align-items: center !important;
    gap: 1.2rem !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* === Mobilde İletişim Kartı Ortalama Düzeltmesi (AI-2024) === */
@media (max-width: 700px) {
  .contact-info-box,
  .info-box {
    margin-left: auto !important;
    margin-right: auto !important;
    left: 0 !important;
    right: 0 !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    display: block !important;
  }
}

/* === Mobilde İletişim Kartı Tam Ortalama Garantisi (AI-2024) === */
@media (max-width: 700px) {
  .container.contact-content,
  .contact-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: visible !important;
  }
  .contact-info-box,
  .info-box {
    margin-left: auto !important;
    margin-right: auto !important;
    left: 0 !important;
    right: 0 !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    display: block !important;
  }
}

/* === Modern ve Tutarlı Font Büyüklükleri (AI-2024) === */

/* Masaüstü (varsayılan) */
h1, .hero-content h1, .policy-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
}
h2, .about-content h2, .services h2, .contact-content h2, .policy-content h2, .blog-content h2, .faq-content h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}
h3, .about-card h3, .service-card h3, .nedenbiz-card h3, .policy-content h3, .blog-title, .contact-section-title, .faq-question {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.25;
}
h4, .footer-title, .blog-category, .author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
}
p, .about-main-text, .about-card p, .service-card p, .nedenbiz-card p, .policy-content p, .blog-summary, .contact-desc, .form-label, .contact-info-box, .info-box, .footer, .footer-bottom, .footer-menu a, .contact-info-content p {
  font-size: 1rem;
  line-height: 1.7;
}
label, .form-label {
  font-size: 1rem;
}
input, textarea, select, button, #contactForm input, #contactForm textarea, #contactForm button {
  font-size: 1rem;
}
.cta-btn, .service-btn, .submit-btn, .contact-btn {
  font-size: 1.1rem;
  font-weight: 700;
}
.footer, .footer-bottom, .footer-menu a {
  font-size: 0.95rem;
}
.small, .field-error, .form-success-message, .blog-date, .blog-read-time {
  font-size: 0.9rem;
}

/* Mobil (max-width: 700px) */
@media (max-width: 700px) {
  h1, .hero-content h1, .policy-content h1 {
    font-size: 2rem;
  }
  h2, .about-content h2, .services h2, .contact-content h2, .policy-content h2, .blog-content h2, .faq-content h2 {
    font-size: 1.5rem;
  }
  h3, .about-card h3, .service-card h3, .nedenbiz-card h3, .policy-content h3, .blog-title, .contact-section-title, .faq-question {
    font-size: 1.1rem;
  }
  h4, .footer-title, .blog-category, .author-info h4 {
    font-size: 1rem;
  }
  p, .about-main-text, .about-card p, .service-card p, .nedenbiz-card p, .policy-content p, .blog-summary, .contact-desc, .form-label, .contact-info-box, .info-box, .footer, .footer-bottom, .footer-menu a, .contact-info-content p {
    font-size: 0.98rem;
  }
  label, .form-label {
    font-size: 0.98rem;
  }
  input, textarea, select, button, #contactForm input, #contactForm textarea, #contactForm button {
    font-size: 0.98rem;
  }
  .cta-btn, .service-btn, .submit-btn, .contact-btn {
    font-size: 1rem;
  }
  .footer, .footer-bottom, .footer-menu a {
    font-size: 0.9rem;
  }
  .small, .field-error, .form-success-message, .blog-date, .blog-read-time {
    font-size: 0.85rem;
  }
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google reCAPTCHA */
.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

/* Google re