iframe {
    width: 100%;
    height: 100vh;
    border: none;
}
* {
    margin: 0;
    padding: 0;
    text-indent: 0;
}

.s1 {
    color: black;
    font-family: Calibri, sans-serif;
    font-style: normal;
    font-weight: bold;
    text-decoration: underline;
    font-size: 12pt;
}

.p,
p {
    color: black;
    font-family: Calibri, sans-serif;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    font-size: 12pt;
    margin: 0pt;
}

.s2 {
    color: #467886;
    font-family: Calibri, sans-serif;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    font-size: 12pt;
}

.s3 {
    color: #467886;
    font-family: Calibri, sans-serif;
    font-style: normal;
    font-weight: normal;
    text-decoration: underline;
    font-size: 12pt;
}

.noborder {
    border: none;
    padding-left: 50px;
}

h1 {
    color: black;
    font-family: Calibri, sans-serif;
    font-style: normal;
    font-weight: bold;
    text-decoration: none;
    font-size: 12pt;
}

li {
    display: block;
}

#l1 {
    padding-left: 0pt;
    counter-reset: c1 1;
}

#l1 > li > *:first-child:before {
    counter-increment: c1;
    content: counter(c1, decimal) ". ";
    color: black;
    font-family: Calibri, sans-serif;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    font-size: 12pt;
}

#l1 > li:first-child > *:first-child:before {
    counter-increment: c1 0;
}

#l2,
#l3,
#l4 {
    padding-left: 0pt;
}

#l2 > li > *:first-child:before,
#l3 > li > *:first-child:before,
#l4 > li > *:first-child:before {
    content: "- ";
    color: black;
    font-family: Calibri, sans-serif;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    font-size: 12pt;
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(170, 79, 255, 0.15);
}

.btn-custom {
    background: white;
    border: 2px solid #e5e7eb;
    color: #374151;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: #AA4FFF;
    border-color: #AA4FFF;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(170, 79, 255, 0.3);
}

.btn-custom:hover,
.hover-lift:hover {
    background: #AA4FFF;
    border-color: #AA4FFF;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(170, 79, 255, 0.3);
}

.office-btn {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.office-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(170, 79, 255, 0.3);
}

.accordion-section {
    transition: all 0.3s ease;
    background: white;
    border: 1px solid #e5e7eb;
}

.nav-link {
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #AA4FFF !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #AA4FFF;
    border-radius: 2px;
}

.card-hover {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.card-hover:hover {
    border-color: #AA4FFF;
    box-shadow: 0 8px 25px rgba(170, 79, 255, 0.1);
}

.img-bordered {
  border: 3px solid  #AA4FFF;
  border-radius: 10px;        
  box-shadow: 0 2px 8px rgba(0,0,0,0.12); 
}