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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #1f1f1f;
    background: #ffffff;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Header Navigation */
header {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f74427;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    z-index: 101;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #1f1f1f;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.desktop-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.mobile-nav {
    display: none;
}

nav a.nav-link,
nav > a {
    color: #1f1f1f;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a.nav-link:hover,
nav > a:hover {
    color: #f74427;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-radius: 4px;
    z-index: 1000;
    padding: 10px 0;
}

.nav-dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
}

.dropdown-content a {
    color: #1f1f1f;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #f74427;
}

.nav-cta {
    background: #f74427;
    color: white !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
}

.nav-cta:hover {
    background: #d63516;
    color: white !important;
}

/* Hero Section */
.hero {
    background: #1A1A0E;
    color: white;
    padding: 80px 20px 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-image {
    text-align: center;
    margin: 30px auto;
    max-width: 300px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(247, 68, 39, 0.3);
}

.hero-cta {
    margin-top: 50px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.hero .subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background: #f74427;
    color: white;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 68, 39, 0.4);
    margin-top: 20px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #d63516;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 68, 39, 0.5);
}

.free-badge {
    display: inline-block;
    background: #f4f4f4;
    color: #1f1f1f;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 20px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* The 2AM Decision Section */
.crisis-moment {
    padding: 80px 20px;
    background: #f4f4f4;
}

.crisis-moment h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 40px;
    color: #1f1f1f;
}

.crisis-story {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 6px solid #f74427;
}

.crisis-story p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1f1f1f;
    margin-bottom: 20px;
}

.crisis-story p.highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f74427;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-top: 30px;
}

/* The Conversations Section */
.conversations {
    padding: 80px 20px;
    background: white;
}

.conversations h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: #1f1f1f;
}

.conversations-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #1f1f1f;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.conversations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.conversation-card {
    background: #f4f4f4;
    padding: 40px;
    border-radius: 8px;
    border-left: 6px solid #f74427;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conversation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.conversation-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #f74427;
}

.conversation-card p {
    color: #1f1f1f;
    line-height: 1.7;
    font-size: 1rem;
}

/* Why This Works Section */
.why-works {
    padding: 80px 20px;
    background: #102B78;
    color: white;
}

.why-works h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 60px;
}

.why-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-item {
    display: flex;
    gap: 25px;
    align-items: start;
    background: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.why-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #f74427;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2rem;
}

.why-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: white;
}

.why-content p {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 20px;
    background: #f4f4f4;
}

.pricing h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: #1f1f1f;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #1f1f1f;
    margin-bottom: 50px;
}

.pricing-comparison {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.price-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.featured {
    border: 4px solid #f74427;
    position: relative;
}

.price-card.featured::before {
    content: 'BEST VALUE';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f74427;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1f1f1f;
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f74427;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.price-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.price-card li {
    padding: 12px 0;
    border-bottom: 1px solid #f4f4f4;
    color: #1f1f1f;
}

.price-card li:last-child {
    border-bottom: none;
}

/* About Drew Section */
.about-drew {
    padding: 80px 20px;
    background: white;
}

.about-drew h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 40px;
    color: #1f1f1f;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.credential-card {
    background: #f4f4f4;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.credential-card:nth-child(4) {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
}

.credential-card h3 {
    color: #f74427;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.credential-card p {
    color: #1f1f1f;
    line-height: 1.7;
}

.bio-box {
    background: #1A1A0E;
    color: white;
    padding: 50px;
    border-radius: 8px;
    line-height: 1.8;
    border-left: 6px solid #F74427;
}

.bio-box p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Final CTA */
.final-cta {
    padding: 100px 20px;
    background: #C91018;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Footer */
footer {
    background: #1f1f1f;
    color: #f4f4f4;
    padding: 60px 20px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #f74427;
    margin-bottom: 15px;
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
}

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

footer a {
    color: #f4f4f4;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #f74427;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(244,244,244,0.2);
    color: #f4f4f4;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #f74427;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    font-weight: 700;
}

.social-links a:hover {
    background: #d63516;
}

/* Page Content Styles (for About, Services, Testimonials pages) */
.page-content {
    padding: 0;
    min-height: 60vh;
    background: #ffffff;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 60px 60px;
}

.page-header {
    margin: 0 0 40px 0;
    padding: 0;
    background: none;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    color: #f74427;
    text-align: left;
    font-weight: 700;
}

.page-description {
    font-size: 1.15rem;
    color: #1f1f1f;
    max-width: 100%;
    margin: 0;
    text-align: left;
    line-height: 1.6;
}

.content-wrapper {
    margin: 0 0 60px 0;
    background: white;
    padding: 0;
    border: none;
    box-shadow: none;
}

.content-wrapper h2 {
    color: #f74427;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    font-weight: 700;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    color: #1f1f1f;
    font-size: 1.4rem;
    margin: 30px 0 15px;
    font-weight: 600;
    text-transform: none;
}

.content-wrapper h4 {
    color: #1f1f1f;
    font-size: 1.15rem;
    margin: 20px 0 10px;
    font-weight: 600;
    text-transform: none;
}

.content-wrapper p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #1f1f1f;
}

.content-wrapper strong {
    font-weight: 700;
    color: #1f1f1f;
}

.content-wrapper ul, .content-wrapper ol {
    margin: 16px 0 16px 30px;
    line-height: 1.7;
}

.content-wrapper li {
    margin-bottom: 8px;
    font-size: 1rem;
}

.content-wrapper a {
    color: #f74427;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.content-wrapper a:hover {
    color: #d63516;
    text-decoration: underline;
}

.content-wrapper blockquote {
    background: #f9f9f9;
    border-left: 4px solid #f74427;
    padding: 20px 25px;
    margin: 24px 0;
    font-style: italic;
    font-size: 1rem;
    color: #1f1f1f;
}

.content-wrapper hr {
    border: none;
    border-top: 2px solid #f4f4f4;
    margin: 40px 0;
}

.page-cta {
    margin: 60px 0 0 0;
    text-align: center;
    padding: 50px 0;
    background: #f4f4f4;
    border-top: 4px solid #f74427;
}

.page-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1f1f1f;
}

