/*
Theme Name: Rocket Man
Theme URI: https://daccaa.com
Author: DACCAA Ltd
Author URI: https://daccaa.com
Description: A custom WordPress theme called Rocket Man.
Version: 1.0
License: Proprietary — All rights reserved
License URI: https://daccaa.com/wordpress/license.php
Text Domain: rocketman
Tags: custom-theme, rocket, minimal, responsive
*/

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

html,
body {
  height: 100%;
  width: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  background-color: #ebebee;
  color: black;
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  color: #999;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

p {
  font-size: 18px;
}

a,
input,
textarea,
select,
button {
  transition: background-color 0.8s ease;
  -webkit-appearance: none;
  appearance: none;
  font-family: "Montserrat", sans-serif;
}

.inner {
  max-width: 1400px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

/* --- Variables --- */

:root {
  --primary: #F37945;
  --primary-hov: #b55a33;
  --primary-text: #ffffff;
  --primary-hov-text: #ffffff;
  --secondary: #121D42;
  --secondary-hov: #060a17;
  --secondary-text: #ffffff;
  --secondary-hov-text: #ffffff;
}

/* --- Main styles --- */

.site-header {
  background-color: white;
  width: 100%;
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 8%);
}

.site-header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.site-header .branding img {
  max-width: 150px;
  width: auto;
  height: auto;
}

.site-header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.site-header nav li {
  margin: 0;
  padding: 0;
}

.site-header nav a {
  text-decoration: none;
  color: var(--primary);
  font-weight: bold;
  display: block;
  padding: 6px 0;
}

.site-header nav a:hover {
  text-decoration: underline;
}

.site-header nav .cta a {
  background-color: var(--primary) !important;
  color: var(--primary-text) !important;
  border-radius: 30px;
  padding: 10px 30px;
  text-decoration: none !important;
}

.site-header nav .cta a:hover {
  background-color: var(--primary-hov) !important;
  color: var(--primary-hov-text) !important;
}

.site-header nav li.current_page_item a {
  color: var(--primary-hov) !important;
  text-decoration: none !important;
}

.site-header .site-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header .nav-platform {
  background-color: var(--primary);
  color: var(--primary-text);
  border-radius: 30px;
  padding: 10px 22px;
  text-decoration: none;
  font-weight: bold;
}

.site-header .nav-platform.secondary {
  background-color: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.site-header .nav-platform:hover {
  background-color: var(--primary-hov);
  color: var(--primary-hov-text);
}

.site-header .nav-platform.secondary:hover {
  background-color: var(--secondary);
  color: var(--secondary-text);
}

.site-header .nav-toggle {
  background-color: transparent;
  border: 2px solid var(--primary);
  border-radius: 999px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.site-header .nav-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.site-header .nav-toggle .bar {
  width: 22px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
}

.site-header .nav-toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header .nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 90vw;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -10px 0 30px rgb(0 0 0 / 12%);
  padding: 30px 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.site-header .nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 900;
}

.site-header .site-nav.is-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.site-header .nav-close {
  border: none;
  background: rgba(18, 29, 66, 0.08);
  color: var(--secondary);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.site-header .nav-close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.site-content {
  padding: 50px 0;
}

footer {}

footer .top {
  background-color: black;
  padding: 50px 0;
  color: white;
}

footer .top .inner {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

footer .top .inner .col {
  flex: 1;
}

footer .top a {
  color: white;
}

footer .top h4 {
  margin-bottom: 5px;
}

footer .top ul {
  margin-left: 30px;
}

footer .legal {
  background-color: black;
  color: white;
}

footer .legal .inner {
  border-top: solid 1px #ebebee;
  padding: 30px 0;
}


/* --- Home page --- */
.home .site-content {
  padding: 0 !important;
}

.hero {
  background-color: white;
  border-top: solid 1px #ccc;
}

.hero .inner {
  padding: 150px 0;
  display: flex;
  gap: 50px;
  align-items: center;
}

.hero .inner .content {
  flex: 1;
}

.hero .inner .image {
  flex: 1.5;
}

.hero .inner .image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.hero h1 {
  color: var(--primary);
  font-size: 4rem;
}

.hero .hero-subtitle {
  padding: 30px 0;
  font-size: 1.5rem;
  font-weight: 400;
}

.hero .hero-form {
  position: relative;
  max-width: 560px;
}

.hero .hero-field {
  display: inline-block;
}

.hero .hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: var(--primary);
  color: var(--primary-text);
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 12px 28px rgb(18 29 66 / 12%);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.hero .hero-button:hover {
  background-color: var(--primary-hov);
  color: var(--primary-hov-text);
  transform: translateY(-1px);
}

/* --- Partner signal --- */
.partner-signal {
  background-color: #fff7f2;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.partner-signal .inner {
  padding: 30px 0;
}

.partner-signal .signal-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.partner-signal .copy {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1c2547;
  margin: 0;
}

.partner-signal .logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.partner-signal .logos img {
  height: 44px;
  width: auto;
  max-width: 160px;
}


/* --- Growth engines --- */
.growth-engines {
  background-color: white;
  padding: 120px 0;
}

.growth-engines .inner h2 {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
}

.growth-engines .engine-stack {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.growth-engines .engine-card {
  background-color: #fff7f2;
  border: 1px solid #f7d7c8;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 12px 24px rgb(18 29 66 / 10%);
}

.growth-engines .engine-card-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.growth-engines .engine-card h3 {
  font-size: 1.45rem;
  color: var(--secondary);
  margin: 0;
}

.growth-engines .function-tag {
  display: inline-flex;
  align-items: center;
  background-color: #ffe6d8;
  color: var(--primary);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.growth-engines .engine-card p {
  font-size: 1.05rem;
  color: #1c2547;
  line-height: 1.65;
  margin: 0;
}

.growth-engines .engine-card .proof-point {
  margin-top: 10px;
  font-weight: 700;
  color: var(--secondary);
}

/* --- How it works --- */
.how-it-works {
  background-color: #f5f8ff;
  padding: 120px 0;
}

.how-it-works .inner {
  display: flex;
  align-items: center;
  gap: 70px;
}

.how-it-works .content {
  flex: 1.1;
}

.how-it-works h2 {
  font-size: 2.5rem;
  color: var(--secondary);
}

.how-it-works .content>p {
  margin-top: 18px;
  color: #1c2547;
  font-size: 1.15rem;
  line-height: 1.7;
}

.how-it-works .steps {
  margin-top: 30px;
  display: grid;
  gap: 16px;
}

.how-it-works .step {
  background-color: white;
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 8px 18px rgb(18 29 66 / 8%);
}

.how-it-works .step .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  font-weight: 700;
}

.how-it-works .step p {
  margin: 0;
  font-size: 1rem;
  color: #1c2547;
  line-height: 1.65;
}

.how-it-works .image {
  flex: 1;
}

.how-it-works .image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgb(18 29 66 / 14%);
}

/* --- Blog --- */
.page-header {
  padding: 100px 0 40px;
}

.page-title,
.entry-title {
  color: var(--primary);
}

.page-title {
  font-size: 2.8rem;
}

.post-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  padding-bottom: 80px;
}

.articleLink {
  text-decoration: none;
  color: inherit;
  display: block;
}

.post-list article {
  background-color: white;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 12px 24px rgb(18 29 66 / 10%);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-list .entry-title {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.post-list .entry-excerpt {
  color: #1c2547;
  line-height: 1.7;
}

.articleLink:hover article {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgb(18 29 66 / 14%);
}

.entry-header {
  padding: 100px 0 20px;
}

.entry-header .entry-title {
  font-size: 3rem;
  margin-bottom: 12px;
}

.entry-meta {
  color: #5a647f;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.entry-content {
  background-color: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 24px rgb(18 29 66 / 10%);
  line-height: 1.8;
}

.entry-content p {
  font-size: 1.05rem;
}

.entry-content blockquote {
  margin: 24px 0;
  padding: 18px 24px;
  border-left: 4px solid var(--primary);
  background-color: #fff7f2;
  border-radius: 16px;
  color: #1c2547;
}

.entry-content hr {
  border: none;
  border-top: 1px solid #e2e5ef;
  margin: 32px 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--secondary);
  margin: 24px 0 12px;
}

.entry-content h2 {
  font-size: 2rem;
}

.entry-content h3 {
  font-size: 1.5rem;
}

.entry-content h4 {
  font-size: 1.2rem;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
  margin-bottom: 18px;
}

.entry-content strong {
  font-weight: 700;
}

.entry-content em {
  font-style: italic;
}

.entry-content ul,
.entry-content ol {
  padding-left: 24px;
}

.entry-content a {
  color: var(--primary);
  text-decoration: underline;
}

.entry-content a:hover {
  color: var(--primary-hov);
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.entry-content figure {
  margin: 24px 0;
}

.entry-content figcaption {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #5a647f;
}

.entry-content .alignleft {
  float: left;
  margin: 8px 24px 16px 0;
}

.entry-content .alignright {
  float: right;
  margin: 8px 0 16px 24px;
}

.entry-content .aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgb(18 29 66 / 8%);
}

.entry-content th,
.entry-content td {
  padding: 12px 14px;
  border-bottom: 1px solid #e2e5ef;
  text-align: left;
}

.entry-content th {
  background-color: #fff7f2;
  color: var(--secondary);
  font-weight: 600;
}

.entry-content tr:last-child td {
  border-bottom: none;
}

.entry-content pre,
.entry-content code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

.entry-content pre {
  background-color: #0f172a;
  color: #e2e8f0;
  padding: 18px;
  border-radius: 16px;
  overflow-x: auto;
  margin: 24px 0;
}

.entry-content code {
  background-color: #f2f4f8;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.95rem;
}

.entry-content pre code {
  background: none;
  padding: 0;
  font-size: 0.95rem;
}

.entry-content ul li,
.entry-content ol li {
  margin-bottom: 8px;
}

.entry-content .wp-block-quote {
  margin: 24px 0;
  padding: 18px 24px;
  border-left: 4px solid var(--primary);
  background-color: #fff7f2;
  border-radius: 16px;
}

.entry-content .wp-block-file,
.page-content .wp-block-file {
  margin: 24px 0;
}

.entry-content .wp-block-file .wp-block-file__button,
.entry-content .wp-block-file .wp-element-button,
.page-content .wp-block-file .wp-block-file__button,
.page-content .wp-block-file .wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: var(--primary);
  color: var(--primary-text);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.entry-content .wp-block-file .wp-block-file__button:hover,
.entry-content .wp-block-file .wp-block-file__button:focus-visible,
.entry-content .wp-block-file .wp-element-button:hover,
.entry-content .wp-block-file .wp-element-button:focus-visible,
.page-content .wp-block-file .wp-block-file__button:hover,
.page-content .wp-block-file .wp-block-file__button:focus-visible,
.page-content .wp-block-file .wp-element-button:hover,
.page-content .wp-block-file .wp-element-button:focus-visible {
  background-color: var(--primary-hov);
  color: var(--primary-hov-text);
  text-decoration: none;
  transform: translateY(-1px);
}

.entry-content .wp-block-separator {
  border: none;
  border-top: 1px solid #e2e5ef;
  margin: 32px 0;
}

.entry-footer {
  margin-top: 28px;
  padding: 18px 0 60px;
  color: #1c2547;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.entry-footer a {
  color: var(--primary);
  text-decoration: none;
}

.entry-footer a:hover {
  text-decoration: underline;
}

.post-categories,
.post-tags {
  margin-top: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.post-categories a,
.post-tags a {
  background-color: #fff7f2;
  color: var(--secondary);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.post-categories a:hover,
.post-tags a:hover {
  background-color: var(--primary);
  color: var(--primary-text);
}

.post-navigation {
  padding: 20px 0 80px;
}

.post-navigation .nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.post-navigation a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 700;
  background-color: white;
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 10px 22px rgb(18 29 66 / 10%);
  display: block;
}

.post-navigation a:hover {
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgb(18 29 66 / 14%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pagination {
  padding-bottom: 100px;
}

.pagination .nav-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pagination .page-numbers {
  text-decoration: none;
  color: var(--secondary);
  background-color: white;
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 0 8px 16px rgb(18 29 66 / 10%);
}

.pagination .page-numbers.current {
  background-color: var(--primary);
  color: var(--primary-text);
}

.comments-area {
  padding-bottom: 80px;
}

.comments-area h2 {
  font-size: 1.6rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

.comment-reply-title {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.comment-notes,
.logged-in-as,
.required-field-message {
  color: #5a647f;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.logged-in-as a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.logged-in-as a:hover {
  text-decoration: underline;
}

.comment-notes em,
.required-field-message em {
  font-style: normal;
  font-weight: 600;
  color: var(--secondary);
}

.comment-notes .required,
.comment-form-grid .required {
  color: var(--primary);
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment {
  background-color: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 16px rgb(18 29 66 / 8%);
  margin-bottom: 16px;
}

.comment .comment-meta {
  font-size: 0.9rem;
  color: #5a647f;
  margin-bottom: 8px;
}

.comment-content p {
  margin-bottom: 12px;
}

.comment-reply-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.comment-reply-link:hover {
  text-decoration: underline;
}

.comment-respond {
  background-color: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 24px rgb(18 29 66 / 10%);
}

.comment-respond p {
  margin-bottom: 16px;
}

.comment-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.comment-form-url {
  grid-column: 1 / -1;
}

.comment-form-comment {
  margin-top: 6px;
}

.comment-respond label {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
}

.comment-respond input,
.comment-respond textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #d5d8e0;
  background-color: #f7f8fb;
  padding: 14px 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.comment-respond textarea {
  min-height: 140px;
  resize: vertical;
}

.comment-respond input:focus-visible,
.comment-respond textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  background-color: #ffffff;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #5a647f;
}

.comment-form-cookies-consent input {
  width: auto;
}

.comment-respond .submit {
  background-color: var(--primary);
  color: var(--primary-text);
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 20px rgb(18 29 66 / 12%);
}

.comment-respond .submit:hover {
  background-color: var(--primary-hov);
  color: var(--primary-hov-text);
}

/* --- Partners --- */
.site-content.partners {
  padding: 0 !important;
}

/* --- Speaking --- */
.site-content.speaking {
  padding: 0 !important;
}

.speaking-hero {
  background: linear-gradient(135deg, #f5f7ff 0%, #fff7ef 100%);
  border-top: solid 1px #eee;
}

.speaking-hero .inner {
  padding: 140px 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.speaking-hero h1 {
  color: var(--primary);
  font-size: 3.4rem;
  margin: 0 0 18px;
}

.speaking-hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #1c2547;
  margin: 0 0 16px;
}

.speaking-hero .cta-group {
  display: flex;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.speaking-hero .btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-block;
}

.speaking-hero .btn.primary {
  background-color: var(--primary);
  color: var(--primary-text);
}

.speaking-hero .btn.primary:hover {
  background-color: var(--primary-hov);
  color: var(--primary-hov-text);
}

.speaking-hero .btn.ghost {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.speaking-hero .btn.ghost:hover {
  background-color: var(--primary);
  color: var(--primary-text);
}

.speaking-hero .image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.speaking-hero .image img {
  width: min(520px, 100%);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgb(18 29 66 / 18%);
}

.speaking-experts {
  padding: 110px 0;
  background-color: #ffffff;
}

.speaking-experts h2 {
  text-align: center;
  font-size: 2.6rem;
  color: var(--secondary);
  margin-bottom: 50px;
}

.speaking-experts .split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.speaking-experts .text p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #1c2547;
  margin-bottom: 18px;
}

.speaking-experts .highlight {
  color: var(--primary);
  font-weight: 700;
}

.speaking-experts .image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.speaking-carousel {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgb(18 29 66 / 16%);
  overflow: hidden;
  background: #f2f4fb;
}

.speaking-carousel-track {
  display: flex;
  animation: speaking-carousel 15s infinite;
}

.speaking-carousel-track img {
  width: 100%;
  flex: 0 0 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes speaking-carousel {
  0%,
  28% {
    transform: translateX(0);
  }
  33%,
  61% {
    transform: translateX(-100%);
  }
  66%,
  88% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .speaking-carousel-track {
    animation: none;
  }
}

.speaking-bio {
  padding: 110px 0 120px;
  background: #f7f8fb;
}

.speaking-bio .bio-header {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}

.speaking-bio h2 {
  font-size: 2.8rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.speaking-bio h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

.speaking-bio .bio-header p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #1c2547;
  margin-bottom: 16px;
}

.speaking-bio .bio-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.speaking-bio .card {
  min-width: 0;
}

.speaking-bio .text-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 16px 30px rgb(18 29 66 / 12%);
  grid-column: span 2;
}

.speaking-bio .text-card h4 {
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 18px;
}

.speaking-bio .text-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.speaking-bio .text-card li {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1c2547;
}

.speaking-bio .text-card strong {
  color: var(--primary);
}

.speaking-bio .image-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgb(18 29 66 / 12%);
  min-height: 180px;
}

.speaking-bio .image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.speaking-testimonials {
  position: relative;
  padding: 110px 0 120px;
  background-image: url("images/speaking/background.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  overflow: hidden;
}

.speaking-testimonials .overlay {
  position: absolute;
  inset: 0;
  background: #121d42;
  opacity: 0.92;
}

.speaking-testimonials .inner {
  position: relative;
  z-index: 1;
}

.speaking-testimonials .section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.speaking-testimonials h2 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.speaking-testimonials p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding: 10px 6px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.testimonial-card {
  background: rgb(255 255 255 / 16%);
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 22px;
  padding: 26px;
  min-height: 200px;
  scroll-snap-align: start;
  backdrop-filter: blur(6px);
}

.testimonial-card p {
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.testimonial-card span {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.speaking-cta {
  padding: 110px 0 120px;
  background: #ffffff;
}

.speaking-cta .inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.speaking-cta h2 {
  font-size: 3rem;
  color: var(--secondary);
  margin: 0;
}

.speaking-cta p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #1c2547;
  margin-bottom: 26px;
}

.speaking-cta .cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.speaking-cta .btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-block;
}

.speaking-cta .btn.primary {
  background-color: var(--primary);
  color: var(--primary-text);
}

.speaking-cta .btn.primary:hover {
  background-color: var(--primary-hov);
  color: var(--primary-hov-text);
}

.speaking-cta .btn.ghost {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.speaking-cta .btn.ghost:hover {
  background-color: var(--primary);
  color: var(--primary-text);
}

.partners-hero {
  background: linear-gradient(135deg, #ffffff 0%, #fff3eb 100%);
  border-top: solid 1px #eee;
}

.partners-hero .inner {
  padding: 140px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.partners-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 700;
}

.partners-hero h1 {
  color: var(--primary);
  font-size: 3.6rem;
  margin: 16px 0 20px;
}

.partners-hero .subtitle {
  font-size: 1.35rem;
  line-height: 1.6;
  color: #1c2547;
}

.partners-hero .cta-group {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.partners-hero .btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-block;
}

.partners-hero .btn.primary {
  background-color: var(--primary);
  color: var(--primary-text);
}

.partners-hero .btn.primary:hover {
  background-color: var(--primary-hov);
  color: var(--primary-hov-text);
}

.partners-hero .btn.ghost {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.partners-hero .btn.ghost:hover {
  background-color: var(--primary);
  color: var(--primary-text);
}

.partners-hero .panel {
  background-color: white;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 30px rgb(18 29 66 / 12%);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.partners-hero .panel-item h2 {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 8px;
}

.partners-hero .panel-item p {
  color: #1c2547;
  line-height: 1.6;
}

.partner-value {
  padding: 120px 0;
  background-color: white;
}

.partner-value h2 {
  text-align: center;
  font-size: 2.4rem;
  color: var(--primary);
}

.partner-value .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.partner-value .card {
  background-color: #fff7f2;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 24px rgb(18 29 66 / 10%);
}

.partner-value .card h3 {
  color: var(--secondary);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.partner-value .card p {
  color: #1c2547;
  line-height: 1.6;
}

.partner-trust {
  padding: 90px 0 120px;
  background-color: #fff7f2;
  border-top: 1px solid #eee;
}

.partner-trust h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--primary);
}

.partner-trust .logos {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.partner-trust .logos img {
  height: 56px;
  width: auto;
  max-width: 190px;
}

/* --- CTA --- */
.ctaSec {
  background-color: var(--primary);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.ctaSec h2 {
  font-size: 2.5rem;
}

.ctaSec p {
  font-size: 1.35rem;
  padding: 26px 0;
}

.ctaSec .trajectory-graph {
  width: min(640px, 100%);
  display: block;
  margin: 0 auto 34px;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgb(18 29 66 / 22%);
}

.ctaSec a {
  background-color: white;
  color: var(--primary);
  padding: 15px 34px;
  border-radius: 999px;
  display: inline-block;
  text-decoration: none;
  font-size: 1.05rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}

.ctaSec a:hover {
  background-color: var(--primary-hov);
  color: var(--primary-hov-text);
}


/* --- Dark mode --- 

@media (prefers-color-scheme: dark) {
  body {
    background-color: #2b2b2b;
    color: #ccc !important;
  }
}

*/

/* Small desktop sizing issues --- */

@media only screen and (max-width: 1410px) {
  .inner {
    width: 85%;
  }
}

/* --- Mobile styles --- */

@media only screen and (max-width: 800px) {
  .inner, .how-it-works, .ctaSec, .growth-engines, footer .top {
    width: 100%;
    padding: 20px !important;
    gap: 15px !important;
  }
  
  .site-header nav li a {
    padding: 5px 20px;
    text-align: center;
    width: 100%;
    display: inline-block;
  }

  .site-header .site-nav {
    margin-top: 20px;
  }
  
  .site-header .inner,
  .site-header nav ul,
  .how-it-works .inner,
  footer .top .inner,
  .hero .inner {
    flex-direction: column;
  }

  .hero .inner {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero .hero-button {
    width: 100%;
  }

  .partner-signal .signal-link {
    flex-direction: column;
    align-items: flex-start;
  }

  .partner-signal .logos {
    gap: 16px;
  }

  .growth-engines {
    padding: 70px 0 !important;
  }

  .growth-engines .inner h2 {
    font-size: 2.1rem;
  }

  .growth-engines .engine-card {
    padding: 22px;
  }

  .growth-engines .engine-card h3 {
    font-size: 1.2rem;
  }

  .how-it-works {
    padding: 75px 0 !important;
  }

  .how-it-works h2 {
    font-size: 2rem;
  }

  .how-it-works .content>p {
    font-size: 1rem;
  }

  .ctaSec h2 {
    font-size: 2rem;
  }

  .ctaSec p {
    font-size: 1.05rem;
    padding: 20px 0;
  }

  .ctaSec .trajectory-graph {
    margin-bottom: 24px;
  }

  .partners-hero .inner {
    grid-template-columns: 1fr;
    padding: 90px 0;
  }

  .speaking-hero .inner {
    grid-template-columns: 1fr;
    padding: 90px 0;
  }

  .partners-hero h1 {
    font-size: 2.6rem;
  }

  .speaking-hero h1 {
    font-size: 2.6rem;
  }

  .partners-hero .subtitle {
    font-size: 1.1rem;
  }

  .speaking-hero p {
    font-size: 1.05rem;
  }

  .speaking-hero .cta-group,
  .speaking-cta .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .speaking-hero .btn,
  .speaking-cta .btn {
    width: 100%;
    text-align: center;
  }

  .speaking-experts {
    padding: 80px 0;
  }

  .speaking-experts h2 {
    font-size: 2.1rem;
  }

  .speaking-experts .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .speaking-experts .text p {
    font-size: 1.05rem;
  }

  .speaking-carousel {
    max-width: 320px;
  }

  .speaking-bio {
    padding: 80px 0 90px;
  }

  .speaking-bio h2 {
    font-size: 2.2rem;
  }

  .speaking-bio h3 {
    font-size: 1.15rem;
  }

  .speaking-bio .bio-header {
    text-align: left;
  }

  .speaking-bio .bio-cards {
    grid-template-columns: 1fr;
  }

  .speaking-bio .text-card {
    grid-row: auto;
  }

  .speaking-testimonials {
    padding: 80px 0 90px;
  }

  .speaking-testimonials h2 {
    font-size: 2.1rem;
  }

  .speaking-testimonials p {
    font-size: 1.05rem;
  }

  .testimonial-track {
    grid-auto-columns: minmax(220px, 85%);
  }

  .testimonial-card {
    padding: 22px;
    min-height: 0;
  }

  .speaking-cta {
    padding: 80px 0 90px;
  }

  .speaking-cta .inner {
    grid-template-columns: 1fr;
  }

  .speaking-cta h2 {
    font-size: 2.3rem;
  }

  .partner-value .cards {
    grid-template-columns: 1fr;
  }

  .partner-trust .logos {
    justify-content: flex-start;
    gap: 20px;
  }

  .partner-trust .logos img {
    height: 44px;
  }

  .page-header {
    padding: 70px 0 30px;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .post-list {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
  }

  .entry-header {
    padding: 70px 0 20px;
  }

  .entry-header .entry-title {
    font-size: 2.2rem;
  }

  .entry-content {
    padding: 28px;
  }

  .post-navigation .nav-links {
    grid-template-columns: 1fr;
  }

  .comment-form-grid {
    grid-template-columns: 1fr;
  }
  
}

@media only screen and (max-width: 1100px) {
  .hero .inner {
    padding: 110px 0;
  }

  .hero h1 {
    font-size: 3.3rem;
  }

  .how-it-works .inner {
    gap: 40px;
  }

  .post-list {
    grid-template-columns: 1fr;
  }
}

/* --- CPD Page Styles --- */
.site-content.cpd {
  padding: 0 !important;
}

.cpd-hero {
  background: linear-gradient(135deg, #f5f7ff 0%, #fff7ef 100%);
  border-top: solid 1px #eee;
}

.cpd-hero .inner {
  padding: 120px 0;
  max-width: 800px;
  text-align: center;
}

.cpd-hero h1 {
  color: var(--primary);
  font-size: 3rem;
  margin: 0 0 18px;
}

.cpd-hero p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #1c2547;
  margin: 0 0 16px;
}

.cpd-hero .sub-headline {
  font-size: 1.3rem;
  font-weight: 400;
}

.cpd-hero .cta-group {
  margin-top: 26px;
}

.cpd-hero .btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-block;
  background-color: var(--primary);
  color: var(--primary-text);
  border: 2px solid var(--primary);
}

.cpd-hero .btn:hover {
  background-color: var(--primary-hov);
  border-color: var(--primary-hov);
}

.cpd-truth {
  padding: 100px 0;
  background-color: #ffffff;
}

.cpd-truth .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.cpd-truth h2 {
  font-size: 2.4rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.cpd-truth .text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #1c2547;
  margin-bottom: 18px;
}

.cpd-truth .pillars h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.cpd-truth .pillars ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.cpd-truth .pillars li {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1c2547;
}

.cpd-truth .pillars li strong {
    display: block;
    color: var(--secondary);
    font-weight: 700;
}

.cpd-accreditation {
  padding: 80px 0;
  background-color: #f7f8fb;
  text-align: center;
}

.cpd-accreditation h2 {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 40px;
}

.cpd-accreditation .logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.cpd-accreditation .logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cpd-accreditation .logo-item--wide {
  grid-column: 1 / -1;
}

.cpd-accreditation .logo-item img {
  max-height: 90px;
  max-width: min(420px, 100%);
  width: auto;
}

.cpd-delivery {
  padding: 100px 0;
  background-color: #ffffff;
}

.cpd-delivery .inner {
  max-width: 900px;
  text-align: center;
}

.cpd-delivery h2 {
  font-size: 2.4rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.cpd-delivery .section-intro {
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.cpd-delivery .delivery-models {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}

.cpd-delivery .model-card {
  background-color: #f7f8fb;
  border: 1px solid #e2e5ef;
  border-radius: 18px;
  padding: 28px;
}

.cpd-delivery .model-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.cpd-mid-cta {
  padding: 70px 20px;
  background-color: var(--secondary);
  color: #ffffff;
  text-align: center;
}

.cpd-mid-cta .inner {
  max-width: 780px;
}

.cpd-mid-cta h2 {
  font-size: 2.2rem;
  margin: 0 0 14px;
}

.cpd-mid-cta p {
  margin: 0 0 30px;
  font-size: 1.12rem;
  line-height: 1.5;
}

.cpd-mid-cta a {
  background-color: var(--primary);
  color: var(--primary-text);
  border: 2px solid var(--primary);
  border-radius: 999px;
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 15px 34px;
  text-decoration: none;
  text-transform: uppercase;
}

.cpd-mid-cta a:hover {
  background-color: var(--primary-hov);
  border-color: var(--primary-hov);
}

.cpd-testimonials {
    padding: 100px 0;
    background-color: #f7f8fb;
}

.cpd-testimonials .inner {
    max-width: 900px;
    text-align: center;
}

.cpd-testimonials h2 {
    font-size: 2.4rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.cpd-testimonials .section-intro {
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.cpd-testimonials .testimonial-track {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
    text-align: left;
}

.cpd-testimonials .testimonial-card {
    background: #ffffff;
    border: 1px solid #e2e5ef;
    border-radius: 18px;
    padding: 28px;
    min-height: 0;
    scroll-snap-align: none;
}

.cpd-testimonials .testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #1c2547;
    margin-bottom: 16px;
}

.cpd-testimonials .testimonial-card span {
    font-weight: 700;
    color: var(--secondary);
}

.cpd-cta {
  padding: 100px 0;
  background-color: var(--primary);
  color: white;
  text-align: center;
}

.cpd-cta .inner {
  max-width: 760px;
  padding: 0 20px;
}

.cpd-cta h2 {
  font-size: 2.5rem;
  margin: 0 0 14px;
}

.cpd-cta p {
  margin: 0 0 32px;
  font-size: 1.15rem;
  line-height: 1.5;
}

.cpd-cta a {
    background-color: white;
    color: var(--primary);
    padding: 15px 34px;
    border-radius: 999px;
    display: inline-block;
    text-decoration: none;
    font-size: 1.05rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
}

.cpd-cta a:hover {
    background-color: #f2f2f2;
}

/* CPD Modal */
.cpd-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cpd-modal[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.cpd-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 29, 66, 0.7);
    backdrop-filter: blur(5px);
}

.cpd-modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.cpd-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

#cpd-enquiry-form h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 24px;
}

#cpd-enquiry-form form {
    display: grid;
    gap: 20px;
}

#cpd-enquiry-form label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
    display: block;
}

#cpd-enquiry-form input[type="text"],
#cpd-enquiry-form input[type="email"],
#cpd-enquiry-form input[type="url"] {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 12px;
    font-size: 1rem;
}

#cpd-enquiry-form fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

#cpd-enquiry-form legend {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

#cpd-enquiry-form fieldset div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

#cpd-enquiry-form input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

#cpd-enquiry-form fieldset label {
    margin: 0;
    font-weight: normal;
}

#topic-other-specify {
  display: none;
  margin-top: 5px;
}

#topic-other:checked ~ #topic-other-specify {
  display: block;
}

#cpd-form-success h3 {
    color: var(--primary);
}

@media only screen and (max-width: 800px) {
    .cpd-hero .inner { padding: 80px 20px; }
    .cpd-hero h1 { font-size: 2.2rem; }
    .cpd-truth { padding: 60px 20px; }
    .cpd-truth .split { grid-template-columns: 1fr; }
    .cpd-accreditation { padding: 60px 20px; }
    .cpd-accreditation .logos { grid-template-columns: 1fr; }
    .cpd-delivery { padding: 60px 20px; }
    .cpd-delivery .delivery-models { grid-template-columns: 1fr; }
    .cpd-mid-cta { padding: 55px 20px; }
    .cpd-mid-cta h2 { font-size: 1.9rem; }
    .cpd-testimonials { padding: 60px 20px; }
    .cpd-cta { padding: 60px 20px; }
}
