@import url('https://fonts.googleapis.com/css2?family=RocknRoll+One&family=M+PLUS+2:wght@400;500;700&display=swap');

:root {
  --pd-cream: #faf6ee;
  --pd-cream-dark: #f0e8d8;
  --pd-navy: #1a2a4a;
  --pd-navy-light: #2c3e6b;
  --pd-white: #ffffff;
  --pd-text: #2d2d2d;
  --pd-text-light: #5a5a5a;
  --pd-accent: #c4944a;
  --pd-accent-light: #d4a85c;
  --pd-border: #e0d8c8;
  --pd-success: #3a7d5c;
  --pd-warning: #c47044;
  --pd-shadow: rgba(26, 42, 74, 0.08);
  --pd-shadow-md: rgba(26, 42, 74, 0.12);
  --pd-radius: 8px;
  --pd-radius-lg: 12px;
  --pd-font-heading: 'RocknRoll One', sans-serif;
  --pd-font-body: 'M PLUS 2', sans-serif;
  --pd-max-width: 1140px;
  --pd-nav-height: 72px;
  --pd-transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--pd-font-body);
  color: var(--pd-text);
  background-color: var(--pd-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.pd-menu-open {
  overflow: hidden;
}

a {
  color: var(--pd-navy);
  text-decoration: none;
  transition: color var(--pd-transition);
}

a:hover {
  color: var(--pd-accent);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--pd-font-heading);
  line-height: 1.4;
  color: var(--pd-navy);
}

.container {
  max-width: var(--pd-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.pd-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--pd-nav-height);
  background: var(--pd-white);
  border-bottom: 1px solid var(--pd-border);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-nav-inner {
  max-width: var(--pd-max-width);
  width: 100%;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.pd-nav-logo {
  font-family: var(--pd-font-heading);
  font-size: 1.25rem;
  color: var(--pd-navy);
  text-decoration: none;
  white-space: nowrap;
  justify-self: center;
  z-index: 2;
}

.pd-nav-logo:hover {
  color: var(--pd-accent);
}

.pd-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  list-style: none;
  min-width: 0;
}

.pd-nav-links.left {
  justify-content: flex-start;
}

.pd-nav-links.right {
  justify-content: flex-end;
}

.pd-nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--pd-text-light);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

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

.pd-nav-links a:hover {
  color: var(--pd-navy);
}

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

.pd-nav-cta {
  background: var(--pd-navy);
  color: var(--pd-white) !important;
  padding: 8px 20px;
  border-radius: var(--pd-radius);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background var(--pd-transition);
  display: inline-block;
}

.pd-nav-cta::after {
  display: none !important;
}

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

.pd-nav-dropdown {
  position: relative;
  list-style: none;
}

.pd-nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pd-nav-dropdown-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 300px;
  padding: 14px;
  display: grid;
  gap: 6px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--pd-border);
  border-radius: 18px;
  box-shadow: 0 18px 42px var(--pd-shadow-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--pd-transition), transform var(--pd-transition), visibility var(--pd-transition);
  z-index: 1005;
}

.pd-nav-dropdown-menu li {
  list-style: none;
}

.pd-nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--pd-navy);
  line-height: 1.45;
  white-space: normal;
}

.pd-nav-dropdown-menu a::after {
  display: none;
}

.pd-nav-dropdown-menu a:hover {
  background: var(--pd-cream);
  color: var(--pd-accent);
}

.pd-nav-dropdown:hover > .pd-nav-dropdown-menu,
.pd-nav-dropdown:focus-within > .pd-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.pd-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--pd-navy);
  padding: 8px;
}

.pd-mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.pd-mobile-menu {
  display: none;
  position: fixed;
  top: var(--pd-nav-height);
  left: 0;
  width: 100%;
  background: var(--pd-white);
  border-bottom: 1px solid var(--pd-border);
  padding: 20px 24px;
  z-index: 999;
  box-shadow: 0 4px 12px var(--pd-shadow);
}

.pd-mobile-menu.active {
  display: block;
}

.pd-mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pd-mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--pd-text);
  display: block;
  padding: 8px 0;
}

