/* ==== CSS RESET & NORMALIZATION ==== */
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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #F2F5FA;
  font-family: 'Roboto', Arial, sans-serif;
  color: #234B6C;
  line-height: 1.6;
}
img, video {
  max-width: 100%;
  display: block;
}
a {
  color: #176872;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #234B6C;
  text-decoration: underline;
}
ul, ol {
  margin-left: 2em;
  margin-bottom: 1em;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* ==== CUSTOM PROPERTIES (COLOR PALETTE) ==== */
:root {
  --primary: #234B6C;
  --primary-dark: #18385b;
  --secondary: #176872;
  --secondary-dark: #10515A;
  --accent: #F2F5FA;
  --white: #fff;
  --gray-light: #dee7f0;
  --gray: #b6c7dc;
  --danger: #d62d42;
  --success: #389e5b;
  --shadow: 0 1px 6px rgba(30, 60, 100, 0.10), 0 0.5px 2px rgba(30,60,100,0.06);
}

/* ==== TYPOGRAPHY ==== */
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  background: var(--accent);
  color: var(--primary);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
p, li, address, span { font-size: 1rem; }
p, ul, ol { margin-bottom: 12px; }
strong { font-weight: 700; }
.text-section ul, .text-section ol { margin-left: 1.5em; }

/* ==== CONTAINER ==== */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}

/* ==== HEADER ==== */
header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(30,60,100,0.07);
  position: relative;
  z-index: 1040;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 0 20px 0;
  min-height: 80px;
}
.header-bar img {
  height: 42px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

.main-nav a {
  color: var(--primary);
  font-size: 1rem;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.04em;
  display: block;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}

.cta-button {
  background: var(--secondary);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 11px 30px;
  border-radius: 42px;
  font-size: 1rem;
  border: none;
  outline: none;
  box-shadow: var(--shadow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.14s, box-shadow 0.18s;
  margin-left: 18px;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: var(--primary);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 2px 8px rgba(23, 104, 114, 0.14);
  color: var(--white);
}

/* ==== MOBILE NAV ==== */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--white);
  font-size: 2.2rem;
  border: none;
  padding: 8px 20px;
  border-radius: 16px;
  cursor: pointer;
  margin-left: 10px;
  box-shadow: 0 1px 5px rgba(23, 104, 114,0.15);
  z-index: 1060;
  transition: background 0.16s, color 0.18s;
}
.mobile-menu-toggle:focus {
  background: var(--primary);
}

.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: var(--white);
  box-shadow: 1px 0 16px rgba(35,75,108,0.17);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.74,.03,.32,.90);
  padding: 32px 0 0 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 20px;
  top: 18px;
  background: var(--gray-light);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.4rem;
  color: var(--secondary);
  cursor: pointer;
  transition: background 0.14s, box-shadow 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  margin: 38px 0 0 0;
  gap: 12px;
  align-items: center;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: none;
  border-radius: 12px;
  padding: 10px 44px;
  width: 90vw;
  max-width: 340px;
  text-align: center;
  transition: background 0.16s, color 0.15s;
  margin: 0 auto;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}

@media (max-width: 1024px) {
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==== HERO SECTION ==== */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 0 60px 0;
  background: var(--accent);
  border-bottom: 7px solid var(--gray-light);
}
.hero .content-wrapper {
  max-width: 670px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 22px;
  display: flex;
  flex-direction: column;
}
.hero h1 {
  font-size: 2.25rem;
  color: var(--primary);
  letter-spacing: 0.04em;
}
.hero p {
  font-size: 1.18rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--secondary);
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 28px 0;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
  .hero .content-wrapper {
    gap: 15px;
  }
}

