/* CSS Reset & Base Styles */
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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #232946;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  text-decoration: none;
  color: #232946;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #eebbc3;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
strong {
  font-weight: 600;
}

/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

/* Typography Hierarchy */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: #101012;
  margin-bottom: 16px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #232946;
  margin-bottom: 14px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #232946;
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #232946;
  margin-bottom: 10px;
}
.subheadline {
  font-size: 1.15rem;
  color: #414141;
  max-width: 650px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.7;
}
p, li, span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  color: #232946;
  font-size: 1rem;
  line-height: 1.7;
}


/* Container */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* Section Spacing (Mandatory) */
section, .section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: #fff;
}
@media (max-width: 768px) {
  section, .section {
    padding: 32px 0;
    margin-bottom: 36px;
  }
}

/* Content Wrapper */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.text-section {
  gap: 16px;
}

/* Card Container and Cards (Generic) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #f7f7ff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(40, 40, 55, 0.08);
  padding: 28px 24px;
  position: relative;
  color: #232946;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 20px rgba(35, 41, 70, 0.18);
  transform: translateY(-4px) scale(1.01);
}

/* Feature grid for / */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
  margin-bottom: 0;
  justify-content: flex-start;
}
.feature-grid li {
  flex: 1 1 210px;
  background: #fff;
  border: 1.8px solid #dadada;
  border-radius: 14px;
  padding: 24px 18px 20px 18px;
  margin-bottom: 0;
  box-shadow: 0 2px 9px rgba(35, 41, 70, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  transition: box-shadow 0.22s, border 0.18s, transform 0.18s;
}
.feature-grid li img {
  width: 40px;
  height: 40px;
}
.feature-grid li:hover {
  border: 1.8px solid #232946;
  box-shadow: 0 8px 24px rgba(35,41,70,0.11);
  transform: translateY(-5px) scale(1.022);
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 20px;
  }
  .feature-grid li {
    flex: 1 1 47%;
  }
}
@media (max-width: 620px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid li {
    width: 100%;
  }
}

/* Service Cards (index) */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
}
.service-card {
  background: #f7f7ff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(35,41,70,0.08);
  margin-bottom: 20px;
  flex: 1 1 230px;
  padding: 24px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.17s, transform 0.17s;
  color: #232946;
}
.service-card .price {
  color: #232946;
  font-family: 'Montserrat', Arial,sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: #eebbc3;
  border-radius: 5px;
  margin-top: 10px;
  padding: 4px 10px;
  font-size: 1rem;
}
.service-card:hover {
  box-shadow: 0 7px 24px rgba(35,41,70,0.13);
  transform: translateY(-5px) scale(1.015);
}
@media (max-width: 900px) {
  .service-cards {
    gap: 16px;
  }
  .service-card {
    flex: 1 1 100%;
    min-width: 150px;
  }
}

/* Tour Grid */
.tour-grid, .promotion-packages-grid, .package-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 18px;
}
.tour-grid > div, .promotion-packages-grid > div, .package-cards > div {
  background: #fff;
  border: 1.8px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 1px 7px rgba(34,34,34,0.04);
  padding: 22px 20px 18px 20px;
  flex: 1 1 230px;
  min-width: 180px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #232946;
  transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
}
.tour-grid > div:hover, .promotion-packages-grid > div:hover, .package-cards > div:hover {
  border: 1.8px solid #232946;
  box-shadow: 0 7px 22px rgba(35,41,70,0.11);
  transform: translateY(-6px) scale(1.022);
}
@media (max-width: 820px) {
  .tour-grid, .promotion-packages-grid, .package-cards {
    flex-direction: column;
    gap: 18px;
  }
}

/* Table styles (for prices) */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  margin-top: 10px;
}
thead th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: #232946;
  color: #fff;
  padding: 10px 6px;
  border-radius: 7px 7px 0 0;
  letter-spacing: 0.01em;
}
tbody td {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #f7f7ff;
  color: #232946;
  padding: 10px 6px;
  border-bottom: 1px solid #dbdbdb;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* Editorial/Insider/Service info blocks */
.values-grid, .insider-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 16px 0;
}
.values-grid > div, .insider-service-list > div {
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 2px 7px rgba(35,41,70,0.08);
  padding: 12px 16px;
  flex: 1 1 180px;
  margin-bottom: 0;
  color: #232946;
  font-weight: 600;
  border-left: 3px solid #232946;
}
@media (max-width: 650px) {
  .values-grid, .insider-service-list {
    flex-direction: column;
    gap: 12px;
  }
}
.editorial-service-description, .pricing-overview, .pricing-comparison {
  background: #f7f7ff;
  border-radius: 10px;
  padding: 18px 14px;
  margin-bottom: 18px;
  color: #232946;
}