.pd-mobile-menu .pd-nav-cta {
  text-align: center;
  margin-top: 8px;
  color: var(--pd-white) !important;
}

.pd-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--pd-cream);
  position: relative;
  padding: calc(var(--pd-nav-height) + 60px) 24px 60px;
  overflow: hidden;
}

.pd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pd-cream) 0%, var(--pd-cream-dark) 50%, #e8dcc4 100%);
  z-index: 0;
}

.pd-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.pd-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.pd-hero-icon {
  position: absolute;
  z-index: 1;
  opacity: 0.08;
  color: var(--pd-navy);
}

.pd-hero-icon.icon-left {
  top: 20%;
  left: 8%;
  width: 120px;
  height: 120px;
}

.pd-hero-icon.icon-right {
  bottom: 15%;
  right: 10%;
  width: 100px;
  height: 100px;
}

.pd-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.pd-hero-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--pd-navy);
}

.pd-hero-subtitle {
  font-size: 1.1rem;
  color: var(--pd-text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}

.pd-hero-cta {
  display: inline-block;
  background: var(--pd-navy);
  color: var(--pd-white);
  padding: 14px 36px;
  border-radius: var(--pd-radius);
  font-family: var(--pd-font-body);
  font-size: 1rem;
  font-weight: 500;
  transition: background var(--pd-transition), transform var(--pd-transition);
}

.pd-hero-cta:hover {
  background: var(--pd-navy-light);
  color: var(--pd-white);
  transform: translateY(-2px);
}

.pd-section {
  padding: 80px 0;
}

.pd-section-alt {
  background: var(--pd-white);
}

.pd-section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 12px;
  color: var(--pd-navy);
}

.pd-section-subtitle {
  text-align: center;
  color: var(--pd-text-light);
  font-size: 0.95rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pd-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.pd-about-text h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.pd-about-text p {
  color: var(--pd-text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.pd-about-role {
  background: var(--pd-cream);
  padding: 16px 20px;
  border-left: 3px solid var(--pd-accent);
  border-radius: 0 var(--pd-radius) var(--pd-radius) 0;
  margin-top: 20px;
}

.pd-about-role p {
  font-size: 0.9rem;
  color: var(--pd-text);
  margin-bottom: 0;
}

.pd-newsletter {
  background: linear-gradient(135deg, var(--pd-navy) 0%, var(--pd-navy-light) 100%);
  padding: 60px 0;
  color: var(--pd-white);
}

.pd-newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.pd-newsletter h2 {
  color: var(--pd-white);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.pd-newsletter p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.pd-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pd-newsletter-form input[type="text"],
.pd-newsletter-form input[type="email"] {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--pd-radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--pd-white);
  font-family: var(--pd-font-body);
  font-size: 0.95rem;
}

.pd-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.pd-newsletter-form input:focus {
  outline: none;
  border-color: var(--pd-accent);
  background: rgba(255, 255, 255, 0.15);
}

.pd-newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.pd-newsletter-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--pd-accent);
}

.pd-newsletter-submit {
  background: var(--pd-accent);
  color: var(--pd-white);
  padding: 12px 32px;
  border: none;
  border-radius: var(--pd-radius);
  font-family: var(--pd-font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--pd-transition);
}

.pd-newsletter-submit:hover {
  background: var(--pd-accent-light);
}

.pd-article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pd-article-card {
  background: var(--pd-white);
  border-radius: var(--pd-radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--pd-shadow);
  transition: transform var(--pd-transition), box-shadow var(--pd-transition);
}

.pd-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--pd-shadow-md);
}

.pd-article-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.pd-article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--pd-transition);
}

.pd-article-card:hover .pd-article-card-img img {
  transform: scale(1.05);
}

.pd-article-card-body {
  padding: 24px;
}

.pd-article-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.pd-article-card-body h3 a {
  color: var(--pd-navy);
}

.pd-article-card-body h3 a:hover {
  color: var(--pd-accent);
}