/* ==== FEATURE GRID & CARDS ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: 24px;
  padding: 26px 22px 22px 22px;
  box-shadow: var(--shadow);
  min-width: 210px;
  max-width: 300px;
  flex: 1 1 220px;
  border: 2.5px solid var(--gray-light);
  position: relative;
  transition: box-shadow 0.16s, border-color 0.16s, transform 0.13s;
}
.feature-item img {
  width: 36px;
  height: 36px;
  filter: brightness(0.8) sepia(0.4) hue-rotate(95deg);
}
.feature-item h3 {
  color: var(--secondary);
  font-size: 1.09rem;
  margin-bottom: 2px;
  letter-spacing: 0.07em;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 7px 36px rgba(23,104,114,0.15);
  border-color: var(--secondary);
  transform: translateY(-3px) scale(1.02);
}
@media (max-width: 950px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item {
    max-width: 100%;
    min-width: unset;
  }
}

/* ==== SERVICE & PRICING LIST ==== */
.service-list, .service-list-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 8px;
}
.service, .service-list-detailed li {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 20px 24px 18px 24px;
  min-width: 200px;
  max-width: 290px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  border: 2.5px solid var(--gray-light);
  transition: box-shadow 0.14s, border-color 0.14s;
  position: relative;
}
.service h3, .service-list-detailed h3 {
  color: var(--primary);
  font-size: 1.13rem;
  margin-bottom: 5px;
}
.service-list-detailed .service-price {
  color: var(--secondary);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 7px;
  font-size: 1.09rem;
  letter-spacing: 0.03em;
  align-self: flex-end;
}
.service:hover, .service:focus-within, .service-list-detailed li:hover {
  box-shadow: 0 7px 36px rgba(23,104,114,0.13);
  border-color: var(--secondary);
}
@media (max-width: 950px) {
  .service-list, .service-list-detailed {
    flex-direction: column;
    gap: 15px;
  }
  .service, .service-list-detailed li {
    max-width: 100%;
    min-width: unset;
  }
}

/* ==== PRICING TABLE ==== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 24px 0;
}
.pricing-table th, .pricing-table td {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1.5px solid var(--gray-light);
}
.pricing-table th {
  background: var(--accent);
  color: var(--secondary);
  text-transform: uppercase;
  font-size: 1.11rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* ==== TESTIMONIALS & FAQ ==== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(35,75,108,0.10);
  margin-bottom: 20px;
  border-left: 6px solid var(--secondary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.07rem;
  color: #1d3346;
  transition: box-shadow 0.14s, border-color 0.16s;
  min-width: 217px;
  max-width: 570px;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--primary);
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(35,75,108,0.13);
  border-color: var(--primary);
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-item {
  flex: 1 1 300px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 20px 22px 16px 22px;
  margin-bottom: 20px;
  border-left: 4px solid var(--secondary);
  transition: box-shadow 0.14s, border-color 0.15s;
  min-width: 220px;
  max-width: 470px;
}
.faq-item h3 {
  font-size: 1.09rem;
  color: var(--secondary);
  margin-bottom: 6px;
}
.faq-item:hover {
  box-shadow: 0 6px 18px rgba(35,75,108,0.06);
  border-color: var(--primary);
}

@media (max-width: 850px) {
  .testimonial-card, .faq-item {
    max-width: 100%;
  }
  .faq-list {
    flex-direction: column;
    gap: 13px;
  }
}

/* ==== CARDS GENERIC ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 26px 20px;
  border: 2.5px solid var(--gray-light);
  transition: box-shadow 0.16s, border-color 0.16s;
}
.card:hover {
  box-shadow: 0 6px 22px rgba(35,75,108,0.13);
  border-color: var(--primary);
}

/* ==== TEXT/IMAGE SECTIONS ==== */
.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: 15px;
  }
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

/* ==== VALUE LIST ==== */
.value-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 26px;
}
.value-list li {
  background: var(--white);
  border-radius: 15px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  color: #205084;
  border-left: 4px solid var(--secondary);
}

/* ==== EVENT CALENDAR ==== */
.event-calendar {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 24px 30px;
  margin-bottom: 20px;
}
.event-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.event-list li {
  margin-bottom: 6px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 24px;
}
.benefits-list li {
  position: relative;
  padding-left: 22px;
}
.benefits-list li::before {
  content: "■";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 1.05em;
  top: 0.2em;
}

/* ==== GALLERY PAGE ==== */
/* For visual consistency; cards, features, etc. handled above */

/* ==== CONTACT ==== */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background: var(--white);
  padding: 22px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  margin-top: 2px;
  border: 2.5px solid var(--gray-light);
}
.contact-info > div {
  min-width: 175px;
  flex: 1 1 205px;
}
@media (max-width: 800px) {
  .contact-info {
    flex-direction: column;
    gap: 10px;
    padding: 13px;
  }
  .contact-info > div {
    min-width: unset;
  }
}

/* ==== MAP EMBED DUMMY STYLES ==== */
.map-embed {
  background: var(--gray-light);
  border-radius: 15px;
  padding: 18px 18px 16px 24px;
  margin-bottom: 20px;
  color: var(--primary);
}