.page-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #1f1f1f;
}

/* Subpage Styles - Dynamic Design */
.subpage-wrapper {
    background: #FFFAFA;
    min-height: 100vh;
}

.subpage-hero-banner {
    position: relative;
    width: 100%;
    background: #1A1A0E;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 250px;
}

.subpage-hero-banner .overlay {
    flex: 1;
    display: flex;
    align-items: center;
}

.subpage-hero-banner .overlay h1 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.subpage-hero-banner .hero-image-container {
    flex: 0 0 400px;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subpage-hero-banner img {
    width: 100%;
    max-width: 400px;
    max-height: 300px;
    object-fit: contain;
    display: block;
}

.subpage-header-simple {
    background: #1A1A0E;
    padding: 60px 60px 40px;
    margin-bottom: 0;
}

.subpage-header-simple h1 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.subpage-intro {
    background: white;
    padding: 50px 60px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.subpage-intro .container {
    max-width: 1200px;
    margin: 0 auto;
}

.subpage-intro p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #1A1A0E;
    margin: 0;
    font-weight: 500;
}

.subpage-main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px 80px;
}

.content-section {
    margin-bottom: 80px;
}

.content-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #F74427;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f4f4f4;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-section h3 {
    font-size: 1.8rem;
    color: #1A1A0E;
    margin: 40px 0 20px;
    font-weight: 600;
}

.content-section h4 {
    font-size: 1.4rem;
    color: #102B78;
    margin: 30px 0 15px;
    font-weight: 600;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1A1A0E;
    margin-bottom: 20px;
}

.content-section ul,
.content-section ol {
    margin: 25px 0 25px 40px;
    line-height: 1.9;
}

.content-section li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #1A1A0E;
}

.content-section strong {
    font-weight: 700;
    color: #1A1A0E;
}

.content-section a {
    color: #F74427;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.content-section a:hover {
    border-bottom-color: #F74427;
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 8px;
    border-left: 6px solid #F74427;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-card h3 {
    color: #F74427;
    margin-top: 0;
    font-size: 1.6rem;
}

.feature-card p {
    margin-bottom: 0;
}

/* Highlight Boxes */
.highlight-box {
    background: #f8f9fa;
    border-left: 6px solid #F74427;
    padding: 35px 40px;
    margin: 40px 0;
    border-radius: 4px;
}

.highlight-box.blue {
    border-left-color: #102B78;
    background: #f0f4ff;
}

.highlight-box.dark {
    background: #1A1A0E;
    color: white;
    border-left-color: #F74427;
}

.highlight-box.dark h3,
.highlight-box.dark h4 {
    color: white;
}

.highlight-box.dark p {
    color: rgba(255,255,255,0.95);
}

/* Phase Sections */
.phase-section {
    background: white;
    padding: 40px;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 6px solid #F74427;
}