/* Pricing summary in premium */
.pricing-summary {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 12px 0 8px 0;
}
.pricing-summary span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  color: #232946;
  font-weight: 600;
  background: #fff;
  padding: 6px 11px 6px 7px;
  border-radius: 6px;
  box-shadow: 0 2px 7px rgba(35,41,70,0.08);
}

.simple-pricing-box {
  background: #232946;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 13px 22px;
  border-radius: 7px;
  font-size: 1.25rem;
  font-weight: 700;
  display: inline-block;
  margin: 8px 0 14px 0;
  letter-spacing: 0.01em;
}

/* Testimonial Card */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-radius: 11px;
  border: 1.6px solid #d9d9df;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(35,41,70,0.08);
  max-width: 660px;
  color: #232946;
  transition: box-shadow 0.18s, border 0.18s, transform 0.16s;
}
.testimonial-card p {
  color: #101012;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 4px;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #777;
  letter-spacing: 0.02em;
}
.testimonial-card:hover {
  box-shadow: 0 7px 30px rgba(35,41,70,0.13);
  border: 1.6px solid #232946;
  transform: translateY(-4px) scale(1.012);
}

/* CTA Button Styles */
.cta-button {
  display: inline-block;
  padding: 14px 34px;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: #232946;
  color: #fff;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  box-shadow: 0 2px 9px rgba(35,41,70,0.13);
  letter-spacing: 0.01em;
  transition: background 0.21s, color 0.21s, transform 0.18s;
  margin-top: 8px;
  text-align: center;
}
.cta-button.secondary {
  background: #fff;
  color: #232946;
  border: 2px solid #232946;
  box-shadow: 0 2px 9px rgba(35,41,70,0.08);
}
.cta-button:hover, .cta-button:focus {
  background: #eebbc3;
  color: #232946;
  transform: translateY(-2px) scale(1.015);
  outline: none;
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: #232946;
  color: #fff;
  border-color: #eebbc3;
}

/* Main Navigation (Desktop) */
header {
  background: #f7f7ff;
  box-shadow: 0 3px 24px rgba(35,41,70,0.06);
  position: relative;
  z-index: 40;
  padding: 0 0 0 0;
}
.brand-logo {
  display: flex;
  align-items: center;
  padding: 16px 0 16px 20px;
}
.brand-logo img {
  max-height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
}
.main-nav a {
  color: #232946;
  padding: 8px 0;
  border-bottom: 2.2px solid transparent;
  transition: border 0.19s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #eebbc3;
  border-bottom: 2.2px solid #eebbc3;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: sticky;
  top: 0;
}
@media (max-width: 1080px) {
  .main-nav {
    gap: 16px;
    font-size: 1rem;
    padding-right: 10px;
  }
}

/* Mobile Menu Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #232946;
  cursor: pointer;
  margin-right: 15px;
  margin-left: 8px;
  z-index: 60;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #eebbc3;
  outline: none;
}

/* Mobile Nav Styles */
.mobile-menu {
  display: none;
}
@media (max-width: 900px) {
  header {
    flex-direction: row;
    align-items: center;
    padding: 0;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .mobile-menu {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #232946;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: transform 0.31s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -16px 0 48px rgba(35,41,70,0.25);
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  .mobile-menu-close {
    align-self: flex-end;
    margin: 22px 24px 14px 0;
    background: none;
    color: #fff;
    border: none;
    font-size: 2.4rem;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.21s;
  }
  .mobile-menu-close:hover, .mobile-menu-close:focus {
    color: #eebbc3;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100vw;
    align-items: center;
    margin-top: 42px;
  }
  .mobile-nav a {
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 10px 0;
    border-bottom: 1.5px solid transparent;
    width: 70vw;
    text-align: center;
    border-radius: 6px;
    transition: background 0.23s, color 0.19s;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: #eebbc3;
    color: #232946;
    outline: none;
  }
}

/* Footer Styles */
footer {
  background: #232946;
  color: #fff;
  padding: 0 0 0 0;
  font-size: 1rem;
}
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 20px 32px 20px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 153px;
  margin-bottom: 14px;
}
.footer-menu a {
  color: #eebbc3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.98rem;
}
.contact-info img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}
.contact-info a {
  color: #eebbc3;
  text-decoration: underline;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-footer-logo {
  flex: 0 1 110px;
  margin-top: 6px;
  align-self: flex-end;
}
.brand-footer-logo img {
  width: 59px;
  height: auto;
  filter: brightness(125%);
}
@media (max-width: 900px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 38px 16px 24px 16px;
  }
}

