/* ============================================
   DWC PIPE INDUSTRIES - Shared Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #0a2540;
  --blue-deep: #0d3a6b;
  --blue: #1e5bb8;
  --blue-bright: #2680eb;
  --cyan: #00a8e8;
  --blue-light: #e8f1fa;
  --blue-pale: #f4f8fc;
  --white: #ffffff;
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --border: #d6e3f0;
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.10);
  --shadow-lg: 0 20px 50px rgba(10, 37, 64, 0.15);
  --radius: 8px;
  --radius-lg: 14px;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.5rem; }

a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--cyan); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo svg {
  width: 44px;
  height: 44px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: 1px;
}

.logo-text .tag {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 2px;
  margin-top: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--cyan);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a.active { color: var(--blue); }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--blue); }
.nav-cta::after { display: none; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.3px;
}

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

.btn-primary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

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

.btn-dark:hover { background: var(--blue); color: var(--white); }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 50%, var(--blue) 100%);
  color: var(--white);
  padding: 100px 24px 110px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 168, 232, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(255,255,255,0.04), transparent);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--cyan);
  background: rgba(0, 168, 232, 0.12);
  border: 1px solid rgba(0, 168, 232, 0.3);
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--cyan);
  display: block;
}

.hero p.lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pipe-illustration {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 100%);
  color: var(--white);
  padding: 70px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.page-header h1 { color: var(--white); position: relative; }

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 12px;
  position: relative;
  font-size: 1.05rem;
}

.breadcrumb {
  position: relative;
  font-size: 0.85rem;
  color: var(--cyan);
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats {
  background: var(--white);
  padding: 50px 24px;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-num span { color: var(--cyan); }

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
  font-weight: 600;
}

/* ============================================
   SECTION
   ============================================ */
section { padding: 90px 24px; }

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cyan);
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 12px;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  background: var(--blue-pale);
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--cyan);
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 1.75rem;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

.product-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-image {
  height: 200px;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image svg {
  width: 60%;
  max-width: 160px;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 30px;
  letter-spacing: 1px;
}

.product-body { padding: 24px; }

.product-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.product-body .size {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
  font-family: var(--font-display);
  letter-spacing: 1px;
}

.product-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.product-specs {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.product-specs li {
  font-size: 0.85rem;
  color: var(--text-body);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-specs li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: bold;
}

/* ============================================
   APPLICATIONS
   ============================================ */
.applications {
  background: var(--blue-pale);
}

.app-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.app-card {
  background: var(--white);
  padding: 28px 20px;
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s;
  border: 1px solid var(--border);
}

.app-card:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-4px);
  border-color: var(--navy);
}

.app-card:hover h4 { color: var(--white); }
.app-card:hover .app-icon { color: var(--cyan); }

.app-icon {
  font-size: 2.25rem;
  color: var(--blue);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.app-card h4 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.3s;
}

/* ============================================
   ABOUT
   ============================================ */
.about-split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-split img,
.about-split .img-block {
  width: 100%;
  height: 460px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-split .img-block svg { width: 70%; max-width: 300px; }

.about-content h2 { margin-bottom: 20px; }

.about-content p {
  margin-bottom: 16px;
  color: var(--text-body);
}

.about-points {
  list-style: none;
  margin-top: 24px;
}

.about-points li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--text-dark);
  font-weight: 500;
}

.about-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 20px;
  height: 20px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 168, 232, 0.2);
}

.about-points li::after {
  content: '✓';
  position: absolute;
  left: 5px;
  top: 12px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ============================================
   VALUES (mission / vision)
   ============================================ */
.values-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
}

.value-card .v-icon {
  width: 70px;
  height: 70px;
  background: var(--navy);
  color: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.75rem;
}

.value-card h3 { margin-bottom: 12px; }
.value-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}

.contact-info {
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue-deep) 100%);
  color: var(--white);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(0, 168, 232, 0.1);
}

.contact-info .logo svg { width: 56px; height: 56px; }
.contact-info .logo .brand { color: var(--white); font-size: 1.5rem; }
.contact-info .logo .tag { color: var(--cyan); }

.contact-info h3 {
  color: var(--white);
  margin: 30px 0 20px;
  font-size: 1.4rem;
  position: relative;
}

.contact-list {
  list-style: none;
  position: relative;
}

.contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

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

.contact-list .ci-icon {
  width: 38px;
  height: 38px;
  background: rgba(0, 168, 232, 0.2);
  color: var(--cyan);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-list .ci-label {
  font-size: 0.75rem;
  color: var(--cyan);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  position: relative;
}

.social-row a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.social-row a:hover { background: var(--cyan); color: var(--white); }

/* Form */
.contact-form {
  background: var(--white);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.contact-form .form-sub {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group label .req { color: #d04444; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--blue-pale);
  transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(30, 91, 184, 0.1);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

.form-msg {
  display: none;
  padding: 14px 16px;
  background: #e6f7eb;
  color: #1f7a3a;
  border-radius: var(--radius);
  margin-top: 18px;
  font-size: 0.92rem;
  border-left: 4px solid #2ea857;
}

.form-msg.show { display: block; }

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  padding: 70px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 168, 232, 0.2), transparent 70%);
  border-radius: 50%;
}

.cta-strip h2 {
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-strip .btn { position: relative; }

/* ============================================
   PRIVACY / LEGAL CONTENT
   ============================================ */
.legal-wrap {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
}

.legal-wrap p,
.legal-wrap li {
  margin-bottom: 14px;
  color: var(--text-body);
}

.legal-wrap h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: var(--navy);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--cyan);
  display: inline-block;
}

.legal-wrap h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 1.15rem;
  color: var(--blue-deep);
}

.legal-wrap ul { padding-left: 24px; margin-bottom: 16px; }
.legal-wrap ul li { padding-left: 4px; }

.legal-meta {
  background: var(--blue-pale);
  padding: 16px 22px;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 24px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer .logo .brand { color: var(--white); }
.footer .logo .tag { color: var(--cyan); }

.footer .f-about {
  margin-top: 18px;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; font-size: 0.92rem; }
.footer ul li a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer ul li a:hover { color: var(--cyan); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a { color: rgba(255,255,255,0.7); margin: 0 8px; }
.footer-bottom a:hover { color: var(--cyan); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .hero-inner,
  .about-split,
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { order: -1; max-width: 320px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .features-grid,
  .products-grid,
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 6px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 8px;
    border-bottom: 1px solid var(--blue-pale);
  }
  .nav-links a.nav-cta { margin-top: 8px; text-align: center; }
  section { padding: 60px 20px; }
  .hero { padding: 70px 20px 80px; }
  .features-grid,
  .products-grid,
  .values-grid,
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .stat-num { font-size: 2.25rem; }
  .contact-form,
  .contact-info { padding: 30px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