.pd-article-card-summary {
  font-size: 0.9rem;
  color: var(--pd-text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.pd-article-card-summary ul {
  list-style: none;
  padding: 0;
}

.pd-article-card-summary li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.pd-article-card-summary li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--pd-accent);
  border-radius: 50%;
}

.pd-article-card-cta {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--pd-navy);
  border-bottom: 2px solid var(--pd-accent);
  padding-bottom: 2px;
  transition: color var(--pd-transition);
}

.pd-article-card-cta:hover {
  color: var(--pd-accent);
}

.pd-advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pd-advantage-card {
  background: var(--pd-cream);
  padding: 32px 24px;
  border-radius: var(--pd-radius-lg);
  text-align: center;
  border: 1px solid var(--pd-border);
  transition: border-color var(--pd-transition);
}

.pd-advantage-card:hover {
  border-color: var(--pd-accent);
}

.pd-advantage-icon {
  width: 48px;
  height: 48px;
  color: var(--pd-accent);
  margin: 0 auto 16px;
}

.pd-advantage-card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.pd-advantage-card p {
  font-size: 0.9rem;
  color: var(--pd-text-light);
  line-height: 1.7;
}

.pd-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.pd-mission-text h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.pd-mission-text p {
  color: var(--pd-text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

.pd-closing-cta {
  text-align: center;
  padding: 80px 0;
}

.pd-closing-cta h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.pd-closing-cta p {
  color: var(--pd-text-light);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.pd-closing-cta .pd-hero-cta {
  display: inline-block;
}

.pd-footer {
  background: var(--pd-navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 48px 0 24px;
}

.pd-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.pd-footer-col h4 {
  color: var(--pd-white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: var(--pd-font-heading);
}

.pd-footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.pd-footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--pd-accent);
}

.pd-footer-policies ul {
  list-style: none;
}

.pd-footer-policies li {
  margin-bottom: 10px;
}

.pd-footer-policies a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--pd-transition);
}

.pd-footer-policies a:hover {
  color: var(--pd-accent);
}

.pd-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.pd-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--pd-cream);
  border-top: 2px solid var(--pd-navy);
  padding: 20px 24px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 16px var(--pd-shadow-md);
}

.pd-cookie-bar.visible {
  display: block;
}

.pd-cookie-inner {
  max-width: var(--pd-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pd-cookie-text {
  font-size: 0.85rem;
  color: var(--pd-text);
  line-height: 1.6;
  flex: 1;
  min-width: 280px;
}

.pd-cookie-text a {
  color: var(--pd-navy);
  text-decoration: underline;
}

.pd-cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.pd-cookie-accept,
.pd-cookie-reject {
  padding: 10px 24px;
  border-radius: var(--pd-radius);
  font-family: var(--pd-font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid var(--pd-navy);
  transition: all var(--pd-transition);
}

.pd-cookie-accept {
  background: var(--pd-navy);
  color: var(--pd-white);
}

.pd-cookie-accept:hover {
  background: var(--pd-navy-light);
  border-color: var(--pd-navy-light);
}

.pd-cookie-reject {
  background: transparent;
  color: var(--pd-navy);
}

.pd-cookie-reject:hover {
  background: var(--pd-navy);
  color: var(--pd-white);
}

.pd-page-header {
  background: linear-gradient(135deg, var(--pd-cream) 0%, var(--pd-cream-dark) 100%);
  padding: calc(var(--pd-nav-height) + 48px) 24px 48px;
  text-align: center;
}

.pd-page-header h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.pd-page-header p {
  color: var(--pd-text-light);
  font-size: 0.95rem;
}

.pd-breadcrumb {
  font-size: 0.85rem;
  color: var(--pd-text-light);
  padding: 16px 0;
}

.pd-breadcrumb a {
  color: var(--pd-text-light);
}

.pd-breadcrumb a:hover {
  color: var(--pd-accent);
}

.pd-breadcrumb span {
  margin: 0 8px;
  color: var(--pd-border);
}

.pd-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: flex-start;
}

.pd-contact-info-card {
  background: var(--pd-cream);
  padding: 32px;
  border-radius: var(--pd-radius-lg);
}

.pd-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.pd-contact-info-item:last-child {
  margin-bottom: 0;
}

.pd-contact-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--pd-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.pd-contact-info-item h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
  font-family: var(--pd-font-body);
  font-weight: 700;
}

.pd-contact-info-item p {
  font-size: 0.9rem;
  color: var(--pd-text-light);
}

.pd-contact-form-card {
  background: var(--pd-white);
  padding: 36px;
  border-radius: var(--pd-radius-lg);
  box-shadow: 0 2px 16px var(--pd-shadow);
}

.pd-form-group {
  margin-bottom: 20px;
}

.pd-form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--pd-text);
}

