/* RESET AND BASE --------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F7F7F7;
  color: #232834;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img, picture { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; letter-spacing: -0.5px; color: #2A4373; }
strong { font-weight: bold; }
button, input, select, textarea {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
}
::-webkit-input-placeholder { color: #999; }
:-ms-input-placeholder { color: #999; }
::placeholder { color: #999; }

/* BRAND COLORS -------------------------------------------------------- */
:root {
  --primary: #2A4373;
  --secondary: #8AC94D;
  --accent: #F7F7F7;
  --white: #fff;
  --black: #10121b;
  --danger: #ff256f;
  --info: #20c9f6;
  --warning: #FFE156;
  --neutral-dark: #232834;
  --neutral-light: #EAF0F9;
  --shadow: rgba(42,67,115,0.08);
}

/* TYPOGRAPHY ---------------------------------------------------------- */
body { font-size: 16px; }
h1 { font-size: 2.75rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 8px; }
.section h2, .section h1 { letter-spacing: -1px; }
.subheadline { font-size: 1.25rem; color: var(--secondary); margin-bottom: 20px; font-family: 'Montserrat', Arial, sans-serif; letter-spacing: 0; }
p, ul, ol, .note, .newsletter-signup p { margin-bottom: 16px; }

/* LAYOUT CONTAINERS --------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 32px var(--shadow);
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 12px 34px rgba(42,67,115,0.17);
  transform: translateY(-6px) scale(1.02);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 16px var(--shadow);
  border-left: 6px solid var(--secondary);
  transition: box-shadow 0.18s, border-color 0.3s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(138,201,77,0.22);
  border-left-color: var(--primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 10px var(--shadow);
  margin-bottom: 20px;
  min-width: 210px;
}

/* HEADER & NAVIGATION ------------------------------------------------- */
header {
  background: linear-gradient(93deg, #2A4373 94%, #8AC94D 100%);
  box-shadow: 0 2px 12px var(--shadow);
  padding: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: 1rem;
  transition: color 0.18s;
  padding: 6px 6px;
  border-radius: 3px;
  position: relative;
}
header nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
  transition: width 0.23s;
  margin-top: 2px;
}
header nav a:hover, header nav a:focus {
  color: var(--secondary);
}
header nav a:hover:after, header nav a:focus:after {
  width: 100%;
}
.cta-button {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 32px;
  box-shadow: 0 2px 10px rgba(138,201,77,0.12);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s, border-color 0.23s;
  margin-left: 16px;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: var(--primary);
  color: var(--white);
  border-color: var(--secondary);
  box-shadow: 0 6px 22px rgba(42,67,115,0.19);
}
header .mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.16s, box-shadow 0.15s;
  box-shadow: 0 2px 10px var(--shadow);
}
header .mobile-menu-toggle:active,
header .mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--secondary);
}

/* MOBILE MENU -------------------------------------------------------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, var(--primary) 88%, var(--secondary) 100%);
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(0.77,0.02,0.24,1);
  z-index: 98;
  padding: 32px 24px 24px 24px;
  box-shadow: 6px 0 24px rgba(42,67,115,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--secondary);
  color: var(--primary);
  border: none;
  font-size: 2.3rem;
  line-height: 1;
  padding: 1px 16px;
  border-radius: 40px;
  margin-bottom: 18px;
  align-self: flex-end;
  box-shadow: 0 2px 10px var(--shadow);
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-close:hover { background: var(--danger); color: var(--white); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin-top: 16px;
}
.mobile-nav a {
  color: var(--white);
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 4px;
  margin-bottom: 4px;
  transition: background 0.18s, color 0.16s;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* MAIN HERO ---------------------------------------------------------- */