/* Content-grid utility */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Text-image section utility */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* Feature-item utility */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Typography section lists */
.text-section ul li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}
.text-section ul li:before {
  content: '\2022';
  color: #232946;
  font-size: 1.19rem;
  position: absolute;
  left: 0;
  top: 1px;
}
.text-section ul li:last-child {
  margin-bottom: 0;
}

/* Responsive typography scaling */
@media (max-width: 900px) {
  h1, .h1 {
    font-size: 2.1rem;
  }
  h2, .h2 {
    font-size: 1.45rem;
  }
  .cta-button {
    font-size: 1rem;
    padding: 12px 20px;
  }
}
@media (max-width: 600px) {
  h1, .h1 {
    font-size: 1.45rem;
  }
  h2, .h2 {
    font-size: 1.11rem;
  }
  .subheadline {
    font-size: 1rem;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #232946;
  color: #fff;
  box-shadow: 0 -4px 36px rgba(35,41,70,0.16);
  z-index: 9999;
  padding: 20px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  animation: slideUpBanner 0.44s cubic-bezier(0.42,0,0.47,1);
}
@keyframes slideUpBanner {
  0% { transform: translateY(100%); }
  100% { transform: translateY(0%); }
}
.cookie-banner p {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
  text-align: center;
  line-height: 1.7;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  margin-right: 0;
  margin-bottom: 0;
  outline: none;
  transition: background 0.21s, color 0.19s;
}
.cookie-banner .accept {
  background: #eebbc3;
  color: #232946;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #fff;
  color: #232946;
}
.cookie-banner .reject {
  background: #fff;
  color: #232946;
  border: 2px solid #eebbc3;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #eebbc3;
  color: #232946;
  border-color: #fff;
}
.cookie-banner .settings {
  background: transparent;
  color: #eebbc3;
  border: 2px solid #eebbc3;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #eebbc3;
  color: #232946;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,41,70,0.47);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.38s;
}
@keyframes fadeInOverlay {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #232946;
  border-radius: 17px;
  box-shadow: 0 7px 40px rgba(35,41,70,0.21);
  max-width: 410px;
  width: 94vw;
  padding: 34px 26px 29px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalPopIn 0.23s cubic-bezier(0.42,0,0.62,1);
  position: relative;
}
@keyframes modalPopIn {
  0% { transform: scale(0.86) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  color: #232946;
  margin-bottom: 7px;
}
.cookie-modal .cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal .category-title {
  font-weight: 700;
  color: #232946;
}
.cookie-modal .toggle-switch {
  display: inline-block;
  width: 48px;
  height: 26px;
  background: #dbdee8;
  border-radius: 13px;
  position: relative;
  margin-left: 10px;
  transition: background 0.2s;
}
.cookie-modal .toggle-switch input {
  display: none;
}
.cookie-modal .toggle-switch .slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s, background 0.18s;
  box-shadow: 0 2px 6px rgba(35,41,70,0.14);
}
.cookie-modal .toggle-switch.enabled {
  background: #eebbc3;
}
.cookie-modal .toggle-switch.enabled .slider {
  left: 25px;
  background: #232946;
}
.cookie-modal .toggle-switch.disabled {
  opacity: 0.55;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 15px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  outline: none;
}
.cookie-modal .save {
  background: #eebbc3;
  color: #232946;
}
.cookie-modal .save:hover, .cookie-modal .save:focus {
  background: #232946;
  color: #fff;
}
.cookie-modal .cancel {
  background: #fff;
  color: #232946;
  border: 2px solid #232946;
}
.cookie-modal .cancel:hover, .cookie-modal .cancel:focus {
  background: #eebbc3;
  color: #232946;
  border-color: #fff;
}
.cookie-modal .close {
  position: absolute;
  top: 14px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #232946;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .close:hover {
  color: #eebbc3;
}

/* Hide cookie modal/banner by default, must be toggled by JS */
.cookie-banner[hidden], .cookie-modal-overlay[hidden] {
  display: none !important;
}

/* Utility */
@media (max-width: 600px) {
  .footer-wrapper {
    padding: 28px 6px 14px 6px;
  }
}
::-webkit-scrollbar {
  width: 8px;
  background: #f0f0fe;
}
::-webkit-scrollbar-thumb {
  background: #d0d0d6;
  border-radius: 6px;
}

/* End of main style */
