body {
    margin: 0;
}
article, aside, footer, header, nav, section, figcaption, figure, main {
    display: block;
}
figure {
    margin: 1em 40px;
}
[hidden] {
    display: none;
}

/* Columns and layout */
* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}
#__bs_notify__ {
    display: none !important;
}
main {
    margin: 0 auto;
    padding: 0 2rem;
    max-width: 1280px;
    width: 100%;
}
.module {
    margin: 8rem 0;
    padding: 2rem;
}
.flex-grid {
    display: flex;
    justify-content: center;
}
.col {
    flex: 1;
    padding: 2rem;
    position: relative;
}
.col:nth-child(n+1) {
    margin-left: 2rem;
}
.col.vertical-align {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.single-column .col {
    margin-left: auto;
    margin-right: auto;
    max-width: 60rem;
    width: 100%;
}
@media (max-width: 680px) {
    .flex-grid {
        display: block;
    }
    .single-column .col {
        margin: 2rem;
        width: auto;
    }
}
/* Text styles */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans'), local('OpenSans'), url(https://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3bO3LdcAZYWl9Si6vvxL-qU.woff) format('woff');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v13/k3k702ZOKiLJc3WVjuplzKRDOzjiPcYnFooOUGCOsRk.woff) format('woff');
}
html {
    background: #F9FCFF;
    color: #333;
    font-size: 10px;
    font-family: Open Sans, sans-serif;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
body {
    font-size: 1.8rem;
}
h2, h3 {
    margin-bottom: 0;
}
h1 {
    font-size: 4.8rem;
}
h2 {
    font-size: 2.4rem;
}
h3 {
    font-size: 1.8rem;
}
h4, h5 {
    font-size: 1.4rem;
    text-transform: uppercase;
}
p, li {
    font-size: 1.8rem;
    line-height: 1.5;
}
a {
    font-weight: bold;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.calls-to-action {
    margin: 8rem 0 16rem;
}
.calls-to-action h2 {
    margin-bottom: 2rem;
}
.calls-to-action .col {
    min-height: 32rem;
    margin-top: 2rem;
    text-align: center;
}
.calls-to-action .col p:nth-child(2) {
    flex-grow: 1;
}
.calls-to-action .col.most-popular {
    background: #fff;
    border: 2px solid rgba(0,0,0,0.2);
    border-radius: .8rem;
    margin-top: 4em;
    transform: scale(1.2);
}
.section-title {
    text-align: center;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #111;
}

.btn-fancy {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 1rem;
  font-size: 1rem;
  color: white;
  background: linear-gradient(135deg, #3498db, #8e44ad);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.btn-fancy:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #8e44ad, #3498db);
}

.btn-fancy {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