.pd-form-group input,
.pd-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius);
  font-family: var(--pd-font-body);
  font-size: 0.95rem;
  color: var(--pd-text);
  background: var(--pd-cream);
  transition: border-color var(--pd-transition);
}

.pd-form-group input:focus,
.pd-form-group textarea:focus {
  outline: none;
  border-color: var(--pd-accent);
}

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

.pd-form-submit {
  width: 100%;
  background: var(--pd-navy);
  color: var(--pd-white);
  padding: 14px 32px;
  border: none;
  border-radius: var(--pd-radius);
  font-family: var(--pd-font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--pd-transition);
}

.pd-form-submit:hover {
  background: var(--pd-navy-light);
}

.pd-map-section {
  margin-top: 48px;
}

.pd-map-section h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.pd-map-frame {
  width: 100%;
  height: 360px;
  border-radius: var(--pd-radius-lg);
  overflow: hidden;
  border: 1px solid var(--pd-border);
}

.pd-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.pd-map-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--pd-navy);
  text-decoration: underline;
}

.pd-article-content {
  max-width: 780px;
  margin: 0 auto;
}

.pd-article-header {
  text-align: center;
  padding: calc(var(--pd-nav-height) + 40px) 24px 32px;
  background: linear-gradient(135deg, var(--pd-cream) 0%, var(--pd-cream-dark) 100%);
}

.pd-article-header h1 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.pd-article-meta {
  font-size: 0.85rem;
  color: var(--pd-text-light);
}

.pd-article-body {
  padding: 40px 24px 60px;
}

.pd-article-body h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--pd-border);
}

.pd-article-body h3 {
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 12px;
}

.pd-article-body p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--pd-text);
}

.pd-article-body ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.pd-article-body li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: var(--pd-text-light);
}

.pd-article-image {
  margin: 32px 0;
  border-radius: var(--pd-radius-lg);
  overflow: hidden;
}

.pd-article-image img {
  width: 100%;
}

.pd-article-image figcaption {
  font-size: 0.82rem;
  color: var(--pd-text-light);
  text-align: center;
  padding: 8px 0;
}

.pd-article-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid var(--pd-border);
  margin-top: 48px;
}

.pd-article-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--pd-navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pd-article-nav a:hover {
  color: var(--pd-accent);
}

.pd-article-nav a svg {
  width: 16px;
  height: 16px;
}

.pd-about-profile {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: flex-start;
}

.pd-about-photo {
  border-radius: var(--pd-radius-lg);
  overflow: hidden;
}

.pd-about-photo img {
  width: 100%;
}

