/* ========================================
   Global Styles & Variables
   ======================================== */
:root {
    --primary-color: #C9A572;
    --primary-dark: #B08F5F;
    --primary-light: #E4D4BA;
    --secondary-color: #3A4A5C;
    --secondary-dark: #2C3845;
    --secondary-light: #4F6073;
    --text-dark: #2C3845;
    --text-light: #5A6C7D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E5EA;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--secondary-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(58, 74, 92, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(58, 74, 92, 1);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--bg-white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.btn-contact {
    background-color: var(--primary-color);
    padding: 0.6rem 1.5rem !important;
    border-radius: 5px;
}

.btn-contact:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white) !important;
}

.btn-contact::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--bg-white);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 50%, var(--secondary-light) 100%);
    padding-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(201,165,114,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Page Hero
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 70px;
}

.page-hero h1 {
    color: var(--bg-white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--secondary-color);
}

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

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

/* ========================================
   Welcome Section
   ======================================== */
.welcome-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

/* ========================================
   Features Section
   ======================================== */
.features-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--bg-white);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* ========================================
   Mission Section
   ======================================== */
.mission-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    margin-bottom: 1.5rem;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 6rem;
    color: var(--bg-white);
    opacity: 0.5;
}

/* ========================================
   Story Section
   ======================================== */
.story-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.brand-story .lead-text {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.brand-meaning {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    padding: 3rem;
    background-color: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.meaning-item {
    text-align: center;
}

.meaning-item h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.meaning-item strong {
    color: var(--primary-color);
}

.meaning-item p {
    color: var(--text-light);
    font-size: 1rem;
    font-style: italic;
}

.philosophy-statement {
    text-align: center;
    font-size: 1.3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 15px;
    margin: 3rem 0;
    line-height: 1.8;
}

.philosophy-statement strong {
    display: block;
    margin-top: 1rem;
    font-size: 1.4rem;
    color: var(--secondary-dark);
}

.what-we-help {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.what-we-help h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.what-we-help ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.what-we-help li {
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.what-we-help li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.core-beliefs {
    background-color: var(--secondary-dark);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    color: var(--bg-white);
}

.core-beliefs h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.2rem;
}

.core-beliefs blockquote {
    border-left: none;
    padding: 0;
    margin: 0;
}

.core-beliefs p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--bg-white);
    margin: 1rem 0;
    font-style: italic;
}

.legacy-statement {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
}

.legacy-statement p {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0.75rem 0;
    font-family: 'Lora', serif;
}

/* ========================================
   Values Section
   ======================================== */
.values-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.value-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--bg-white);
}

.value-card h3 {
    margin-bottom: 1rem;
}

/* ========================================
   Approach/Timeline Section
   ======================================== */
.approach-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.approach-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
}

.timeline-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bg-white);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.timeline-content {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    flex-grow: 1;
}

.timeline-content h3 {
    margin-bottom: 0.75rem;
}

/* ========================================
   Team Section
   ======================================== */
.team-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

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

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-white);
    font-family: 'Lora', serif;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: var(--bg-white);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ========================================
   Services Overview
   ======================================== */
.services-overview {
    padding: 80px 0;
    background-color: var(--bg-white);
}

/* ========================================
   Services Detail Section
   ======================================== */