/* ==== FOOTER ==== */
footer {
  background: var(--white);
  box-shadow: 0 -2px 13px rgba(35,75,108,0.07);
  padding: 0 0 20px 0;
}
.footer-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 36px 0 6px 0;
  flex-wrap: wrap;
}
.footer-bar > a img {
  height: 36px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 600;
}
.footer-nav a {
  color: var(--primary);
  transition: color 0.18s;
  padding: 2px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
}
.footer-contact {
  font-size: 0.93rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--secondary);
}
.footer-contact address {
  font-style: normal;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 3px;
}
@media (max-width: 900px) {
  .footer-bar {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 23px 0 8px 0;
  }
  .footer-bar > a img {
    height: 32px;
  }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1300;
  background: var(--white);
  box-shadow: 0 -2px 12px rgba(35,75,108,0.1);
  padding: 22px 10px 22px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 240px;
  border-top: 3px solid var(--secondary);
  animation: slideupCookie 0.5s ease;
}
@keyframes slideupCookie {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: var(--primary);
  font-size: 0.97rem;
  text-align: center;
  max-width: 420px;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 0px;
}
.cookie-actions .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  border-radius: 16px;
  border: none;
  outline: none;
  padding: 7px 20px;
  margin: 0 3px;
  transition: background 0.17s, color 0.17s, box-shadow 0.14s;
  cursor: pointer;
  min-width: 88px;
  box-shadow: 0 1px 4px rgba(30, 60, 100, 0.07);
}
.cookie-btn.accept {
  background: var(--secondary);
  color: var(--white);
}
.cookie-btn.accept:hover {
  background: var(--primary);
}
.cookie-btn.reject {
  background: var(--danger);
  color: var(--white);
}
.cookie-btn.reject:hover {
  background: #bf2235;
}
.cookie-btn.settings {
  background: var(--gray-light);
  color: var(--primary);
}
.cookie-btn.settings:hover {
  background: var(--accent);
  color: var(--secondary);
}

@media (max-width: 578px) {
  .cookie-banner {
    padding: 18px 4vw 18px 4vw;
    font-size: 0.92rem;
    min-width: 0;
  }
  .cookie-actions {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .cookie-btn {
    width: 100%;
    min-width: 0;
    margin: 0;
  }
}

/* ==== COOKIE MODAL ==== */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1400;
  background: rgba(60,68,100,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 6px 36px rgba(35,75,108,0.12);
  padding: 34px 32px 30px 32px;
  max-width: 410px;
  min-width: 250px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  position: relative;
}
.cookie-modal-content h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.18rem;
  margin-bottom: 10px;
  text-align: left;
}
.cookie-preferences-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.99rem;
  color: var(--secondary);
  background: var(--accent);
  padding: 7px 14px;
  border-radius: 10px;
  margin-bottom: 0px;
}
.cookie-option .toggle {
  margin-left: auto;
}
.toggle[type=checkbox] {
  width: 34px;
  height: 18px;
  accent-color: var(--secondary);
  border-radius: 11px;
  cursor: pointer;
}
.cookie-modal-close {
  position: absolute;
  right: 19px; top: 14px;
  background: var(--gray-light);
  border: none;
  border-radius: 50%;
  width: 30px; height: 30px;
  color: var(--secondary);
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--accent);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 8px;
  justify-content: flex-end;
}

@media (max-width: 520px) {
  .cookie-modal-content {
    padding: 18px 5vw 17px 5vw;
    max-width: 96vw;
  }
  .cookie-modal-close {
    right: 6px; top: 7px;
  }
}

/* ==== BUTTONS, MICRO-INTERACTIONS ==== */
button, .cta-button, .cookie-btn {
  transition: background 0.16s, box-shadow 0.15s, color 0.16s, transform 0.14s;
}
button:active, .cta-button:active, .cookie-btn:active {
  transform: scale(0.98);
}

/* ==== UTILS/SPACING CLASSES ==== */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.gap-24 { gap: 24px; }

/* ==== RESPONSIVE LAYOUTS ==== */
@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  .footer-bar { flex-direction: column; }
  .feature-grid, .service-list, .service-list-detailed, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .section {
    padding: 18px 6px;
  }
  .pricing-table th, .pricing-table td {
    padding: 10px 7px;
  }
}

/* ==== GEOMETRIC STRUCTURED DECORATIVE ELEMENTS ==== */
/* (optional, can add diagonal backgrounds, angular borders via pseudo-elements) */

.section, .card, .feature-item, .faq-item, .testimonial-card {
  /* simple geometric angular feel by using only border-radius on select corners */
  border-radius: 24px 8px 22px 8px;
}

/* ======= END OF CSS ======= */