.hero {
  min-height: 62vh;
  background: linear-gradient(99deg, #8AC94D 0%, #2A4373 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 60px 0 40px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
}
.hero h1, .hero h2, .hero .subheadline {
  color: var(--white);
}
.hero .cta-button {
  margin-top: 20px;
  background: var(--white);
  color: var(--secondary);
  border-color: var(--white);
  box-shadow: 0 4px 22px rgba(255,255,255,0.07);
}
.hero .cta-button:hover {
  color: var(--primary);
  background: var(--secondary);
  border-color: var(--white);
}

/* FEATURES & SERVICE SECTIONS ----------------------------------------- */
.features, .services {
  background: var(--accent);
  border-radius: 32px;
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  margin-top: 6px;
}
.feature-grid li {
  background: var(--white);
  padding: 18px 22px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  min-width: 220px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: box-shadow 0.16s, transform 0.14s;
  margin-bottom: 12px;
}
.feature-grid li img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  filter: saturate(1.2) drop-shadow(0 2px 8px rgba(138,201,77,0.09));
}
.feature-grid li:hover { box-shadow: 0 8px 24px #8AC94D33; transform: scale(1.04); }
.details-list {
  margin-bottom: 12px;
}
.details-list li {
  padding-left: 10px;
  border-left: 4px solid var(--secondary);
  margin-bottom: 12px;
  color: var(--neutral-dark);
  background: var(--neutral-light);
  border-radius: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 1rem;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.service-list li {
  flex: 1 1 270px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 16px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
  transition: box-shadow 0.18s, transform 0.14s;
}
.service-list li:hover {
  box-shadow: 0 8px 32px rgba(42,67,115,0.15);
  transform: scale(1.025);
}
.service-list span {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 6px;
}
.note {
  color: var(--danger);
  background: #FFF6F8;
  border-left: 6px solid var(--danger);
  border-radius: 12px;
  padding: 14px 26px;
  font-size: 0.96rem;
  margin-top: 14px;
  margin-bottom: 18px;
}

/* PRICING TABLE ------------------------------------------------------- */
.price-table {
  width: 100%;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 24px var(--shadow);
  border-collapse: collapse;
  margin-bottom: 28px;
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 18px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  text-align: left;
}
.price-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  border-bottom: 3px solid var(--secondary);
}
.price-table tr:nth-child(even) td {
  background: #f1faf1;
}
.price-table tr:nth-child(odd) td {
  background: var(--white);
}
.price-table td {
  color: var(--primary);
}

/* TESTIMONIALS -------------------------------------------------------- */
.testimonials {
  background: var(--neutral-light);
  border-radius: 32px;
  margin-bottom: 60px;
}
.testimonials h2, .testimonials h1 { color: var(--primary); }
.testimonial-card p {
  color: var(--neutral-dark);
  font-size: 1.07rem;
  margin-bottom: 6px;
}
.testimonial-card strong {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  margin-left: 2px;
}
.testimonial-card span {
  color: var(--secondary);
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.01rem;
  color: var(--primary);
  margin-top: 4px;
}

/* CALL TO ACTION ------------------------------------------------------ */
.cta {
  background: var(--primary);
  border-radius: 32px;
  color: var(--white);
  margin-bottom: 60px;
}
.cta h2, .cta p { color: var(--white); }
.cta .cta-button {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--white);
  margin-top: 12px;
}
.cta .cta-button:hover {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--secondary);
}

/* TEXT SECTIONS ------------------------------------------------------- */
.text-section {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 2px 16px var(--shadow);
  padding: 32px 24px;
  margin-bottom: 40px;
}
.text-section ul {
  margin-bottom: 10px;
  margin-top: 12px;
}
.text-section li {
  margin-bottom: 8px;
  padding-left: 12px;
  border-left: 3px solid var(--secondary);
  color: var(--primary);
  background: var(--neutral-light);
  border-radius: 6px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 1rem;
}

/* CONTACT MAP PLACEHOLDER --------------------------------------------- */
.map-placeholder {
  background: var(--neutral-light);
  color: var(--primary);
  text-align: center;
  border-radius: 14px;
  padding: 24px;
  margin-top: 28px;
  font-size: 1.05rem;
  box-shadow: 0 1px 8px var(--shadow);
}

