/**
 * Theme Name: Steven Capuano
 * Version: 1.0.0
 * Theme URI: -
 * Author: -
 * Author URI: -
 * Description: Steven Capuano theme
 * License: GNU General Public License v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 * Tags: custom
 * Text Domain: stevencapuano.com
 */
/*
 1. Fonts
 2. Variables
 3. General Resets
 4. Bootstrap Resets
 3. Header
 4. Footer
 5. Home Page
*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: rgba(255, 0, 0, 0.68); }

  :root {
    --navy: #1a2535;
    --slate: #2e3f56;
    --gold: #b8965a;
    --gold-light: #d4b07a;
    --cream: #f7f4ef;
    --white: #ffffff;
    --text: #2a2a2a;
    --text-light: #6b7280;
    --border: #e5e0d8;
  }

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

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
	line-height: 27px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.02em;
    text-decoration: none;
  }

  .nav-logo span {
    color: var(--gold);
	display: block;
	font-size: 18px;
	line-height: 23px;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    margin-left: auto;
  }

  .nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover, .nav-links .current-menu-item a { color: var(--gold); }

  .nav-cta a {
    background: var(--navy);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 2px;
    font-size: 0.8rem !important;
    letter-spacing: 0.1em !important;
    transition: background 0.2s !important;
  }

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

  /* PAGE SYSTEM */
  .page { display: block;}
  .page.active { display: block; }

  /* ===== HOME PAGE ===== */
  .page-top {
    padding-top: 72px;
  }
  .hero {
    min-height: calc(100vh - 72px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 8% 80px 10%;
    background: var(--cream);
    position: relative;
  }

  .hero-content::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; right: -1px;
    width: 1px;
    background: var(--border);
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 28px;
  }

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

  .hero-desc {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 420px;
    margin-bottom: 44px;
    line-height: 1.8;
  }

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

  .btn-primary {
    background: var(--navy);
    color: var(--white);
    padding: 14px 32px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s;
    display: inline-block;
    cursor: pointer;
    border: none;
  }

  .btn-primary:hover { background: var(--gold); }

  .btn-outline {
    border: 1.5px solid var(--navy);
    color: var(--navy);
    padding: 14px 32px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.2s;
    display: inline-block;
    cursor: pointer;
    background: transparent;
  }

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

  .hero-image {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-image-bg {
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse at 30% 50%, rgba(184,150,90,0.15) 0%, transparent 60%),
      linear-gradient(135deg, #1a2535 0%, #0d1825 100%);
  }

  .hero-image-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
  }

  .spine-graphic {
    width: 120px;
    height: 280px;
    margin: 0 auto 32px;
    opacity: 0.6;
  }

  .hero-stat {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
  }

  .hero-stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 8px;
  }

  /* SERVICES SECTION */
  .section {
    padding: 100px 10%;
  }

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

  .section-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.2;
  }

  .section-subtitle {
    margin-top: 16px;
    color: var(--text-light);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
  }

  .service-card {
    background: var(--white);
    padding: 48px 36px;
    transition: background 0.2s;
  }

  .service-card:hover { background: var(--navy); }
  .service-card:hover .service-title { color: var(--white); }
  .service-card:hover .service-text { color: rgba(255,255,255,0.6); }
  .service-card:hover .service-icon { color: var(--gold); }

  .service-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 24px;
    display: block;
  }

  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    transition: color 0.2s;
  }

  .service-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    transition: color 0.2s;
  }

  /* APPROACH SECTION */
  .approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
  }

  .approach-content {}

  .approach-steps {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }

  .step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--border);
    line-height: 1;
    min-width: 48px;
  }

  .step-title {
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 6px;
    font-size: 0.95rem;
  }

  .step-text {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.8;
  }

  .approach-visual {
    background: var(--navy);
    padding: 56px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }

  .approach-visual::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(184,150,90,0.1);
  }

  .approach-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    position: relative;
    z-index: 1;
  }

  .approach-quote::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.4;
    position: absolute;
    top: -20px; left: -16px;
    font-style: normal;
    line-height: 1;
  }

  .approach-author {
    margin-top: 24px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    position: relative;
    z-index: 1;
  }

  /* CTA BANNER */
  .cta-banner {
    background: var(--navy);
    padding: 80px 10%;
    text-align: center;
  }

  .cta-banner .section-title { color: var(--white); }
  .cta-banner .section-subtitle { color: rgba(255,255,255,0.5); }
  .cta-banner .section-eyebrow { color: var(--gold); }

  .cta-banner .btn-primary {
    background: var(--gold);
    margin-top: 32px;
  }

  .cta-banner .btn-primary:hover { background: var(--gold-light); }

  /* ===== ABOUT PAGE ===== */
  .about-hero {
    background: var(--navy);
    padding: 100px 10% 80px;
    position: relative;
    overflow: hidden;
  }

  .about-hero::before {
    content: '';
    position: absolute;
    bottom: -80px; right: 10%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(184,150,90,0.07);
  }

  .about-hero-inner {
    max-width: 700px;
    position: relative;
    z-index: 1;
  }

  .about-hero .section-eyebrow { color: var(--gold); }

  .about-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
  }

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

  .about-hero-text {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 560px;
  }

  .about-body {
    padding: 100px 10%;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 80px;
    align-items: start;
  }

  .about-main h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 24px;
    line-height: 1.3;
  }

  .about-main p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 24px;
    font-size: 0.95rem;
  }

  .about-main p:last-child { margin-bottom: 0; }

  .about-sidebar {}

  .credential-card {
    background: var(--cream);
    padding: 32px;
    margin-bottom: 16px;
    border-left: 3px solid var(--gold);
  }

  .credential-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .credential-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
  }

  .credential-sub {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px;
  }

  .philosophy-section {
    background: var(--cream);
    padding: 80px 10%;
  }

  .philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 56px;
  }

  .philosophy-item {}

  .philosophy-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 16px;
  }

  .philosophy-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
  }

  .philosophy-text {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.8;
  }

  /* ===== NEWS PAGE ===== */
  .news-hero {
    background: var(--cream);
    padding: 80px 10% 64px;
    border-bottom: 1px solid var(--border);
  }

  .news-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 16px;
  }

  .news-hero-sub {
    color: var(--text-light);
    max-width: 500px;
    font-size: 0.95rem;
  }

  .news-body {
    padding: 80px 10%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .news-main {}

  .news-section-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }

  /* Press Release Cards */
  .press-card {
    border: 1px solid var(--border);
    margin-bottom: 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .press-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  }

  .press-card-header {
    padding: 28px 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
  }

  .press-tag {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--navy);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 2px;
    white-space: nowrap;
  }

  .press-date {
    font-size: 0.8rem;
    color: var(--text-light);
    white-space: nowrap;
  }

  .press-card-body {
    padding: 20px 32px 28px;
  }

  .press-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .press-excerpt {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .press-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .press-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1.5px solid var(--gold);
    padding-bottom: 2px;
    transition: color 0.2s;
    cursor: pointer;
  }

  .press-link:hover { color: var(--gold); }

  /* PDF Embed Section */
  .pdf-section {
    margin-top: 48px;
  }

  .pdf-card {
    border: 1px solid var(--border);
    margin-bottom: 16px;
    overflow: hidden;
  }

  .pdf-card-header {
    background: var(--navy);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
  }

  .pdf-card-header:hover { background: var(--slate); }

  .pdf-card-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .pdf-icon {
    width: 32px;
    height: 32px;
    background: var(--gold);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }

  .pdf-card-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;  
  }

  .pdf-card-meta {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;  	  
  }

  .pdf-toggle {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .pdf-embed-container {
    display: none;
    background: #f0ede8;
  }

  .pdf-embed-container.open { display: block; }

  .pdf-embed-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
  }

  .pdf-placeholder {
    padding: 60px 40px;
    text-align: center;
    background: #f8f6f2;
  }

  .pdf-placeholder-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.3;
  }

  .pdf-placeholder-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
  }

  .pdf-upload-note {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(184,150,90,0.1);
    padding: 8px 16px;
    display: inline-block;
    border-radius: 2px;
  }

  /* NEWS SIDEBAR */
  .news-sidebar {}

  .sidebar-widget {
    margin-bottom: 40px;
  }

  .sidebar-title {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
  }

  .media-outlet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .media-outlet {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-light);
    transition: border-color 0.2s;
  }

  .media-outlet:hover { border-color: var(--gold); }

  .outlet-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .topic-tag {
    font-size: 0.75rem;
    padding: 6px 14px;
    border: 1px solid var(--border);
    color: var(--text-light);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s;
  }

  .topic-tag:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }

  /* FOOTER */
  footer {
    background: var(--navy);
    padding: 60px 10%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .footer-brand .nav-logo {
    display: block;
    margin-bottom: 16px;
    color: var(--white) !important;
  }

  .footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
    max-width: 280px;
  }

  .footer-col-title {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4) !important;
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
  }

  .footer-links a:hover { color: var(--gold); }

  .footer-bottom {
    background: var(--navy);
    padding: 20px 10%;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .page.active .hero-content,
  .page.active .about-hero-inner,
  .page.active .news-hero {
    animation: fadeUp 0.5s ease forwards;
  }  
@media (max-width: 1200px) {
    header .navbar-collapse {
        background-color: #fff;
        text-align: center;
    }
    header .navbar-collapse .nav-links {
        gap: 20px;
    }
    header .hamburger {
        outline: none;
    }
    header .hamburger-inner,
    header .hamburger-inner::after,
    header .hamburger-inner::before {
        background-color: rgb(26, 37, 53);
    }

}
@media (max-width: 992px) {
    .page-top {
        padding-top: 25px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero .hero-content {
        padding: 20px;
    }
    .hero .hero-content .hero-title {
        font-size: 30px;
        line-height: 39px;
    }
    .hero .hero-content .hero-desc {
        max-width: none;
        margin-bottom: 30px;
    }
    .hero .hero-content .hero-buttons {
        justify-content: center;
    }
    .hero .hero-image .hero-image-content {
        padding: 20px;
    }
    .hero .hero-image .hero-stat {
        font-size: 30px;
        line-height: 39px;
    }
    .section {
        padding: 20px 15px;
    }
    .section-header {
        margin-bottom: 30px;
    }
    .section-alt {
        text-align: center;
    }
    .section-alt .approach-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .section-alt .approach-visual {
        padding: 30px;
    }
    .section-alt .approach-quote {
        font-size: 20px;
        line-height: 27px;
    }
    .section-alt .section-title {
        font-size: 25px;
        line-height: 32px;
    }
    .cta-banner {
        padding: 25px 15px;
    }
    .cta-banner .section-title {
        font-size: 20px;
        line-height: 27px;
    }
    .section-fancy-cols .service-card {
        padding: 20px 15px;
    }
    .about-hero {
        padding: 20px 15px;
        text-align: center;
    }
    .about-hero .about-hero-inner {
        max-width: none;
    }
    .about-hero .about-hero-text {
        max-width: none;
    }
    .about-hero .about-hero-title {
        font-size: 30px;
        line-height: 39px;
        margin: 0 0 20px;
    }
    .about-body {
        padding: 20px 15px;
    }
    .philosophy-section {
        padding: 20px 15px;
    }
    .news-hero {
        padding: 20px 15px;
        text-align: center;
    }
    .news-hero .news-hero-title {
        font-size: 30px;
        line-height: 39px;
    }
    .news-hero .news-hero-sub {
        max-width: none;
    }
    .news-body {
        padding: 20px 15px;
        grid-template-columns: 1fr;
    }
    .press-card {
        margin: 0 0 20px;
    }
    .press-card .press-card-header {
        padding: 20px 20px 0;
    }
    .press-card .press-card-body {
        padding: 20px;
    }
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    footer {
        padding: 30px 15px 0 15px;
        grid-template-columns: 1fr;
        text-align: center;
        justify-content: center;
        gap: 20px;
    }
    footer .footer-brand p {
        max-width: none;
    }
    footer .footer-bottom {
        padding: 20px 15px;
    }
    footer .footer-bottom p:last-child {
        margin: 0;
    }
}
@media (max-width: 767px) {
	.navbar {
		padding: .5rem;
	}
    .about-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-main h2 {
        font-size: 25px;
        line-height: 34px;
        margin: 0 0 25px !important;
    }
    .about-main p {
        margin: 0 0 15px;
    }
    .about-sidebar .credential-card {
        padding: 20px;
    }
    .three-columns .section-title {
        font-size: 25px;
        line-height: 34px;
    }
    .three-columns .philosophy-grid {
        margin-top: 30px;
        grid-template-columns: repeat(1, 1fr);
    }
    .pdf-placeholder {
        padding: 20px 15px;
    }
}