/* SensePath Trading Workshop — Layer C theme */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --color-navy: #1a2744;
  --color-navy-light: #2a3d5c;
  --color-gold: #c9a227;
  --color-gold-light: #e0bc4a;
  --color-cream: #f8f6f1;
  --color-cream-dark: #ede9e0;
  --color-teal: #2d6a6a;
  --color-text: #2c2c2c;
  --color-text-muted: #5a5a5a;
  --color-white: #ffffff;
  --color-error: #b33a3a;
  --color-success: #2d6a4a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(26, 39, 68, 0.08);
  --shadow-md: 0 8px 24px rgba(26, 39, 68, 0.12);
  --shadow-lg: 0 16px 48px rgba(26, 39, 68, 0.16);
  --transition: 0.25s ease;
  --container: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-gold); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-navy);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

main { flex: 1; }

/* Header */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-cream-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
}

.logo:hover { color: var(--color-navy); }
.logo-accent { color: var(--color-gold); font-weight: 500; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  flex-wrap: wrap;
}

.site-nav a {
  display: block;
  padding: 0.5rem 0.875rem;
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.site-nav a:hover { background: var(--color-cream); color: var(--color-navy); }

.nav-cta {
  background: var(--color-navy) !important;
  color: var(--color-white) !important;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  background: var(--color-navy-light) !important;
  color: var(--color-gold-light) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: var(--transition);
}

/* Footer */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.85);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.footer-tagline { font-size: 0.9375rem; line-height: 1.6; opacity: 0.85; }

.footer-links h3, .footer-contact h3 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a, .footer-contact a { color: rgba(255, 255, 255, 0.8); font-size: 0.9375rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--color-gold-light); }

.footer-contact address { font-style: normal; font-size: 0.9375rem; line-height: 1.7; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.875rem;
  opacity: 0.75;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
  list-style: none;
}

.footer-legal a { color: rgba(255, 255, 255, 0.75); }
.footer-legal a:hover { color: var(--color-gold-light); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.625rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.btn-primary:hover {
  background: var(--color-navy-light);
  border-color: var(--color-navy-light);
  color: var(--color-gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn-outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}

.btn-gold:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

/* Hero variants */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 72vh;
  align-items: center;
}

.hero-content {
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-teal);
  margin-bottom: 1.25rem;
}

.hero-title {
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: italic;
  color: var(--color-gold);
}

.hero-lead {
  font-size: 1.1875rem;
  color: var(--color-text-muted);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 39, 68, 0.15) 0%, transparent 60%);
}

.hero-accent-block {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--color-white);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-gold);
  max-width: 260px;
  z-index: 3;
}

.hero-accent-block strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-navy);
}

.hero-accent-block span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.hero-page {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 4rem 0 3rem;
  position: relative;
}

.hero-page::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(201, 162, 39, 0.08));
}

.hero-page h1 { color: var(--color-white); }
.hero-page .hero-lead { color: rgba(255, 255, 255, 0.8); }

.hero-page-image {
  margin-top: -2rem;
  margin-bottom: 2rem;
}

.hero-page-image img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Sections */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--color-white); }
.section-dark { background: var(--color-navy); color: rgba(255, 255, 255, 0.9); }
.section-dark h2, .section-dark h3 { color: var(--color-white); }

.section-header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-header.centered {
  text-align: center;
  margin-inline: auto;
}

.section-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-image { aspect-ratio: 16/10; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-image img { transform: scale(1.04); }

.card-body { padding: 1.5rem; }
.card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-teal);
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin-bottom: 0.625rem;
}

.card-title a { color: var(--color-navy); text-decoration: none; }
.card-title a:hover { color: var(--color-gold); }

.card-meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
}

/* Feature strip */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-item h3 { font-size: 1.125rem; }
.feature-item p { font-size: 0.9375rem; color: var(--color-text-muted); }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.testimonial {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-gold);
}

.testimonial blockquote {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.testimonial cite {
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
}

.testimonial cite span {
  display: block;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

/* Process steps */
.process-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding-left: 3.5rem;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-gold);
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pricing */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-table th, .pricing-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-cream-dark);
}