.pd-about-bio h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pd-about-role-tag {
  display: inline-block;
  background: var(--pd-accent);
  color: var(--pd-white);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.pd-about-bio p {
  color: var(--pd-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.pd-legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.pd-legal-content h2 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--pd-border);
}

.pd-legal-content p {
  color: var(--pd-text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}

.pd-legal-content ul {
  margin-bottom: 14px;
  padding-left: 24px;
}

.pd-legal-content li {
  color: var(--pd-text-light);
  margin-bottom: 8px;
  line-height: 1.7;
}

.pd-legal-update {
  font-size: 0.85rem;
  color: var(--pd-text-light);
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--pd-border);
}

.pd-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.pd-modal-overlay.active {
  display: flex;
}

.pd-modal {
  background: var(--pd-white);
  border-radius: var(--pd-radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.pd-modal svg {
  width: 48px;
  height: 48px;
  color: var(--pd-success);
  margin-bottom: 16px;
}

.pd-modal h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.pd-modal p {
  color: var(--pd-text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

.pd-modal-close {
  background: var(--pd-navy);
  color: var(--pd-white);
  padding: 10px 28px;
  border: none;
  border-radius: var(--pd-radius);
  font-family: var(--pd-font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--pd-transition);
}

.pd-modal-close:hover {
  background: var(--pd-navy-light);
}

@media (max-width: 1024px) {
  .pd-nav {
    height: auto;
  }

  .pd-nav-inner {
    display: flex;
    justify-content: space-between;
    min-height: var(--pd-nav-height);
    padding: 12px 20px;
  }

  .pd-nav-links {
    display: none;
  }

  .pd-nav-logo {
    justify-self: start;
    max-width: calc(100% - 72px);
    font-size: 1.05rem;
    white-space: normal;
    line-height: 1.25;
  }

  .pd-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--pd-border);
    border-radius: 50%;
    background: linear-gradient(135deg, #fffdf9 0%, #f2eadc 100%);
    box-shadow: 0 10px 22px var(--pd-shadow);
    flex-shrink: 0;
  }

  .pd-mobile-menu {
    top: calc(var(--pd-nav-height) + 6px);
    left: 16px;
    width: calc(100% - 32px);
    padding: 18px;
    border: 1px solid var(--pd-border);
    border-radius: 20px;
    box-shadow: 0 22px 44px rgba(26, 42, 74, 0.14);
    max-height: calc(100vh - var(--pd-nav-height) - 24px);
    overflow-y: auto;
  }

  .pd-mobile-menu ul {
    gap: 10px;
  }

  .pd-mobile-menu li {
    list-style: none;
  }

  .pd-mobile-menu > ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(224, 216, 200, 0.75);
    padding-bottom: 8px;
  }

  .pd-mobile-menu a {
    padding: 10px 12px;
    border-radius: 12px;
    line-height: 1.5;
  }

  .pd-mobile-menu a:hover {
    background: var(--pd-cream);
  }

  .pd-mobile-menu .pd-nav-dropdown > a {
    font-weight: 700;
    color: var(--pd-navy);
  }

  .pd-mobile-menu .pd-nav-dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    margin-top: 8px;
    padding: 8px 0 0 14px;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border: none;
    border-left: 3px solid var(--pd-border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .pd-mobile-menu .pd-nav-dropdown-menu a {
    padding: 8px 10px;
    font-size: 0.92rem;
    color: var(--pd-text-light);
    background: transparent;
  }

  .pd-mobile-menu .pd-nav-dropdown-menu a:hover {
    color: var(--pd-navy);
  }

  .pd-mobile-menu .pd-nav-cta {
    margin-top: 12px;
    padding: 12px 18px;
  }

  .pd-hero {
    min-height: 420px;
    padding-top: calc(var(--pd-nav-height) + 48px);
  }

  .pd-hero-title {
    font-size: 1.8rem;
  }

  .pd-hero-subtitle {
    font-size: 0.95rem;
  }

  .pd-about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pd-article-grid {
    grid-template-columns: 1fr;
  }

  .pd-advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pd-mission-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pd-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pd-contact-grid {
    grid-template-columns: 1fr;
  }

  .pd-about-profile {
    grid-template-columns: 1fr;
  }

  .pd-cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .pd-cookie-actions {
    justify-content: center;
  }

  .pd-article-nav {
    flex-direction: column;
  }

  .pd-section {
    padding: 56px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .pd-nav-inner {
    padding: 12px 16px;
  }

  .pd-mobile-menu {
    left: 10px;
    width: calc(100% - 20px);
    padding: 16px 14px;
  }

  .pd-hero-title {
    font-size: 1.5rem;
  }

  .pd-hero-cta {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .pd-section-title {
    font-size: 1.4rem;
  }

  .pd-page-header h1 {
    font-size: 1.5rem;
  }

  .pd-article-header h1 {
    font-size: 1.4rem;
  }

  .pd-contact-form-card {
    padding: 24px;
  }
}