/* FOOTER -------------------------------------------------------------- */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 38px 0 0 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 12px var(--shadow);
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 30px;
}
.footer-nav, .footer-brand, .footer-social, .newsletter-signup {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav {
  min-width: 210px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  margin-bottom: 3px;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.14s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  border-color: var(--secondary);
  color: var(--white);
}
.footer-brand {
  align-items: center;
  gap: 6px;
}
.footer-brand img {
  width: 44px;
  height: 44px;
}
.footer-social {
  gap: 7px;
  flex-direction: row;
  margin-top: 8px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  transition: transform 0.19s, filter 0.17s;
  filter: brightness(1) saturate(1);
}
.footer-social a:hover img {
  filter: brightness(1.25) saturate(1.3) drop-shadow(0 6px 12px rgba(138,201,77,0.19));
  transform: scale(1.18) rotate(-7deg);
}
.newsletter-signup {
  flex: 1 1 250px;
  gap: 12px;
  margin-top: 2px;
}
.newsletter-signup form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter-signup input[type="email"] {
  border-radius: 22px;
  border: none;
  padding: 9px 20px;
  font-size: 1rem;
  min-width: 180px;
}
.newsletter-signup button {
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 22px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.newsletter-signup button:hover:not(:disabled) {
  background: var(--white);
  color: var(--secondary);
}
.newsletter-signup input[disabled],
.newsletter-signup button[disabled] {
  opacity: 0.6;
  pointer-events: none;
  background: #e3e3e3;
  color: #888;
}

/* COOKIE CONSENT BANNER ----------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--primary);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 20px 20px 14px 20px;
  box-shadow: 0 -2px 24px var(--shadow);
  transition: transform 0.38s cubic-bezier(0.77,0.02,0.24,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  text-align: center;
  color: var(--white);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 24px;
  padding: 10px 26px;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--shadow);
  transition: background 0.14s, color 0.13s;
}
.cookie-banner .accept-all {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .accept-all:hover {
  background: var(--white);
  color: var(--secondary);
}
.cookie-banner .reject-all {
  background: var(--danger);
  color: var(--white);
}
.cookie-banner .reject-all:hover {
  background: var(--white);
  color: var(--danger);
}
.cookie-banner .cookie-settings {
  background: var(--white);
  color: var(--secondary);
}
.cookie-banner .cookie-settings:hover {
  background: var(--secondary);
  color: var(--white);
}

/* COOKIE SETTINGS MODAL ----------------------------------------------- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 205;
  background: rgba(42,67,115,0.64);
  animation: fadeInModal 0.21s ease;
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-inner {
  background: var(--white);
  color: var(--primary);
  border-radius: 22px;
  box-shadow: 0 6px 40px rgba(42,67,115,0.18), 0 1.5px 8px var(--secondary);
  padding: 36px 26px 28px 26px;
  min-width: 320px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  animation: modalBounceIn 0.36s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes modalBounceIn {
  0% { transform: scale(0.9) translateY(22px); opacity: 0; }
  80% { transform: scale(1.02) translateY(-9px); opacity: 0.87; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-inner h3 { margin-bottom: 20px; color: var(--primary); }
.cookie-modal-inner .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
  font-size: 1.05rem;
}
.cookie-modal-inner .cookie-category label {
  font-weight: 600;
  color: var(--primary);
}
.cookie-modal-inner .cookie-category input[type="checkbox"] {
  width: 28px;
  height: 28px;
  accent-color: var(--secondary);
  border-radius: 8px;
}
.cookie-modal-inner .essential-cookies [type="checkbox"] {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal-inner .cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  color: var(--danger);
  font-size: 2.2rem;
  border: none;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover {
  color: var(--primary);
}


/* RESPONSIVE DESIGN --------------------------------------------------- */
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
}
@media (max-width: 992px) {
  .container { max-width: 800px; }
  .feature-grid, .service-list, .footer-nav, .footer-brand, .footer-social, .newsletter-signup, .content-grid, .card-container {
    gap: 16px;
  }
  .features, .services, .testimonials, .cta { padding-left: 8px; padding-right: 8px; }
}
@media (max-width: 830px) {
  .container { max-width: 94vw; }
  header .container, footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 12px 0 12px;
  }
  .footer-social {
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; padding-left: 8px; padding-right: 8px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .subheadline { font-size: 1rem; }
  .section, .features, .services, .cta, .testimonials {
    padding: 30px 8px;
    border-radius: 18px;
    margin-bottom: 40px;
  }
  .card { padding: 18px 11px; border-radius: 13px; }
  .card-container, .content-grid, .feature-grid, .service-list {
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
  .testimonial-card { border-radius: 9px; padding: 12px; gap: 11px; }
  .newsletter-signup form { flex-direction: column; gap: 8px; }
  header .container {
    flex-direction: row;
    height: 55px;
    gap: 6px;
    padding: 6px 8px 0 8px;
  }
  header nav {
    display: none;
  }
  header .cta-button { display: none; }
  header .mobile-menu-toggle { display: flex; }
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 2px 8px 0 8px;
  }
  .footer-nav, .footer-brand, .footer-social, .newsletter-signup {
    min-width: 0;
    width: 100%;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.24rem; }
  h2 { font-size: 1rem; }
  .subheadline { font-size: 0.98rem; }
  .cta-button, .newsletter-signup button, .cookie-banner button {
    font-size: 0.98rem;
    padding: 8px 15px;
  }
  .testimonial-card, .services li, .feature-grid li, .newsletter-signup, .map-placeholder, .text-section, .card {
    padding: 10px 6px;
    border-radius: 7px;
    font-size: 0.95rem;
  }
  .cookie-modal-inner {
    padding: 20px 7px 10px 7px;
    min-width: 180px;
  }
  .cookie-banner { padding: 12px 5px 10px 5px; font-size: 0.93rem; }
}

/* ACCESSIBILITY ENHANCEMENTS ------------------------------------------ */
a:focus, button:focus, input:focus {
  outline: 2px dashed var(--secondary);
  outline-offset: 2px;
}

/* UTILITIES ----------------------------------------------------------- */
.hide { display: none!important; }
.visible { display: block!important; }
.text-center { text-align: center!important; }

/* END OF STYLE -------------------------------------------------------- */