.services-detail {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.service-item {
    background-color: var(--bg-white);
    padding: 4rem;
    margin-bottom: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.service-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 3rem;
    color: var(--bg-white);
}

.service-text h2 {
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.service-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.service-outcomes {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-outcomes h4 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

/* ========================================
   Process Section
   ======================================== */
.process-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bg-white);
}

.process-step h3 {
    margin-bottom: 1rem;
}

/* ========================================
   Industries Section
   ======================================== */
.industries-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.industry-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.industry-card:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.industry-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.industry-card h4 {
    color: var(--secondary-color);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-item p {
    color: var(--text-light);
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

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

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

.contact-form .btn {
    width: 100%;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--secondary-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255,255,255,0.8);
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact p {
    margin-bottom: 0.75rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-contact i {
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
}

/* ========================================
   Ebook Landing Page
   ======================================== */
.ebook-hero {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    padding: 150px 0 100px;
    margin-top: 70px;
}

.ebook-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.ebook-left {
    color: var(--bg-white);
}

.badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.ebook-hero h1 {
    font-size: 3.5rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ebook-subtitle {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.ebook-benefits {
    background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.ebook-benefits h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.ebook-benefits ul {
    list-style: none;
}

.ebook-benefits li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--bg-white);
    font-size: 1.05rem;
}

.ebook-benefits i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.author-credit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.author-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-credit strong {
    display: block;
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-credit p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin: 0;
}

.ebook-form-card {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.form-header p {
    color: var(--text-light);
}

.ebook-form .btn-block {
    width: 100%;
}

.privacy-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Ebook Features Section */
.ebook-features {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.feature-box {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--bg-white);
}

.feature-box h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Ebook Proof Section */
.ebook-proof {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    text-align: center;
}

.proof-content h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.proof-content .lead-text {
    color: rgba(255,255,255,0.95);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.proof-stat {
    background-color: rgba(255,255,255,0.15);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.proof-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-white);
    font-family: 'Lora', serif;
    margin-bottom: 0.5rem;
}

.proof-stat .stat-label {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

/* Ebook Final CTA */
.ebook-final-cta {
    padding: 100px 0;
    background-color: var(--secondary-dark);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 3rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
}

/* Responsive for Ebook Page */
@media (max-width: 768px) {
    .ebook-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ebook-hero h1 {
        font-size: 2.5rem;
    }
    
    .ebook-subtitle {
        font-size: 1.2rem;
    }
    
    .ebook-form-card {
        position: relative;
        top: 0;
        padding: 2rem;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
}

/* ========================================
   Founder Section
   ======================================== */
.founder-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.founder-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.founder-bio h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.founder-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.founder-mission {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
    font-size: 1.2rem;
}

.founder-mission strong {
    color: var(--secondary-dark);
    font-family: 'Lora', serif;
}

.founder-credentials {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.founder-credentials h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.founder-credentials ul {
    list-style: none;
}

.founder-credentials li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
}

.founder-credentials i {
    color: var(--primary-color);
}

.founder-specialties h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    background-color: var(--primary-light);
    color: var(--secondary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.tag:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* ========================================
   Service Pillars
   ======================================== */
.service-pillars {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.pillar-card {
    background-color: var(--bg-white);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.pillar-header {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--primary-color);
}

.pillar-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pillar-icon i {
    font-size: 3rem;
    color: var(--bg-white);
}

.pillar-header h2 {
    margin: 0;
}

.pillar-description {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.pillar-features {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.pillar-features h4 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.pillar-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.pillar-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.pillar-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.pillar-ideal {
    background-color: #FFF9F0;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.pillar-ideal h4 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pillar-ideal i {
    color: var(--primary-color);
}

/* ========================================
   Signature Offerings
   ======================================== */
.signature-offerings {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.offering-card {
    background-color: var(--bg-light);
    border-radius: 15px;
    padding: 2.5rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.offering-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.offering-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
}

.offering-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.offering-duration {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.offering-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    flex-grow: 1;
}

.offering-includes {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.offering-includes h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.offering-includes ul {
    list-style: none;
}

.offering-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.offering-includes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.offering-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Lora', serif;
}

.offering-card .btn {
    width: 100%;
    text-align: center;
}

.custom-offering {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
    border-radius: 15px;
    padding: 4rem;
    text-align: center;
    margin-top: 2rem;
}

.custom-content h3 {
    color: var(--bg-white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.custom-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* ========================================
   Engagement Process
   ======================================== */
.engagement-process {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step-detailed {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-step-detailed:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.step-number-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Lora', serif;
    flex-shrink: 0;
    width: 100px;
    text-align: center;
}

.step-content-large h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.step-content-large > p {
    margin-bottom: 1rem;
}

.step-content-large > p strong {
    color: var(--primary-color);
}

.step-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.action-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--bg-light);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.action-item i {
    color: var(--primary-color);
}

/* ========================================
   Contact Page Specific Styles
   ======================================== */
.contact-intro {
    padding: 80px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-main {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form-section h3 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-white);
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label span {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.95rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.contact-card h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

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

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.contact-info-item strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    margin: 0;
    color: var(--text-light);
}

.contact-info-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links-large a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.social-links-large a:hover {
    background-color: var(--primary-light);
    transform: translateX(5px);
}

.social-links-large i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
}

.highlight-card {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border: none;
}

.highlight-card h4,
.highlight-card p {
    color: var(--secondary-dark);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.text-link {
    color: var(--secondary-dark);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.text-link:hover {
    gap: 1rem;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.faq-item h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-item i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.faq-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   Availability Section
   ======================================== */
.availability-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.availability-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-sm);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Thank You Page
   ======================================== */
.thankyou-hero {
    padding: 150px 0 100px;
    margin-top: 70px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

.success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: scaleIn 0.5s ease;
}

.success-icon i {
    font-size: 4rem;
    color: var(--bg-white);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.thankyou-hero h1 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.thankyou-box {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin: 3rem 0;
    border-left: 5px solid var(--primary-color);
}

.thankyou-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.thankyou-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.small-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.small-note a {
    color: var(--primary-color);
    text-decoration: none;
}

.small-note a:hover {
    text-decoration: underline;
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.step-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--bg-white);
}

.step-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.step-card p {
    margin-bottom: 1.5rem;
}

.step-card .btn {
    margin-top: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.explore-services {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-color));
    padding: 3rem;
    border-radius: 15px;
    color: var(--bg-white);
    margin-top: 4rem;
}

.explore-services h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.explore-services p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .thankyou-hero h1 {
        font-size: 2.5rem;
    }
    
    .thankyou-box {
        padding: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--secondary-dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .mission-content,
    .contact-content,
    .founder-content {
        grid-template-columns: 1fr;
    }
    
    .founder-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .service-content {
        flex-direction: column;
    }
    
    .service-item {
        padding: 2rem;
    }
    
    .approach-timeline::before {
        left: 15px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-contact {
        order: 2;
    }
    
    .footer-social {
        order: 3;
    }
    
    .features-grid,
    .values-grid,
    .process-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .pillar-header {
        flex-direction: column;
        text-align: center;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step-detailed {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number-large {
        width: 100%;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-meaning {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem;
    }
    
    .what-we-help {
        padding: 2rem;
    }
    
    .core-beliefs {
        padding: 2rem;
    }
    
    .philosophy-statement {
        font-size: 1.1rem;
        padding: 2rem;
    }
    
    .philosophy-statement strong {
        font-size: 1.2rem;
    }
    
    .legacy-statement p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}