.phase-section h3 {
    margin-top: 0;
    color: #F74427;
    font-size: 2rem;
}

/* Image Styling */
.content-section img {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* CTA Sections */
.subpage-cta {
    background: #1A1A0E;
    color: white;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    margin: 60px 0 0;
}

.subpage-cta h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.subpage-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.subpage-cta .cta-button {
    display: inline-block;
    background: #F74427;
    color: white;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 68, 39, 0.4);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subpage-cta .cta-button:hover {
    background: #d63516;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 68, 39, 0.5);
}

/* Blockquotes */
.content-section blockquote {
    background: #f8f9fa;
    border-left: 6px solid #F74427;
    padding: 30px 40px;
    margin: 35px 0;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.8;
}

/* HR Styling */
.content-section hr {
    border: none;
    border-top: 3px solid #F74427;
    margin: 60px 0;
    opacity: 0.3;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .desktop-nav {
        display: none !important;
    }

    nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 100;
        overflow-y: auto;
    }

    nav.active {
        right: 0;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .mobile-nav-link {
        padding: 15px 0;
        border-bottom: 1px solid #f4f4f4;
        text-align: left;
        font-size: 1.1rem;
        color: #1f1f1f;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .mobile-nav-link:hover {
        color: #f74427;
    }

    .mobile-nav-child {
        padding-left: 20px;
        font-size: 1rem;
        font-weight: 400;
        color: #666;
    }

    .mobile-nav-child:hover {
        color: #f74427;
    }

    .mobile-nav-cta {
        background: #f74427;
        color: white !important;
        padding: 15px 20px;
        border-radius: 4px;
        margin-top: 10px;
        text-align: center;
        font-weight: 600;
    }

    .mobile-nav-cta:hover {
        background: #d63516;
    }

    .nav-dropdown {
        display: none;
    }

    .hero {
        padding: 60px 20px 80px;
    }

    .crisis-story {
        padding: 30px;
    }

    .conversations, .pricing, .about-drew {
        padding: 60px 20px;
    }

    .why-works, .final-cta {
        padding: 60px 20px;
    }

    .why-item {
        flex-direction: column;
        text-align: center;
    }

    .why-icon {
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .conversations-grid {
        grid-template-columns: 1fr;
    }

    .pricing-comparison {
        grid-template-columns: 1fr;
    }

    .page-container {
        padding: 60px 30px 40px;
    }

    .page-cta {
        padding: 40px 0;
    }

    /* Subpage Responsive */
    .subpage-hero-banner {
        flex-direction: column;
        padding: 40px 30px;
        gap: 30px;
        min-height: auto;
    }

    .subpage-hero-banner .overlay {
        text-align: center;
    }

    .subpage-hero-banner .overlay h1 {
        font-size: 2rem;
    }

    .subpage-hero-banner .hero-image-container {
        flex: 0 0 auto;
        max-width: 300px;
    }

    .subpage-hero-banner img {
        max-height: 200px;
    }

    .subpage-header-simple {
        padding: 40px 30px 30px;
    }

    .subpage-header-simple h1 {
        font-size: 2rem;
    }

    .subpage-intro {
        padding: 35px 30px;
    }

    .subpage-intro p {
        font-size: 1.1rem;
    }

    .subpage-main-content {
        padding: 0 30px 60px;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }

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

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .phase-section,
    .highlight-box,
    .subpage-cta {
        padding: 30px 25px;
    }
}

/* ============================================
   Blog Styles
   ============================================ */

/* Blog List Page */
.blog-list {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.blog-post-card {
    background: white;
    margin-bottom: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e5e5e5;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #d0d0d0;
}

.blog-post-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #f8f9fa;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-card .blog-post-content {
    padding: 40px;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.blog-post-meta time {
    font-weight: 500;
}

.blog-post-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.category-tag {
    background: #f4f4f4;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.category-tag:hover {
    background: #f74427;
    color: white;
}

.tag-badge {
    background: #102B78;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.tag-badge:hover {
    background: #0a1d4f;
}

.blog-post-tags {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-left: 10px;
}

.blog-post-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-post-title a {
    color: #1f1f1f;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-post-title a:hover {
    color: #f74427;
}

.blog-post-summary {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    color: #f74427;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.read-more:hover {
    color: #c91018;
}

/* Blog Single Post */
.blog-post-header {
    background: #1A1A0E;
    color: white;
    padding: 40px 60px 30px;
}

.blog-post-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: white;
    margin-top: 10px;
    line-height: 1.2;
}

.blog-post-header .blog-post-meta {
    color: rgba(255,255,255,0.8);
}

.blog-post-header .category-tag {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* Featured Image */
.blog-post-featured-image {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: #000;
}

.blog-post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

.blog-post-content {
    padding: 60px 0;
}

.blog-post-content .container {
    max-width: 800px;
}

.blog-post-content h2 {
    font-size: 2rem;
    color: #f74427;
    margin: 50px 0 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f4f4f4;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    color: #1f1f1f;
    margin: 40px 0 20px;
}

.blog-post-content h4 {
    font-size: 1.2rem;
    color: #1f1f1f;
    margin: 30px 0 15px;
}

.blog-post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #333;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.blog-post-content li {
    margin-bottom: 10px;
}

.blog-post-content blockquote {
    border-left: 4px solid #f74427;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

.blog-post-content a {
    color: #f74427;
    text-decoration: underline;
}

.blog-post-content a:hover {
    color: #c91018;
}

/* Blog Post CTA */
.blog-post-cta {
    background: linear-gradient(135deg, #1A1A0E 0%, #102B78 100%);
    padding: 60px 0;
}

.blog-post-cta .cta-box {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
}

.blog-post-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.05rem;
}

.cta-button.primary {
    background: #f74427;
    color: white;
}

.cta-button.primary:hover {
    background: #c91018;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247,68,39,0.4);
}

.cta-button.secondary {
    background: white;
    color: #1A1A0E;
}

.cta-button.secondary:hover {
    background: #f4f4f4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}

/* Blog Post Navigation */
.blog-post-nav {
    background: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.blog-post-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
}

.blog-nav-prev,
.blog-nav-next,
.blog-nav-all {
    text-decoration: none;
    color: #1f1f1f;
    transition: color 0.2s ease;
}

.blog-nav-prev,
.blog-nav-next {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.blog-nav-prev {
    text-align: left;
}

.blog-nav-next {
    text-align: right;
}

.blog-nav-all {
    padding: 12px 24px;
    background: white;
    border-radius: 6px;
    border: 2px solid #e0e0e0;
    font-weight: 600;
}

.blog-nav-all:hover {
    background: #f74427;
    color: white;
    border-color: #f74427;
}

.nav-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.nav-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1f1f1f;
}

.blog-nav-prev:hover .nav-title,
.blog-nav-next:hover .nav-title {
    color: #f74427;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .blog-post-header {
        padding: 30px 20px 20px;
    }

    .blog-post-header h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-top: 8px;
    }

    .blog-post-content {
        padding: 40px 0;
    }

    .blog-post-content .container {
        padding: 0 20px;
        max-width: 100%;
    }

    .blog-post-card {
        margin-bottom: 30px;
    }

    .blog-post-title {
        font-size: 1.4rem;
    }

    .blog-post-cta h3 {
        font-size: 1.6rem;
    }

    .blog-post-cta p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .blog-post-nav .container {
        flex-direction: column;
    }

    .blog-nav-prev,
    .blog-nav-next {
        width: 100%;
    }
}

/* ============================================
   Recent Posts Section (Homepage)
   ============================================ */

.recent-posts {
    background: #f8f9fa;
    padding: 80px 0;
}

.recent-posts h2 {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3rem);
    margin-bottom: 15px;
    color: #1f1f1f;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.recent-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.recent-post-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recent-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.recent-post-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
}

.recent-post-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.recent-post-card h3 a {
    color: #1f1f1f;
    text-decoration: none;
    transition: color 0.2s ease;
}

.recent-post-card h3 a:hover {
    color: #f74427;
}

.recent-post-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.read-more-link {
    color: #f74427;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.read-more-link:hover {
    color: #c91018;
}

.view-all-posts {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    color: #1f1f1f;
    text-decoration: none;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-posts:hover {
    background: #f74427;
    color: white;
    border-color: #f74427;
    transform: translateY(-2px);
}

.rss-subscribe-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.rss-subscribe-link:hover {
    background: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

@media (max-width: 768px) {
    .recent-posts {
        padding: 50px 30px;
    }

    .recent-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Blog list mobile styles */
    .blog-list {
        padding: 20px 15px;
    }

    .blog-post-card {
        margin-bottom: 30px;
    }

    .blog-post-card .blog-post-content {
        padding: 25px;
    }

    .blog-post-image {
        height: 250px;
    }

    .blog-post-title {
        font-size: 1.5rem;
    }

    .blog-post-header {
        padding: 40px 20px 30px;
    }
}