.pricing-table th {
  background: var(--color-navy);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td:last-child { font-weight: 600; color: var(--color-navy); white-space: nowrap; }

.pricing-note {
  background: var(--color-cream-dark);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 2rem;
  font-size: 0.9375rem;
}

/* Forms */
.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
  color: var(--color-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(45, 106, 106, 0.15);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--color-error);
}

.field-error {
  color: var(--color-error);
  font-size: 0.8125rem;
  margin-top: 0.375rem;
}

.form-status {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(45, 106, 74, 0.1);
  color: var(--color-success);
  border: 1px solid rgba(45, 106, 74, 0.3);
}

.form-status.error {
  display: block;
  background: rgba(179, 58, 58, 0.1);
  color: var(--color-error);
  border: 1px solid rgba(179, 58, 58, 0.3);
}

.form-script-error {
  background: rgba(179, 58, 58, 0.1);
  color: var(--color-error);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  display: none;
}

.form-script-error.visible { display: block; }

/* Contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-block {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: var(--radius-md);
}

.contact-info-block h2 { color: var(--color-white); margin-bottom: 1.5rem; }
.contact-info-block address { font-style: normal; line-height: 1.8; margin-bottom: 1.5rem; }
.contact-info-block a { color: var(--color-gold-light); }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}

.article-content { max-width: 720px; }
.article-content h2 { margin-top: 2rem; margin-bottom: 1rem; }
.article-content ul, .article-content ol { margin: 1rem 0 1rem 1.5rem; }
.article-content li { margin-bottom: 0.5rem; }

.article-meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-cream-dark);
}

.article-sidebar {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 5rem;
}

.article-cover {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

/* Schedule table */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.schedule-table th, .schedule-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-cream-dark);
}

.schedule-table th {
  background: var(--color-cream-dark);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-navy);
}

.schedule-table .status-open { color: var(--color-success); font-weight: 600; }
.schedule-table .status-limited { color: var(--color-gold); font-weight: 600; }
.schedule-table .status-full { color: var(--color-text-muted); }

/* Service detail */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.service-sidebar {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 5rem;
}

.service-sidebar .price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.service-sidebar .price-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.detail-list {
  list-style: none;
  margin: 1.5rem 0;
}

.detail-list li {
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--color-cream-dark);
  font-size: 0.9375rem;
}

.detail-list li:last-child { border-bottom: none; }

.detail-list strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 0.125rem;
}

/* Legal pages */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.legal-content h2 {
  font-size: 1.375rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content ul { margin: 0.75rem 0 1rem 1.5rem; }
.legal-content li { margin-bottom: 0.375rem; }

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
}

.cookies-table th, .cookies-table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-cream-dark);
  text-align: left;
}

.cookies-table th { background: var(--color-cream-dark); }

/* 404 */
.page-404 {
  text-align: center;
  padding: 6rem 0;
}

.page-404 h1 {
  font-size: 6rem;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 1rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.9);
  padding: 1.25rem;
  z-index: 1000;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  flex: 1;
  min-width: 280px;
  font-size: 0.9375rem;
  margin: 0;
}

.cookie-banner a { color: var(--color-gold-light); }

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner .btn-accept {
  background: var(--color-gold);
  color: var(--color-navy);
  border: none;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9375rem;
}

.cookie-banner .btn-reject {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9375rem;
}

.cookie-banner .btn-accept:hover { background: var(--color-gold-light); }
.cookie-banner .btn-reject:hover { border-color: var(--color-white); }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--color-gold);
}

.team-member h3 { margin-bottom: 0.25rem; }
.team-member .role {
  font-size: 0.875rem;
  color: var(--color-teal);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.breadcrumb a { color: var(--color-teal); }

/* Responsive */
@media (max-width: 900px) {
  .hero-home { grid-template-columns: 1fr; }
  .hero-visual { min-height: 280px; order: -1; }
  .hero-accent-block { left: 1rem; bottom: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-strip { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--color-white);
    padding: 5rem 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 99;
  }

  .site-nav.open { transform: translateX(0); }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a { padding: 0.875rem 0; }
  .nav-cta { margin-left: 0 !important; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
