/*
Theme Name: CraftDigitally
Theme URI: https://craftdigitally.com
Author: CraftDigitally Team
Author URI: https://craftdigitally.com
Description: A modern, professional WordPress theme for digital marketing agency
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: craftdigitally
Tags: business, portfolio, one-column, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root {
	--body-large-regular-font-family: "Mona Sans", Helvetica, sans-serif;
	--body-large-regular-font-size: 18px;
	--body-large-regular-font-weight: 400;
	--body-large-regular-line-height: 28px;
	--body-lg-semi-bold-font-family: "Mona Sans", Helvetica, sans-serif;
	--body-lg-semi-bold-font-size: 16px;
	--body-lg-semi-bold-font-weight: 600;
	--body-sm-regular-font-family: "Mona Sans", Helvetica, sans-serif;
	--body-sm-regular-font-size: 14px;
	--body-sm-regular-font-weight: 400;
	--heading-1-font-family: "Newsreader", Georgia, serif;
	--heading-1-font-size: 56px;
	--heading-1-font-weight: 400;
	--heading-1-line-height: 60px;
	--heading-2-font-family: "Newsreader", Georgia, serif;
	--heading-2-font-size: 40px;
	--heading-2-font-weight: 500;
	--heading-2-line-height: 48px;
	--heading-3-font-family: "Mona Sans", Helvetica, sans-serif;
	--heading-3-font-size: 24px;
	--heading-3-font-weight: 600;
	--heading-3-line-height: 32px;
	--primary-color: #4a2c7d;
	--text-color: #363636;
	--bg-light: #f2efed;
	--bg-white: #ffffff;
	--border-color: #36363633;
  }
  
  * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  body {
	font-family: var(--body-large-regular-font-family);
	font-size: var(--body-large-regular-font-size);
	font-weight: var(--body-large-regular-font-weight);
	line-height: var(--body-large-regular-line-height);
	color: var(--text-color);
	background-color: var(--bg-light);
  }

  body.mobile-menu-open {
	overflow: hidden;
  }
  
  .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 64px;
  }
  
  h1 {
	font-family: var(--heading-1-font-family);
	font-size: var(--heading-1-font-size);
	font-weight: var(--heading-1-font-weight);
	line-height: var(--heading-1-line-height);
  }
  
  h2 {
	font-family: var(--heading-2-font-family);
	font-size: var(--heading-2-font-size);
	font-weight: var(--heading-2-font-weight);
	line-height: var(--heading-2-line-height);
  }
  
  h3 {
	font-family: var(--heading-3-font-family);
	font-size: var(--heading-3-font-size);
	font-weight: var(--heading-3-font-weight);
	line-height: var(--heading-3-line-height);
  }
  
  a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
  }
  
  img {
	max-width: 100%;
	height: auto;
  }
  
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 20px;
	border-radius: 2px;
	font-family: "Newsreader", Georgia, serif;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid transparent;
  }
  
  .btn-primary {
	background-color: var(--primary-color);
	color: #e8e5e0;
	border-color: var(--primary-color);
  }
  
  .btn-primary:hover {
	background-color: #3a1c6d;
  }
  
  .btn-outline {
	background-color: transparent;
	color: var(--text-color);
	border: 1px solid var(--text-color);
  }
  
  .btn-outline:hover {
	background-color: var(--text-color);
	color: #ffffff;
  }

  .why-choose-section {
	position: relative;
	padding: 128px 64px;
	background: url("./assets/images/bgimage.png") center/cover no-repeat;
	overflow: hidden;
	height: 770px;
  }

  .why-choose-section::before,
  .why-choose-section::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 35%;
	pointer-events: none;
  }

  .why-choose-section::before {
	top: 0;
	background: linear-gradient(180deg, #f2efed 0%, rgba(242, 239, 237, 0) 100%);
  }

  .why-choose-section::after {
	bottom: 0;
	background: linear-gradient(0deg, #f2efed 0%, rgba(242, 239, 237, 0) 100%);
  }

  .why-choose-inner {
	display: flex;
	align-items: center;
	gap: 64px;
	max-width: 1312px;
	margin: 0 auto;
	height: 412px;
  }

  .why-choose-visual {
	flex: 0 0 596px;
	max-width: 596px;
	height: 514px;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 24px 32px 8px rgba(0, 0, 0, 0.15);
	z-index: 999;
  }

  .why-choose-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
  }

  .why-choose-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 32px;
	color: #373737;
	z-index: 999;
  }

  .why-choose-content h2 {
	font-family: "Newsreader", Georgia, serif;
	font-size: 40px;
	font-weight: 500;
	line-height: 48px;
	margin: 0;
	color: #373737;
  }

  .why-choose-content p {
	font-family: "Mona Sans", Helvetica, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	text-align: justify;
	margin: 0;
	color: #373737;
  }

  .why-choose-content ul {
	list-style: disc;
	margin: 0;
	padding-left: 20px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	font-family: "Mona Sans", Helvetica, sans-serif;
	font-size: 18px;
	line-height: 28px;
  }

  .why-choose-button {
	align-self: flex-start;
	border: 1px solid #000000;
	backdrop-filter: blur(27.9px);
	padding: 16px 20px;
	height: 48px;
	min-width: 118px;
  }

  @media (max-width: 1024px) {
	.why-choose-inner {
	  flex-direction: column;
	  padding: 32px;
	}

	.why-choose-visual,
	.why-choose-visual img {
	  height: auto;
	}
  }
  
  @keyframes fadeIn {
	from {
	  opacity: 0;
	  transform: translateY(-10px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
  .fade-in {
	animation: fadeIn 1s ease forwards;
  }
  
  /* Header Styles */
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    height: 72px;
    padding: 0;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
  }

  .site-header.scrolled {
    background-color: #F2EFED;
  }

  .header-container {
    max-width: 80%;
    width: 100%;
    padding: 0 100px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1312px;
    max-width: 100%;
    height: 100%;
  }

  .site-logo {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .site-logo a {
    display: flex;
    align-items: center;
    gap: 0;
  }

  .logo-craft {
    font-family: 'Publico Headline', Georgia, serif;
    font-weight: bold;
    font-style: italic;
    font-size: 24px;
    letter-spacing: -0.96px;
  }

  .logo-digitally {
    font-family: 'Public Sans', Helvetica, sans-serif;
    font-size: 24px;
    letter-spacing: -1.2px;
  }

  .main-navigation {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-left: auto;
    height: 100%;
  }

  .nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
    margin: 0;
  }

  .nav-menu li {
	  font-size: 14px;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
	}

  .nav-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    color: #363636;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  .nav-menu li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    bottom: -4px;
    background: #4A2C7D;
    flex: none;
    order: 1;
    flex-grow: 0;
    z-index: 1;
    display: none;
  }

  .nav-menu li a:hover::after,
  .nav-menu li.current-menu-item a::after,
  .nav-menu li.current_page_item a::after,
  .nav-menu li.current-menu-ancestor a::after,
  .nav-menu li a.active::after {
    display: block;
  }

  /* Home page active state - when body has home class and first menu item is Home */
  body.home .nav-menu li:first-child a::after,
  body.home .nav-menu li.current-menu-item:first-child a::after {
    display: block;
  }


  .header-cta {
    padding: 12px 20px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
  }

  .menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	/* border: 1px solid rgba(54, 54, 54, 0.2); */
	border: none;
	border-radius: 999px;
	background-color: transparent;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease;
	margin-left: 16px;
	flex-direction: column;
	align-self: center;
  }

  .menu-toggle .menu-bar {
	display: block;
	width: 20px;
	height: 2px;
	background-color: #363636;
	margin: 3px 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .menu-toggle.open .menu-bar:nth-child(1) {
	transform: translateY(5px) rotate(45deg);
  }

  .menu-toggle.open .menu-bar:nth-child(2) {
	opacity: 0;
  }

  .menu-toggle.open .menu-bar:nth-child(3) {
	transform: translateY(-5px) rotate(-45deg);
  }

  /* Footer Styles */
  .site-footer {
    background-color: var(--bg-light);
    padding: 128px 64px 24px;
  }

  .footer-main {
    display: flex;
    flex-direction: column;
    gap: 128px;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .footer-logo-section {
    max-width: 529px;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 16px;
  }

  .footer-logo-craft {
    font-family: 'Publico Headline', Georgia, serif;
    font-weight: bold;
    font-style: italic;
    font-size: 24px;
    letter-spacing: -0.96px;
  }

  .footer-logo-digitally {
    font-family: 'Public Sans', Helvetica, sans-serif;
    font-size: 24px;
    letter-spacing: -1.2px;
  }

  .footer-description {
    max-width: 432px;
    font-size: 18px;
    line-height: 28px;
  }

  .footer-nav-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .footer-nav-left {
    display: flex;
    gap: 64px;
  }

  .footer-nav-links {
    display: flex;
    gap: 64px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-nav-links li {
    margin: 0;
  }

  .footer-nav-links a,
  .footer-nav-main-link {
    font-size: 16px;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
  }

  .footer-nav-links a:hover,
  .footer-nav-main-link:hover {
    opacity: 0.8;
  }

  .footer-nav-right {
    display: flex;
    gap: 64px;
  }

  .footer-social-links {
    display: flex;
    gap: 64px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-social-links li {
    margin: 0;
  }

  .footer-social-links a,
  .footer-nav-social-link {
    font-size: 16px;
    color: inherit;
    text-decoration: none;
  }

  .footer-social-links a:hover,
  .footer-nav-social-link:hover {
    opacity: 0.8;
  }

  .footer-copyright {
    text-align: center;
  }

  .footer-copyright-text {
    font-size: 14px;
    line-height: 20px;
  }

  /* Index Page Styles */
  .hero-section {
    background-color: #F2EFED;
    background-image: linear-gradient(180deg, rgba(242,239,237,0) 55%, rgba(242,239,237,1) 100%), url('./assets/images/hero.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* margin-top: -80px; */
    padding-top: 120px;
  }

  .hero-container {
    text-align: center;
  }

  .hero-title {
    margin-bottom: 24px;
    font-size: 56px;
    line-height: 60px;
  }

  .hero-title br {
    display: block;
  }

  .hero-subtitle {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 28px;
  }

  .case-study-section {
    background-color: var(--bg-light);
    padding: 128px 0;
  }

  .case-study-header {
    text-align: center;
    margin-bottom: 64px;
    gap: 8px;
  }

  .case-study-title {
    max-width: 700px;
    margin: 0 auto 8px;
    font-size: 40px;
    font-weight: 500;
  }

  .case-study-subtitle {
    max-width: 1026px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 28px;
  }

  .case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, 420px);
    gap: 24px;
    justify-content: center;
  }

  .case-study-card {
    border: 1px solid var(--border-color);
    border-radius: 2px;
    padding: 24px;
    background-color: transparent;
    width: 420px;
    min-height: 480px;
  }

  .case-study-image-wrapper {
    width: 100%;
    height: 194px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    margin-bottom: 24px;
    background-image: url('./assets/images/bg-pattern.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .case-study-logo {
    max-width: 120px;
    height: auto;
  }

  .case-study-meta {
    margin-bottom: 8px;
  }

  .case-study-category {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.56px;
  }

  .case-study-divider {
    margin-top: 8px;
    border: none;
    border-top: 1px solid rgba(54, 54, 54, 0.2);
  }

  .case-study-description {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 24px;
  }

  .case-study-cta {
    width: 100%;
    text-align: center;
    display: block;
    padding: 12px;
  }

  .case-study-view-all {
    text-align: center;
    margin-top: 64px;
  }

  .case-study-view-all-btn {
    display: inline-block;
    padding: 12px 24px;
  }

  .testimonials-process-section {
    background-color: #F2EFED;
    background-image: linear-gradient(to bottom, rgba(242, 239, 237, 1) 0%, rgba(242, 239, 237, 0) 15%, rgba(242, 239, 237, 0) 85%, rgba(242, 239, 237, 1) 100%), url('./assets/images/gradientbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 128px 64px;
  }

  .testimonials-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
  }

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

  .testimonials-title {
    margin-bottom: 16px;
  }

  .testimonials-subtitle {
    text-align: center;
    font-size: 16px;
    line-height: 28px;
  }

  .testimonials-description {
    text-align: center;
    font-size: 16px;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 24px;
    margin-bottom: 128px;
  }

  .testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px;
    gap: 48px;
    background: rgba(242, 239, 237, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 2px;
    border: 1px solid rgba(55, 55, 55, 0.20);
    max-width: 643px;
    width: 100%;
  }

  .testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    width: 100%;
    min-height: 172px;
  }

  .testimonial-title {
    width: 100%;
    font-family: 'Mona Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #373737;
    margin: 0;
    flex: none;
    align-self: stretch;
  }

  .testimonial-quote {
    width: 100%;
    font-family: 'Mona Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    text-align: justify;
    color: #373737;
    margin: 0;
    flex: none;
    align-self: stretch;
  }

  .testimonial-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 16px;
    width: 100%;
    max-width: 411px;
    height: 64px;
  }

  .testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: contain;
    border: 1px solid #D8D7DA;
    flex: none;
  }

  .testimonial-author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    width: 100%;
    max-width: 331px;
    min-height: 52px;
  }

  .testimonial-name {
    width: 100%;
    font-family: 'Mona Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    margin: 0;
    flex: none;
    align-self: stretch;
  }

  .testimonial-role {
    width: 100%;
    font-family: 'Mona Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: justify;
    color: #000000;
    opacity: 0.8;
    margin: 0;
    flex: none;
    align-self: stretch;
  }

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

  .process-title {
    margin-bottom: 16px;
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
  }

  .process-subtitle {
    max-width: 1026px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
  }

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

  .process-step {
    display: flex;
    gap: 118px;
    margin-bottom: 48px;
    align-items: flex-start;
  }

  .process-number {
    font-family: "Newsreader", Helvetica, serif;
    font-weight: 400 !important;
    font-style: italic;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0;
    color: #373737;
    flex: none;
  }

  .process-content {
    flex: 1;
  }

  .process-step-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .process-step-description {
    font-size: 18px;
    line-height: 28px;
    color: #363636;
  }

  .services-section {
    background-color: var(--bg-light);
    padding: 128px 0;
  }

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

  .services-title {
    margin-bottom: 8px;
  }

  .services-subtitle {
    max-width: 778px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 28px;
  }

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

  .service-card {
    border: 1px solid var(--border-color);
    border-radius: 2px;
    padding: 24px;
    background-color: transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-icon-wrapper {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
  }

  .service-title {
    margin-bottom: 16px;
  }

  .service-divider {
    margin-bottom: 24px;
    border: none;
    border-top: 1px solid var(--border-color);
  }

  .service-description {
    font-size: 18px;
    line-height: 28px;
  }

  .cta-section {
    background-color: var(--bg-light);
    padding: 128px 0;
    width: 100%;
  }

  .cta-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
  }

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

  .cta-title {
    margin-bottom: 16px;
    font-family: var(--heading-2-font-family);
    font-weight: var(--heading-2-font-weight);
    color: #363636;
    font-size: var(--heading-2-font-size);
    line-height: var(--heading-2-line-height);
  }

  .cta-subtitle {
    max-width: 927px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 28px;
    color: #363636;
  }

  .cta-form-wrapper {
    max-width: 786px;
    margin: 0 auto;
  }

  .cta-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .cta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .cta-input, .cta-textarea {
    padding: 16px 24px;
    background-color: #f3f3f3;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-size: 14px;
    font-family: var(--body-sm-regular-font-family);
    color: #363636;
    width: 100%;
    transition: border-color 0.3s ease;
  }

  .cta-input:focus,
  .cta-textarea:focus {
    outline: none;
    border-color: #363636;
  }

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

  .cta-submit {
    width: 100%;
    padding: 16px;
    border: 1px solid #363636;
    background-color: transparent;
    color: #363636;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--button-sm-medium-font-family);
    font-weight: var(--button-sm-medium-font-weight);
    font-size: var(--button-sm-medium-font-size);
  }

  .cta-submit:hover {
    background-color: #363636;
    color: #ffffff;
  }

@media (max-width: 1200px) {
	.header-container {
	  max-width: 100%;
	  padding: 0 48px;
	}

	.main-navigation {
	  gap: 24px;
	}

	.why-choose-section,
	.testimonials-process-section,
	.services-section,
	.case-study-section,
	.cta-section,
	.site-footer {
	  padding-left: 32px;
	  padding-right: 32px;
	}

	.case-study-grid {
	  grid-template-columns: repeat(2, minmax(280px, 1fr));
	}

	.case-study-card {
	  width: 100%;
	}

	.services-grid {
	  grid-template-columns: repeat(2, minmax(280px, 1fr));
	}

	.testimonials-process-section {
	  height: auto;
	}

	.why-choose-section {
	  height: auto;
	}
}

@media (max-width: 900px) {
	.site-header {
	  position: fixed !important;
	  top: 0 !important;
	  height: 72px;
	  padding: 0;
	  background-color: rgba(242, 239, 237, 0.95);
	  backdrop-filter: blur(12px);
	  border-bottom: 1px solid rgba(54, 54, 54, 0.1);
	}

	.header-container {
	  padding: 0 24px;
	  height: 100%;
	  display: flex;
	  align-items: center;
	}

	.header-main {
	  width: 100%;
	  align-items: center;
	  gap: 16px;
	  height: 100%;
	}

	.main-navigation {
	  position: fixed;
	  top: 0;
	  right: 0;
	  width: 80%;
	  max-width: 320px;
	  height: 100vh;
	  background-color: #f2efed;
	  padding: 120px 32px 32px;
	  flex-direction: column;
	  align-items: flex-start;
	  gap: 24px;
	  transform: translateX(100%);
	  transition: transform 0.3s ease;
	  box-shadow: -16px 0 32px rgba(0, 0, 0, 0.15);
	  z-index: 1200;
	}

	.main-navigation.active {
	  transform: translateX(0);
	}

	.menu-toggle {
	  display: inline-flex;
	  margin-left: auto;
	  z-index: 1300;
	}

	.nav-menu {
	  width: 100%;
	  flex-direction: column;
	  gap: 16px;
	}

	.nav-menu li {
	  width: 100%;
	}

	.nav-menu a {
	  display: block;
	  width: 100%;
	}

	.header-cta {
	  width: 100%;
	  text-align: center;
	}

	.hero-section {
	  padding: 140px 20px 96px;
	  margin-top: 0;
	  background-size: cover;
	  background-position: center center;
	  background-repeat: no-repeat;
	  background-attachment: scroll;
	  min-height: 100vh;
	}

	.case-study-grid,
	.services-grid {
	  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	}

	.testimonials-process-section {
	  padding: 96px 24px;
	}

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

	.testimonial-card {
	  height: auto;
	  gap: 32px;
	}

	.process-steps {
	  padding: 0 8px;
	}

	.process-step {
	  flex-direction: column;
	  gap: 16px;
	}

	.process-number {
	  font-size: 36px;
	}

	.why-choose-inner {
	  gap: 32px;
	  height: auto;
	}

	.why-choose-visual {
	  width: 100%;
	  max-width: none;
	  height: auto;
	}

	.why-choose-section {
	  padding: 96px 24px;
	}

	.cta-section {
	  padding: 64px 0;
	}

	.cta-section .container {
	  padding: 0 32px;
	}

	.cta-form-row {
	  grid-template-columns: 1fr;
	  gap: 16px;
	}

	.cta-header {
	  margin-bottom: 32px;
	}

	.cta-form {
	  gap: 16px;
	}

	.footer-nav-wrapper {
	  flex-direction: column;
	  gap: 24px;
	}

	.footer-nav-left,
	.footer-nav-right {
	  flex-wrap: wrap;
	  gap: 16px;
	}

	.site-footer {
	  padding: 96px 24px 24px;
	}
}

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

	h1 {
	  font-size: 36px;
	  line-height: 42px;
	}

	h2 {
	  font-size: 28px;
	  line-height: 36px;
	}

	.hero-title {
	  font-size: 48px;
	  line-height: 56px;
	}

	.hero-title br {
	  display: none;
	}

	.hero-subtitle {
	  font-size: 18px;
	  line-height: 30px;
	}

	.why-choose-visual {
	  flex: 1;
	}

	.error-404-page {
	  padding: 100px 0;
	  min-height: 60vh;
	}

	.error-404-title {
	  font-size: 80px;
	}

	.error-404-subtitle {
	  font-size: 24px;
	}

	.error-404-message {
	  font-size: 16px;
	  line-height: 26px;
	}
  }

@media (max-width: 600px) {
	body {
	  font-size: 16px;
	  line-height: 26px;
	}

	h1 {
	  font-size: 32px;
	  line-height: 38px;
	}

	h2 {
	  font-size: 26px;
	  line-height: 34px;
	}

	.hero-title {
	  font-size: 36px;
	  line-height: 44px;
	}

	.hero-title br {
	  display: none;
	}

	.hero-subtitle {
	  font-size: 16px;
	  line-height: 28px;
	}

	.logo-craft,
	.logo-digitally,
	.footer-logo-craft,
	.footer-logo-digitally {
	  font-size: 20px;
	}

	.nav-menu li {
	  flex: 1 1 100%;
	}

	.case-study-card,
	.service-card,
	.testimonial-card {
	  padding: 20px;
	}

	.testimonial-author {
	  flex-direction: column;
	  align-items: flex-start;
	  height: auto;
	}

	.why-choose-content ul {
	  padding-left: 16px;
	}

	.cta-section {
	  padding: 48px 0;
	}

	.cta-section .container {
	  padding: 0 16px;
	}

	.cta-form {
	  gap: 16px;
	}

	.cta-submit {
	  padding: 14px;
	}

	.footer-main {
	  gap: 64px;
	}

	.page-template {
	  padding: 40px 0;
    padding-bottom: 0;
	}

	.page-title {
	  font-size: 28px;
	  line-height: 34px;
	}

	.error-404-page {
	  padding: 80px 0;
	  min-height: 50vh;
	}

	.error-404-title {
	  font-size: 60px;
	}

	.error-404-subtitle {
	  font-size: 20px;
	}

	.error-404-message {
	  font-size: 14px;
	  line-height: 24px;
	}

	.error-404-home-btn {
	  padding: 14px 24px;
	  font-size: 14px;
	}
}

/* WordPress Core Styles */
.alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	float: right;
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

.alignwide {
	max-width: var(--wp--style--global--wide-size);
	margin-left: auto;
	margin-right: auto;
}

.alignfull {
	max-width: 100%;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
}

/* WordPress Default Image Captions */
.wp-caption {
	max-width: 100%;
	margin-bottom: 1.5em;
}

.wp-caption img {
	display: block;
	margin: 0 auto;
}

.wp-caption-text {
	text-align: center;
	font-size: 14px;
	color: #666;
	margin-top: 0.5em;
}

/* WordPress Gallery Styles */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

/* Screen Reader Text */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Posts and Pages */
.content-wrapper {
	flex: 1;
	max-width: 100%;
	padding-right: 32px;
}

.widget-area {
	flex: 0 0 300px;
	max-width: 300px;
}

.no-sidebar .content-wrapper {
	max-width: 100%;
	padding-right: 0;
}

.entry-header {
	margin-bottom: 24px;
}

.entry-title {
	margin-bottom: 16px;
}

.entry-meta {
	font-size: 14px;
	color: #666;
	margin-bottom: 16px;
}

.entry-meta span {
	margin-right: 16px;
}

.entry-content {
	line-height: 1.8;
	margin-bottom: 24px;
}

.entry-content > * {
	margin-bottom: 1.5em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 2em;
	margin-bottom: 1em;
}

.entry-content ul,
.entry-content ol {
	padding-left: 2em;
}

.entry-content li {
	margin-bottom: 0.5em;
}

.entry-footer {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--border-color);
}

.post-thumbnail {
	margin-bottom: 24px;
	display: block;
}

.post-thumbnail img {
	width: 100%;
	height: auto;
	border-radius: 4px;
}

/* Posts Grid (for archive, search, blog) */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 32px;
	margin-bottom: 48px;
}

.post-card {
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 4px;
	padding: 24px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Pagination */
.pagination,
.posts-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 48px 0;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 8px 12px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	color: var(--text-color);
	text-decoration: none;
	transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
	background-color: var(--primary-color);
	color: var(--bg-white);
	border-color: var(--primary-color);
}

.nav-links {
	display: flex;
	justify-content: space-between;
	margin: 48px 0;
}

.nav-links a {
	display: flex;
	flex-direction: column;
	padding: 16px 24px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	max-width: 45%;
	transition: all 0.3s ease;
}

.nav-links a:hover {
	border-color: var(--primary-color);
	background-color: rgba(74, 44, 125, 0.05);
}

.nav-subtitle {
	font-size: 14px;
	color: #666;
	margin-bottom: 4px;
}

.nav-title {
	font-weight: 600;
	color: var(--text-color);
}

/* Comments */
.comments-area {
	margin-top: 64px;
	padding-top: 32px;
	border-top: 2px solid var(--border-color);
}

.comments-title {
	margin-bottom: 32px;
}

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

.comment-list li {
	margin-bottom: 24px;
	padding: 24px;
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 4px;
}

.comment-list .children {
	list-style: none;
	padding-left: 32px;
	margin-top: 24px;
}

.comment-author {
	margin-bottom: 8px;
	font-weight: 600;
}

.comment-metadata {
	font-size: 14px;
	color: #666;
	margin-bottom: 16px;
}

.comment-content {
	margin-bottom: 16px;
}

.reply {
	text-align: right;
}

.comment-reply-link {
	font-size: 14px;
	color: var(--primary-color);
	text-decoration: none;
}

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

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

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
}

.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	font-size: 16px;
	font-family: inherit;
}

.form-submit {
	margin-top: 16px;
}

.submit {
	background-color: var(--primary-color);
	color: var(--bg-white);
	border: none;
	padding: 12px 24px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s ease;
}

.submit:hover {
	background-color: #3a1c6d;
}

/* Search Form */
.search-form {
	display: flex;
	gap: 8px;
	margin: 24px 0;
}

.search-field {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	font-size: 16px;
}

.search-submit {
	padding: 12px 24px;
	min-width: auto;
}

.search-submit svg {
	display: inline-block;
	vertical-align: middle;
}

/* Widgets */
.widget {
	margin-bottom: 32px;
	padding: 24px;
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 4px;
}

.widget-title {
	margin-bottom: 16px;
	font-size: 20px;
}

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

.widget ul li {
	padding: 8px 0;
	border-bottom: 1px solid var(--border-color);
}

.widget ul li:last-child {
	border-bottom: none;
}

.widget select {
	width: 100%;
	padding: 8px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
}

/* Page Header */
.page-header {
	text-align: center;
	margin-bottom: 48px;
	padding-bottom: 24px;
	border-bottom: 2px solid var(--border-color);
}

.page-title {
	margin-bottom: 16px;
}

.archive-description {
	font-size: 18px;
	color: #666;
	max-width: 800px;
	margin: 0 auto;
}

/* 404 & Error Pages */
.error-404-page {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 120px 0;
}

.error-404 {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.error-404-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.error-404-title {
	font-size: 120px;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1;
	margin: 0;
	font-family: var(--heading-1-font-family);
}

.error-404-subtitle {
	font-size: 32px;
	font-weight: 500;
	color: #363636;
	margin: 0;
	font-family: var(--heading-2-font-family);
}

.error-404-message {
	font-size: 18px;
	line-height: 28px;
	color: #666;
	margin: 0;
	max-width: 480px;
}

.error-404-actions {
	margin-top: 16px;
}

.error-404-home-btn {
	padding: 16px 32px;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.error-404-home-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Sticky Post */
.sticky {
	position: relative;
}

.sticky::before {
	content: "Featured";
	position: absolute;
	top: 16px;
	right: 16px;
	background: var(--primary-color);
	color: var(--bg-white);
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

/* Block Editor Alignment Support */
.has-text-align-left {
	text-align: left;
}

.has-text-align-center {
	text-align: center;
}

.has-text-align-right {
	text-align: right;
}

/* Custom Logo Support */
.custom-logo-link {
	display: inline-block;
}

.custom-logo {
	max-height: 60px;
	width: auto;
}

/* Contact Form Success Message */
.alert {
	padding: 16px 24px;
	border-radius: 4px;
	margin-bottom: 24px;
}

.alert-success {
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	color: #155724;
}

/* Responsive adjustments for WordPress elements */
@media (max-width: 900px) {
	.content-wrapper {
		padding-right: 0;
		margin-bottom: 32px;
	}

	.widget-area {
		max-width: 100%;
	}

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

	.nav-links a {
		max-width: 100%;
	}
}

/* Page Templates Styles */
.page-header-section {
  background-color: var(--bg-light);
  padding: 120px 0 64px;
  text-align: center;
  /* margin-top: -80px; */
  padding-top: 160px;
}

.page-header-section .page-title {
  font-family: var(--heading-1-font-family);
  font-size: var(--heading-1-font-size);
  line-height: var(--heading-1-line-height);
  margin-bottom: 16px;
  color: #363636;
}

.page-template {
  padding: 0;
  padding-bottom: 0;
}

.page-article {
  max-width: 900px;
  margin: 0 auto;
}

.page-header {
  margin-bottom: 48px;
  text-align: center;
}

.page-title {
  font-family: var(--heading-1-font-family);
  font-size: var(--heading-1-font-size);
  font-weight: var(--heading-1-font-weight);
  line-height: var(--heading-1-line-height);
  color: #363636;
  margin-bottom: 24px;
}

.page-content {
  margin-bottom: 48px;
}

.page-content .entry-content {
  font-size: 18px;
  line-height: 32px;
  color: #363636;
}

.page-content-wrapper .entry-content h2 {
  margin-top: 48px;
  margin-bottom: 24px;
  font-family: var(--heading-2-font-family);
  font-size: var(--heading-2-font-size);
  font-weight: var(--heading-2-font-weight);
  line-height: var(--heading-2-line-height);
}

.page-content-wrapper .entry-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-family: var(--heading-3-font-family);
  font-size: var(--heading-3-font-size);
  font-weight: var(--heading-3-font-weight);
  line-height: var(--heading-3-line-height);
}

.page-content-wrapper .entry-content p {
  margin-bottom: 24px;
  color: #363636;
}

.page-content-wrapper .entry-content ul,
.page-content-wrapper .entry-content ol {
  margin-bottom: 24px;
  padding-left: 32px;
  color: #363636;
}

.page-content-wrapper .entry-content li {
  margin-bottom: 12px;
  color: #363636;
}

.page-content-wrapper .entry-content img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
  border-radius: 4px;
}

.page-content-wrapper .entry-content blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  font-style: italic;
  font-size: 20px;
  line-height: 32px;
}

.page-links {
  margin: 32px 0;
  text-align: center;
}

.page-links a,
.page-links span {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 4px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  text-decoration: none;
  color: #363636;
  transition: all 0.3s ease;
}

.page-links a:hover,
.page-links span.current {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border-color: var(--primary-color);
}

/* Contact Form Section */
.contact-form-section {
  background-color: var(--bg-light);
  padding: 64px 0 128px;
}

.contact-form-wrapper {
  max-width: 786px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-color);
}

.form-group .required {
  color: #d32f2f;
}

.form-input,
.form-textarea {
  padding: 16px 24px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

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

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

.form-submit {
  width: 100%;
  padding: 16px;
  margin-top: 16px;
}

/* ============================================
   CONTACT PAGE (Figma: Precision – Contact)
   ============================================ */

.contact-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  background-color: #F2EFED;
  width: 100%;
}

.contact-page .main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.contact-page .contact-hero {
  background-color: #F2EFED;
  background-image: linear-gradient(180deg, rgba(242, 239, 237, 0.2) 90.23%, #F2EFED 100%), url('./assets/images/service.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.contact-page .contact-hero .container {
  text-align: center;
}

.contact-page .contact-hero .hero-service-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  width: 100%;
}

.contact-page .contact-hero .text-wrapper {
  font-family: var(--heading-1-font-family);
  font-size: var(--heading-1-font-size);
  font-weight: var(--heading-1-font-weight);
  line-height: var(--heading-1-line-height);
  color: #363636;
  margin: 0;
}

.contact-page .contact-hero .div {
  font-size: 16px;
  line-height: 24px;
  color: #363636;
  max-width: 720px;
  margin: 0 auto;
}

.contact-split-section {
  background-color: var(--bg-light);
  padding: 96px 0 128px;
}

.contact-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  background: #ffffff;
  border: 1px solid rgba(54, 54, 54, 0.15);
  border-radius: 6px;
  padding: 32px;
}

.contact-card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  margin-bottom: 0;
}

.contact-card--info .contact-card-header {
  width: 100%;
}

.contact-card-title {
  font-family: 'Newsreader', Georgia, serif;
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  color: #373737;
  margin: 0;
}

.contact-card-subtitle {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #373737;
  margin: 0;
}

.contact-page .contact-card--form .contact-form {
  gap: 16px;
}

.contact-page .contact-card--form .form-group label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(54, 54, 54, 0.8);
}

.contact-page .contact-card--form .form-input,
.contact-page .contact-card--form .form-textarea {
  padding: 12px 14px;
  background-color: #ffffff;
  border: 1px solid rgba(54, 54, 54, 0.2);
  border-radius: 4px;
  font-size: 14px;
}

.contact-page .contact-card--form .form-input:focus,
.contact-page .contact-card--form .form-textarea:focus {
  border-color: #363636;
}

.contact-page .contact-card--form .form-submit {
  width: fit-content;
  padding: 12px 20px;
  margin-top: 8px;
}

.contact-card--info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding: 0;
}

.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.contact-info-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
  width: 100%;
}

.contact-info-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: #373737;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 0;
  flex: 1;
}

.contact-info-item:nth-child(3) .contact-info-content {
  gap: 4px;
}

.contact-info-label {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #373737;
  margin: 0;
}

.contact-info-value {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #373737;
  margin: 0;
}

.contact-info-item:nth-child(3) .contact-info-value {
  line-height: 28px;
}

.contact-info-value:hover {
  text-decoration: underline;
}

/* Testimonials Section */
.contact-testimonials-section {
  background-color: #F2EFED;
  padding: 128px 0;
  color: #363636;
}

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

.contact-testimonials-title {
  font-family: var(--heading-2-font-family);
  font-size: var(--heading-2-font-size);
  font-weight: var(--heading-2-font-weight);
  line-height: var(--heading-2-line-height);
  color: #363636;
  margin: 0 0 16px;
}

.contact-testimonials-subtitle {
  font-size: 18px;
  line-height: 28px;
  color: #363636;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-testimonial-card {
  border: 1px solid rgba(54, 54, 54, 0.15);
  padding: 32px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-testimonial-title {
  font-family: var(--heading-3-font-family);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #363636;
  margin: 0;
}

.contact-testimonial-quote {
  font-size: 16px;
  line-height: 24px;
  color: #363636;
  margin: 0;
}

.contact-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.contact-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-testimonial-name {
  font-size: 16px;
  font-weight: 600;
  color: #363636;
}

.contact-testimonial-role {
  font-size: 14px;
  color: rgba(54, 54, 54, 0.8);
}

/* Client Results Section */
.contact-results-section {
  background-color: var(--bg-light);
  padding: 128px 0;
}

.contact-results-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-results-title {
  font-family: var(--heading-2-font-family);
  font-size: var(--heading-2-font-size);
  font-weight: var(--heading-2-font-weight);
  line-height: var(--heading-2-line-height);
  color: #363636;
  margin: 0 0 16px;
}

.contact-results-subtitle {
  font-size: 18px;
  line-height: 28px;
  color: #363636;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.contact-results-grid .case-study-card {
  background-color: #e9e6e3;
  padding: 24px;
  border-radius: 8px;
}

.contact-results-cta-wrap {
  text-align: center;
}

.contact-results-view-all {
  padding: 16px 32px;
  text-decoration: none;
}

/* Why Work With Us Section */
.contact-why-work-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 128px 64px;
  gap: 64px;
  background-color: #F2EFED;
  width: 100%;
}

.contact-why-work-section .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  width: 100%;
  max-width: 1440px;
}

.contact-why-work-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 64px;
  width: 100%;
  max-width: 1312px;
}

.contact-why-work-title-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 8px;
  width: 100%;
  max-width: 1310px;
}

.contact-why-work-title {
  font-family: 'Newsreader', Georgia, serif;
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  color: #373737;
  margin: 0;
  width: 100%;
}

.contact-why-work-subtitle {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  color: #373737;
  margin: 0;
  width: 100%;
}

.contact-why-work-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 24px;
  width: 100%;
  max-width: 1312px;
}

.contact-why-work-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  gap: 8px;
  flex: 1;
  border: 1px solid rgba(55, 55, 55, 0.2);
  border-radius: 2px;
  background-color: transparent;
}

.contact-why-work-card-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-why-work-card-title {
  font-family: 'Newsreader', Georgia, serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #373737;
  margin: 0;
}

.contact-why-work-card-desc {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #373737;
  margin: 0;
}

/* FAQs Section */
.contact-faq-section {
  background-color: var(--bg-light);
  padding: 128px 0;
}

.contact-faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-faq-title {
  font-family: var(--heading-2-font-family);
  font-size: var(--heading-2-font-size);
  font-weight: var(--heading-2-font-weight);
  line-height: var(--heading-2-line-height);
  color: #363636;
  margin: 0 0 16px;
}

.contact-faq-subtitle {
  font-size: 18px;
  line-height: 28px;
  color: #363636;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-faq-item {
  border-bottom: 1px solid rgba(54, 54, 54, 0.15);
}

.contact-faq-item:first-child {
  border-top: 1px solid rgba(54, 54, 54, 0.15);
}

.contact-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-family: var(--heading-3-font-family);
  font-size: 18px;
  font-weight: 600;
  color: #363636;
  background: none;
  border: none;
  cursor: pointer;
  list-style: none;
  text-align: left;
}

.contact-faq-trigger::-webkit-details-marker {
  display: none;
}

.contact-faq-trigger::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
}

.contact-faq-item[open] .contact-faq-trigger::after {
  content: '−';
}

.contact-faq-content {
  padding: 0 0 20px;
}

.contact-faq-content p {
  font-size: 16px;
  line-height: 26px;
  color: #363636;
  margin: 0;
}

/* Contact Page Responsive */
@media (max-width: 1200px) {
  .contact-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-why-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-hero {
    min-height: 60vh;
    padding-top: 110px;
  }

  .contact-testimonials-section {
    padding: 96px 0;
  }

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

  .contact-results-section,
  .contact-why-work-section,
  .contact-faq-section {
    padding: 96px 0;
  }

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

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

@media (max-width: 600px) {
  .contact-split-section {
    padding: 64px 0 96px;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-testimonials-section {
    padding: 64px 0;
  }

  .contact-results-section,
  .contact-why-work-section,
  .contact-faq-section {
    padding: 64px 0;
  }
}

/* Page Templates - Mobile Responsive */
@media (max-width: 768px) {
  .page-header-section {
    padding: 100px 20px 48px;
    padding-top: 140px;
  }

  .page-header-section .page-title {
    font-size: 36px;
    line-height: 42px;
  }

  .page-template {
    padding: 60px 0;
    padding-bottom: 0;
  }

  .page-content .entry-content {
    font-size: 16px;
    line-height: 28px;
  }

  .page-title {
    font-size: 36px;
    line-height: 42px;
  }

  .page-content .entry-content h2 {
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 28px;
    line-height: 36px;
  }

  .page-content .entry-content h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 32px;
  }

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

  .page-content .entry-content blockquote {
    padding: 16px 20px;
    font-size: 18px;
    line-height: 28px;
  }

  .contact-form-section {
    padding: 48px 20px 96px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-form {
    gap: 16px;
  }
}

/* Elementor Page Builder Support */
.elementor-page {
  background-color: var(--bg-white);
}

.elementor-page-content {
  width: 100%;
}

.elementor-page .entry-content {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* Remove default margins for Elementor content */
.elementor-page .entry-content > .elementor {
  width: 100%;
}

/* Ensure Elementor sections display properly */
.elementor-section {
  width: 100%;
}

/* Fix Elementor container issues */
.elementor-widget-wrap {
  width: 100%;
}

/* Elementor Compatibility - Remove theme conflicts */
.elementor-page .post-thumbnail {
  display: none;
}

.elementor-page .entry-header {
  display: none;
}

/* Support for Elementor Canvas (blank) template */
body.elementor-template-canvas {
  margin: 0 !important;
  padding: 0 !important;
}

body.elementor-template-canvas .site-header,
body.elementor-template-canvas .site-footer {
  display: none !important;
}

/* Case Study Landing Page Styles */
.case-study-landing {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  gap: 8px;
  position: relative;
  background-color: #f2efed;
}

.case-study-landing .main {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.case-study-landing .hero {
  background-color: #F2EFED;
  background-image: linear-gradient(180deg, rgba(242,239,237,0) 55%, rgba(242,239,237,1) 100%), url('./assets/images/gradientbg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* margin-top: -80px; */
  align-self: stretch;
  width: 100%;
}

.case-study-landing .hero .container {
  text-align: center;
}

.case-study-landing .hero .div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  width: 100%;
}

.case-study-landing .hero .text-wrapper {
  font-size: 56px;
  line-height: 60px;
  font-family: var(--heading-1-font-family);
  font-weight: var(--heading-1-font-weight);
  color: #363636;
  text-align: center;
}

.case-study-landing .hero .text-wrapper br {
  display: block;
}

.case-study-landing .hero .discover-how-we-ve {
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 28px;
  font-family: var(--body-large-regular-font-family);
  font-weight: var(--body-large-regular-font-weight);
  color: #363636;
  text-align: center;
}

.case-study-landing .featured-case-study {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 128px 63px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #f2efed;
}

.case-study-landing .container-2 {
  align-items: center;
  gap: 24px;
  padding: 29px 0px;
  width: 78%;
  flex: 0 0 auto;
  display: flex;
  max-width: 1440px;
  position: relative;
  flex-wrap: wrap;
}

.case-study-landing .featured-case-study .frame {
  width: 100%;
  max-width: 645px;
  height: 400px;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  margin-bottom: 0;
  background-image: url('./assets/images/bg-pattern2.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.case-study-landing .featured-case-study .frame .case-study-logo {
  max-width: 120px;
  height: auto;
  object-fit: contain;
}

.case-study-landing .right {
  display: flex;
  flex-direction: column;
  width: 645px;
  max-width: 100%;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  flex: 1;
}

.case-study-landing .div-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.case-study-landing .p {
  position: relative;
  align-self: stretch;
  font-family: var(--heading-2-font-family);
  font-weight: var(--heading-2-font-weight);
  color: #363636;
  font-size: var(--heading-2-font-size);
  letter-spacing: 0px;
  line-height: var(--heading-2-line-height);
  font-style: normal;
  size: 40px;
}

.case-study-landing .text-wrapper-2 {
  position: relative;
  align-self: stretch;
  font-family: var(--body-large-regular-font-family);
  font-weight: var(--body-large-regular-font-weight);
  color: #363636;
  font-size: var(--body-large-regular-font-size);
  letter-spacing: 0px;
  line-height: var(--body-large-regular-line-height);
  font-style: normal;
}

.case-study-landing .button {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  padding: 16px 20px;
  border: 1px solid;
  border-color: #363636;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.case-study-landing .button:hover {
  background-color: #363636;
  color: #f2efed;
}

.case-study-landing .text-wrapper-3 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--heading-2-font-family);
  font-weight: 500;
  color: #363636;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: normal;
  white-space: nowrap;
  font-style: normal;
}

.case-study-landing .button:hover .text-wrapper-3 {
  color: #f2efed;
}

.case-study-landing .case-study {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 128px 64px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #f2efed;
}

.case-study-landing .frame-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  max-width: 1440px;
  position: relative;
}

.case-study-landing .frame-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.case-study-landing .frame-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.case-study-landing .text-wrapper-4 {
  position: relative;
  max-width: 100%;
  margin-top: -1.00px;
  font-family: var(--heading-2-font-family);
  font-weight: var(--heading-2-font-weight);
  color: #363636;
  font-size: var(--heading-2-font-size);
  text-align: center;
  letter-spacing: 0px;
  line-height: var(--heading-2-line-height);
  font-style: normal;
}

.case-study-landing .our-SEO-strategies {
  position: relative;
  width: 1026px;
  max-width: 100%;
  font-family: var(--body-large-regular-font-family);
  font-weight: var(--body-large-regular-font-weight);
  color: #363636;
  font-size: var(--body-large-regular-font-size);
  text-align: center;
  letter-spacing: 0px;
  line-height: var(--body-large-regular-line-height);
  font-style: normal;
}

.case-study-landing .frame-merge {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  height: 984px;
  gap: 24px;
  position: relative;
  width: 100%;
  max-width: 1312px;
}

.case-study-landing .frame-4,
.case-study-landing .frame-6,
.case-study-landing .frame-7,
.case-study-landing .frame-8,
.case-study-landing .frame-9,
.case-study-landing .frame-10 {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  border-radius: 2px;
  border: 1px solid;
  border-color: #36363633;
  background-color: #ffffff;
}

.case-study-landing .frame-4 {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}

.case-study-landing .frame-6 {
  grid-row: 1 / 2;
  grid-column: 3 / 4;
}

.case-study-landing .frame-7 {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
}

.case-study-landing .frame-8 {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}

.case-study-landing .frame-9 {
  grid-row: 2 / 3;
  grid-column: 3 / 4;
}

.case-study-landing .frame-10 {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

.case-study-landing .img {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 194px;
  margin-top: -1.00px;
  margin-left: -1.00px;
  margin-right: -1.00px;
  object-fit: cover;
}

.case-study-landing .div-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.case-study-landing .text-wrapper-5 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  opacity: 0.8;
  font-family: var(--body-sm-regular-font-family);
  font-weight: 500;
  color: #363636;
  font-size: 14px;
  letter-spacing: 0.56px;
  line-height: normal;
  font-style: normal;
  text-transform: uppercase;
}

.case-study-landing .frame-5 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 1px;
  background-color: #363636;
  opacity: 0.2;
}

.case-study-landing .text-wrapper-6 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--body-large-regular-font-family);
  font-weight: var(--body-large-regular-font-weight);
  color: #363636;
  font-size: var(--body-large-regular-font-size);
  letter-spacing: 0px;
  line-height: var(--body-large-regular-line-height);
  font-style: normal;
}

.case-study-landing .div-wrapper {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-radius: 2px;
  border: 1px solid;
  border-color: #36363633;
  cursor: pointer;
  transition: all 0.3s ease;
}

.case-study-landing .div-wrapper:hover {
  background-color: #363636;
  color: #f2efed;
}

.case-study-landing .text-wrapper-7 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  opacity: 0.8;
  font-family: var(--heading-2-font-family);
  font-weight: 500;
  color: #363636;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: normal;
  white-space: nowrap;
  font-style: normal;
}

.case-study-landing .div-wrapper:hover .text-wrapper-7 {
  color: #f2efed;
  opacity: 1;
}

.case-study-landing .thumbnail {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 194px;
  margin-top: -2.00px;
  margin-left: -2.00px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid;
  border-color: #36363633;
  background: #f2efed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-study-landing .center-img,
.case-study-landing .urban-stitch-logo-wrapper,
.case-study-landing .img-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-study-landing .center-img {
  top: calc(50.00% - 37px);
  left: calc(50.00% - 73px);
  width: 144px;
  height: 72px;
}

.case-study-landing .dz-logo-purple {
  margin-top: 0.3px;
  height: 59.23px;
  width: 48px;
  object-fit: contain;
}

.case-study-landing .urban-stitch-logo-wrapper {
  top: calc(50.00% - 37px);
  left: calc(50.00% - 73px);
  width: 144px;
}

.case-study-landing .urban-stitch-logo {
  height: 72px;
  width: 80px;
  object-fit: contain;
}

.case-study-landing .img-wrapper {
  top: 60px;
  left: calc(50.00% - 73px);
  width: 144px;
}

.case-study-landing .button-2 {
  all: unset;
  box-sizing: border-box;
  display: flex;
  width: 187px;
  padding: 12px 20px;
  border: 1px solid;
  border-color: #36363633;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.case-study-landing .button-2:hover {
  background-color: #363636;
  color: #f2efed;
}

.case-study-landing .clients-say {
  display: flex;
  flex-direction: column;
  height: 684px;
  align-items: center;
  gap: 64px;
  padding: 128px 64px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.case-study-landing .title-copy {
  display: flex;
  flex-direction: column;
  width: 1310px;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.case-study-landing .text-wrapper-8 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--heading-2-font-family);
  font-weight: var(--heading-2-font-weight);
  color: #363636;
  font-size: var(--heading-2-font-size);
  text-align: center;
  letter-spacing: 0px;
  line-height: var(--heading-2-line-height);
  font-style: normal;
}

.case-study-landing .testimonial-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  position: relative;
  width: 100%;
  max-width: 1310px;
  flex: 0 0 auto;
}

.case-study-landing .img-2 {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 30px;
  font-weight: 100;
  color: #363636;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  line-height: 1;
  user-select: none;
  flex-shrink: 0;
}

.case-study-landing .img-2:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

.case-study-landing .testimonial-arrow-left,
.case-study-landing .testimonial-arrow-right {
  font-family: Arial, sans-serif;
}

.case-study-landing .frame-11 {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  min-width: 0;
}

.case-study-landing .text-wrapper-9 {
  position: relative;
  font-family: "Newsreader", Helvetica, serif;
  font-weight: 400 !important;
  font-style: italic;
  color: #363636;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
}

.case-study-landing .avatar-company {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

.case-study-landing .avatar {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid;
  border-color: #d8d7da;
  border-radius: 50%;
  object-fit: contain;
}

.case-study-landing .frame-12 {
  display: flex;
  flex-direction: column;
  width: 331px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
}

.case-study-landing .text-wrapper-10 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--body-large-regular-font-family);
  font-weight: var(--body-large-regular-font-weight);
  color: #363636;
  font-size: var(--body-large-regular-font-size);
  text-align: center;
  letter-spacing: 0px;
  line-height: var(--body-large-regular-line-height);
  font-style: normal;
}

.case-study-landing .text-wrapper-11 {
  position: relative;
  align-self: stretch;
  opacity: 0.8;
  font-family: var(--body-sm-regular-font-family);
  font-weight: var(--body-sm-regular-font-weight);
  color: #363636;
  font-size: var(--body-sm-regular-font-size);
  text-align: center;
  letter-spacing: 0px;
  line-height: 20px;
  font-style: normal;
}


/* Responsive Styles for Case Study Landing Page */
@media (max-width: 1024px) {
  .case-study-landing .frame-merge {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    height: auto;
    min-height: 984px;
  }

  .case-study-landing .frame-4 {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }

  .case-study-landing .frame-6 {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }

  .case-study-landing .frame-7 {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }

  .case-study-landing .frame-8 {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
  }

  .case-study-landing .frame-9 {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
  }

  .case-study-landing .frame-10 {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
  }

  .case-study-landing .container-2 {
    flex-direction: column;
  }

  .case-study-landing .frame {
    width: 100%;
    margin: 0;
  }

  .case-study-landing .right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .case-study-landing .hero {
    padding: 140px 20px 96px;
    margin-top: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 100vh;
  }

  .case-study-landing .hero .text-wrapper {
    font-size: 48px;
    line-height: 56px;
  }

  .case-study-landing .hero .text-wrapper br {
    display: none;
  }

  .case-study-landing .hero .discover-how-we-ve {
    font-size: 18px;
    line-height: 30px;
  }

  .case-study-landing .featured-case-study,
  .case-study-landing .case-study,
  .case-study-landing .clients-say {
    padding: 64px 32px;
  }

  .case-study-landing .frame-merge {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, minmax(0, 1fr));
    height: auto;
  }

  .case-study-landing .frame-4,
  .case-study-landing .frame-6,
  .case-study-landing .frame-7,
  .case-study-landing .frame-8,
  .case-study-landing .frame-9,
  .case-study-landing .frame-10 {
    grid-row: auto;
    grid-column: 1 / 2;
  }

  .case-study-landing .clients-say {
    height: auto;
    min-height: 500px;
  }

  .case-study-landing .testimonial-card {
    flex-direction: column;
    gap: 16px;
  }


  .case-study-landing .container {
    padding: 0 32px;
  }

  .case-study-landing .hero .text-wrapper {
    font-size: 36px;
    line-height: 44px;
  }

  .case-study-landing .hero .text-wrapper br {
    display: none;
  }

  .case-study-landing .hero .discover-how-we-ve {
    font-size: 16px;
    line-height: 28px;
  }
}

/* ============================================
   CASE STUDY DETAIL PAGE
   ============================================ */
.case-study-detail {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  gap: 8px;
  position: relative;
  background-color: #ffffff;
}

.case-study-detail .main {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: center;
  width: 100%;
  flex: 0 0 auto;
}

.case-study-detail .hero {
  display: flex;
  flex-direction: column;
  height: 850px;
  align-items: center;
  justify-content: center;
  padding-right: 64px;
  padding-left: 64px;
  position: relative;
  align-self: center;
  width: 100%;
  background-color: #F2EFED;
  background-image: linear-gradient(180deg, rgba(242, 239, 237, 0.2) 90%, #F2EFED 100%), url('./assets/images/bg-pattern2.png');
  background-size: 100% 100%, 100% 135%;
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll, scroll;
  /* margin-top: -80px; */
  padding-top: 120px;
  opacity: 1;
}

.case-study-detail .hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1440px;
}

.case-study-detail .urban-stitch-logo {
  position: relative;
  width: 80px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.case-study-detail .local-SEO-success {
  position: relative;
  align-self: stretch;
  font-family: var(--heading-1-font-family);
  font-weight: var(--heading-1-font-weight);
  color: #363636;
  font-size: var(--heading-1-font-size);
  text-align: center;
  letter-spacing: var(--heading-1-letter-spacing);
  line-height: var(--heading-1-line-height);
  font-style: var(--heading-1-font-style);
}

.case-study-detail .metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  max-width: 100%;
}

.case-study-detail .metric,
.case-study-detail .metric-2,
.case-study-detail .metric-3 {
  display: flex;
  flex-direction: column;
  height: 154px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: #e7e5ec;
  backdrop-filter: blur(4px) brightness(100%);
  -webkit-backdrop-filter: blur(4px) brightness(100%);
}

.case-study-detail .text-wrapper {
  position: relative;
  width: fit-content;
  font-family: var(--heading-2-font-family);
  font-weight: var(--heading-2-font-weight);
  color: #363636;
  font-size: var(--heading-2-font-size);
  text-align: center;
  letter-spacing: var(--heading-2-letter-spacing);
  line-height: var(--heading-2-line-height);
  white-space: nowrap;
  font-style: var(--heading-2-font-style);
}

.case-study-detail .div {
  position: relative;
  width: fit-content;
  opacity: 0.8;
  font-family: var(--body-sm-uppercase-font-family);
  font-weight: var(--body-sm-uppercase-font-weight);
  color: #363636;
  font-size: var(--body-sm-uppercase-font-size);
  text-align: center;
  letter-spacing: var(--body-sm-uppercase-letter-spacing);
  line-height: var(--body-sm-uppercase-line-height);
  font-style: var(--body-sm-uppercase-font-style);
}

.case-study-detail .button {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: flex-start;
  padding: 16px 20px;
  border: 1px solid;
  border-color: #363636;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.case-study-detail .button:hover {
  background-color: #363636;
  color: #ffffff;
}

.case-study-detail .button:hover .text-wrapper-2 {
  color: #ffffff;
}

.case-study-detail .text-wrapper-2 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--button-sm-medium-font-family);
  font-weight: var(--button-sm-medium-font-weight);
  color: #363636;
  font-size: var(--button-sm-medium-font-size);
  letter-spacing: var(--button-sm-medium-letter-spacing);
  line-height: var(--button-sm-medium-line-height);
  white-space: nowrap;
  font-style: var(--button-sm-medium-font-style);
}

.case-study-detail .content {
  gap: 64px;
  padding: 128px 64px;
  background: linear-gradient(0deg, rgba(242, 239, 237, 1) 0%, rgba(242, 239, 237, 1) 100%), linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.content-section-container {
  gap: 64px !important;
  display: flex;
  flex-direction: column;
}

.case-study-detail .overview {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  align-items: center;
  gap: 16px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.case-study-detail .p {
  position: relative;
  align-self: stretch;
  min-height: 192px;
  margin-top: -1.00px;
  font-family: var(--heading-3-font-family);
  font-weight: var(--heading-3-font-weight);
  color: #363636;
  font-size: var(--heading-3-font-size);
  letter-spacing: var(--heading-3-letter-spacing);
  line-height: var(--heading-3-line-height);
  font-style: var(--heading-3-font-style);
}

.case-study-detail .meta-data {
  display: flex;
  max-width: 640px;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  border-top-width: 1px;
  border-top-style: solid;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: #36363633;
}

.case-study-detail .div-2 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.case-study-detail .text-wrapper-3 {
  align-self: stretch;
  opacity: 0.8;
  font-weight: var(--body-sm-uppercase-font-weight);
  text-align: center;
  letter-spacing: var(--body-sm-uppercase-letter-spacing);
  line-height: var(--body-sm-uppercase-line-height);
  position: relative;
  margin-top: -1.00px;
  font-family: var(--body-sm-uppercase-font-family);
  color: #363636;
  font-size: 14px;
  font-style: var(--body-sm-uppercase-font-style);
}

.case-study-detail .text-wrapper-4 {
  font-weight: var(--body-lg-semi-bold-font-weight);
  font-size: 16px;
  text-align: center;
  letter-spacing: var(--body-lg-semi-bold-letter-spacing);
  line-height: var(--body-lg-semi-bold-line-height);
  position: relative;
  align-self: stretch;
  font-family: var(--body-lg-semi-bold-font-family);
  color: #363636;
  font-style: var(--body-lg-semi-bold-font-style);
}

.case-study-detail .divider {
  position: relative;
  align-self: stretch;
  width: 1px;
  background-color: #363636;
  opacity: 0.2;
}

.case-study-detail .div-3 {
  flex-direction: column;
  max-width: 640px;
  width: 100%;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}

.case-study-detail .text-wrapper-5 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--heading-2-font-family);
  font-weight: var(--heading-2-font-weight);
  color: #363636;
  font-size: 40px;
  letter-spacing: var(--heading-2-letter-spacing);
  line-height: var(--heading-2-line-height);
  font-style: var(--heading-2-font-style);
}

.case-study-detail .flexcontainer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-left: 12px;
}

.case-study-detail .div-4 {
  position: relative;
  align-self: stretch;
  font-family: var(--body-lg-regular-font-family);
  font-weight: var(--body-lg-regular-font-weight);
  color: #363636;
  font-size: 16px;
  letter-spacing: var(--body-lg-regular-letter-spacing);
  line-height: var(--body-lg-regular-line-height);
  font-style: var(--body-lg-regular-font-style);
}

.case-study-detail .span {
  font-family: var(--body-lg-regular-font-family);
  font-weight: var(--body-lg-regular-font-weight);
  color: #363636;
  font-size: 16px;
  letter-spacing: var(--body-lg-regular-letter-spacing);
  line-height: var(--body-lg-regular-line-height);
  font-style: var(--body-lg-regular-font-style);
}

.case-study-detail .text {
  position: relative;
  align-self: stretch;
  font-family: "Mona Sans", Helvetica, sans-serif;
  font-weight: 400;
  color: #363636;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 28px;
  padding-left: 0;
  margin-left: 0;
}

.case-study-detail .flexcontainer .text {
  position: relative;
  padding-left: 20px;
  list-style: none;
  text-align: left;
  margin: 0;
}

.case-study-detail .flexcontainer .text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background-color: #363636;
  border-radius: 50%;
}

.case-study-detail .text-wrapper-6 {
  line-height: 28px;
}

.case-study-detail .text-wrapper-7 {
  line-height: var(--body-lg-regular-line-height);
  font-family: var(--body-lg-regular-font-family);
  font-style: var(--body-lg-regular-font-style);
  letter-spacing: var(--body-lg-regular-letter-spacing);
  font-size: var(--body-lg-regular-font-size);
  font-weight: 600;
  color: #363636;
}

.case-study-detail .image {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  align-items: center;
  gap: 8px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.case-study-detail .img {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 320px;
  background-color: #e5e3e2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.case-study-detail .text-wrapper-8 {
  opacity: 0.6;
  font-size: var(--body-sm-regular-font-size);
  line-height: var(--body-sm-regular-line-height);
  position: relative;
  align-self: stretch;
  font-family: var(--body-sm-regular-font-family);
  font-weight: var(--body-sm-regular-font-weight);
  color: #363636;
  letter-spacing: var(--body-sm-regular-letter-spacing);
  font-style: var(--body-sm-regular-font-style);
}

.case-study-detail .testimonial-card {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  gap: 32px;
  padding: 24px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  border-left-width: 5px;
  border-left-style: solid;
  border-color: #6824c1;
  backdrop-filter: blur(12px) brightness(100%);
  -webkit-backdrop-filter: blur(12px) brightness(100%);
}

.case-study-detail .text-wrapper-9 {
  position: relative;
  align-self: stretch;
  font-family: "Newsreader", Helvetica, serif;
  font-weight: 400;
  font-style: italic;
  color: #363636;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 28px;
}

.case-study-detail .avatar-company {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

.case-study-detail .avatar {
  position: relative;
  width: 42px;
  height: 42px;
  margin-left: -1.00px;
  border: 1px solid;
  border-color: #d8d7da;
  border-radius: 50%;
  object-fit: contain;
}

.case-study-detail .frame {
  display: flex;
  flex-direction: column;
  width: 331px;
  align-items: center;
  position: relative;
}

.case-study-detail .text-wrapper-10 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--body-lg-regular-font-family);
  font-weight: var(--body-lg-regular-font-weight);
  color: #363636;
  font-size: 16px;
  letter-spacing: var(--body-lg-regular-letter-spacing);
  line-height: var(--body-lg-regular-line-height);
  font-style: var(--body-lg-regular-font-style);
}

.case-study-detail .text-wrapper-11 {
  position: relative;
  align-self: stretch;
  opacity: 0.8;
  font-family: var(--body-sm-regular-font-family);
  font-weight: var(--body-sm-regular-font-weight);
  color: #363636;
  font-size: 14px;
  text-align: justify;
  letter-spacing: var(--body-sm-regular-letter-spacing);
  line-height: var(--body-sm-regular-line-height);
  font-style: var(--body-sm-regular-font-style);
}

.case-study-detail .outcome {
  display: flex;
  flex-direction: column;
  max-width: 646px;
  width: 100%;
  align-items: center;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

.case-study-detail .flexcontainer-2 {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.case-study-detail .cta {
  flex-direction: column;
  max-width: 640px;
  min-height: 322px;
  gap: 40px;
  padding: 64px;
  margin-bottom: -1.00px;
  background-color: #e7e5ec;
  border-radius: 2px;
  border: 1px solid;
  border-color: #d8d7da;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  width: 100%;
}

.case-study-detail .cta .container-2 {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.case-study-detail .frame-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.case-study-detail .content-2 {
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.case-study-detail .text-wrapper-12 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--heading-3-font-family);
  font-weight: var(--heading-3-font-weight);
  color: #363636;
  font-size: 24px;
  letter-spacing: var(--heading-3-letter-spacing);
  line-height: var(--heading-3-line-height);
  font-style: var(--heading-3-font-style);
}

.case-study-detail .div-wrapper {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border: 1px solid;
  border-color: #363636;
  background-color: transparent;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.case-study-detail .div-wrapper:hover {
  background-color: #363636;
  color: #ffffff;
}

.case-study-detail .div-wrapper:hover .text-wrapper-13 {
  color: #ffffff;
}

.case-study-detail .text-wrapper-13 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--button-medium-font-family);
  font-weight: var(--button-medium-font-weight);
  color: #363636;
  font-size: 16px;
  letter-spacing: var(--button-medium-letter-spacing);
  line-height: var(--button-medium-line-height);
  white-space: nowrap;
  font-style: var(--button-medium-font-style);
}

.case-study-detail .case-study {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 128px 64px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #f2efed;
}

.case-study-detail .frame-wrapper {
  flex-direction: column;
  max-width: 1440px;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}

.case-study-detail .frame-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.case-study-detail .text-wrapper-14 {
  position: relative;
  max-width: 599px;
  margin-top: -1.00px;
  font-family: var(--heading-2-font-family);
  font-weight: var(--heading-2-font-weight);
  color: #363636;
  font-size: var(--heading-2-font-size);
  text-align: center;
  letter-spacing: var(--heading-2-letter-spacing);
  line-height: var(--heading-2-line-height);
  font-style: var(--heading-2-font-style);
}

.case-study-detail .our-SEO-strategies {
  position: relative;
  max-width: 1026px;
  font-family: var(--body-lg-regular-font-family);
  font-weight: var(--body-lg-regular-font-weight);
  color: #363636;
  font-size: var(--body-lg-regular-font-size);
  text-align: center;
  letter-spacing: var(--body-lg-regular-letter-spacing);
  line-height: var(--body-lg-regular-line-height);
  font-style: var(--body-lg-regular-font-style);
}

.case-study-detail .frame-merge {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(1, minmax(0, 1fr));
  min-height: 480px;
  gap: 24px;
  position: relative;
  width: 100%;
}

.case-study-detail .frame-4,
.case-study-detail .frame-7,
.case-study-detail .frame-8 {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  border-radius: 2px;
  border: 1px solid;
  border-color: #36363633;
}

.case-study-detail .frame-5 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 194px;
  margin-top: -1.00px;
  object-fit: contain;
}

.case-study-detail .div-5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.case-study-detail .centre {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.case-study-detail .text-wrapper-15 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  opacity: 0.8;
  font-family: var(--body-sm-uppercase-font-family);
  font-weight: var(--body-sm-uppercase-font-weight);
  color: #363636;
  font-size: var(--body-sm-uppercase-font-size);
  letter-spacing: var(--body-sm-uppercase-letter-spacing);
  line-height: var(--body-sm-uppercase-line-height);
  font-style: var(--body-sm-uppercase-font-style);
}

.case-study-detail .frame-6 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 1px;
  background-color: #363636;
  opacity: 0.2;
}

.case-study-detail .button-2 {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  align-self: stretch;
  width: 100%;
  border: 1px solid;
  border-color: #36363633;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.case-study-detail .button-2:hover {
  background-color: #363636;
  border-color: #363636;
}

.case-study-detail .button-2:hover .text-wrapper-16 {
  color: #ffffff;
  opacity: 1;
}

.case-study-detail .text-wrapper-16 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  opacity: 0.8;
  font-family: var(--button-sm-medium-font-family);
  font-weight: var(--button-sm-medium-font-weight);
  color: #363636;
  font-size: var(--button-sm-medium-font-size);
  letter-spacing: var(--button-sm-medium-letter-spacing);
  line-height: var(--button-sm-medium-line-height);
  white-space: nowrap;
  font-style: var(--button-sm-medium-font-style);
}

.case-study-detail .thumbnail {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 194px;
  margin-top: -2.00px;
  margin-left: -2.00px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid;
  border-color: #36363633;
  background: #f2efed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-study-detail .center-img {
  position: relative;
  width: 144px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-study-detail .dz-logo-purple {
  height: 59.23px;
  width: 48px;
  object-fit: contain;
}

.case-study-detail .urban-stitch-logo-wrapper {
  position: relative;
  width: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-study-detail .urban-stitch-logo-2 {
  height: 72px;
  width: 80px;
  object-fit: contain;
}

/* Responsive Styles for Case Study Detail */
@media (max-width: 1024px) {
  .case-study-detail .frame-merge {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .case-study-detail .frame-8 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .case-study-detail .hero {
    padding: 0px 32px;
    min-height: 600px;
  }

  .case-study-detail .content {
    padding: 64px 32px;
  }

  .content-section-container {
    gap: 48px !important;
  }

  .case-study-detail .metrics {
    flex-direction: column;
    gap: 16px;
  }

  .case-study-detail .metric,
  .case-study-detail .metric-2,
  .case-study-detail .metric-3 {
    width: 100%;
  }

  .case-study-detail .case-study {
    padding: 64px 32px;
  }

  .case-study-detail .frame-merge {
    grid-template-columns: 1fr;
  }

  .case-study-detail .container-wrapper {
    padding: 64px 32px;
  }

  .case-study-detail .cta {
    padding: 48px 32px;
    gap: 32px;
  }

  .case-study-detail .local-SEO-success {
    font-size: 36px;
    line-height: 44px;
  }
}

@media (max-width: 600px) {
  .case-study-detail .hero {
    padding: 0px 16px;
    min-height: 500px;
  }

  .case-study-detail .content {
    padding: 48px 16px;
  }

  .content-section-container {
    gap: 32px !important;
  }

  .case-study-detail .case-study {
    padding: 48px 16px;
  }

  .case-study-detail .container-wrapper {
    padding: 48px 16px;
  }

  .case-study-detail .cta {
    padding: 32px 24px;
    gap: 24px;
    min-height: auto;
  }

  .case-study-detail .local-SEO-success {
    font-size: 28px;
    line-height: 36px;
  }

  .case-study-detail .text-wrapper-5 {
    font-size: 32px;
    line-height: 40px;
  }
}

/* ============================================
   BLOG LANDING PAGE STYLES
   ============================================ */

.blog-landing-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  background-color: #f2efed;
}

.blog-landing-page .main {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.blog-landing-page .hero {
  background-color: #F2EFED;
  background-image: linear-gradient(180deg, rgba(242, 239, 237, 0.2) 87.03%, #F2EFED 100%), url('./assets/images/bgimage2.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* margin-top: -80px; */
  align-self: stretch;
  width: 100%;
}

.blog-landing-page .hero .container {
  text-align: center;
}

.blog-landing-page .hero .hero-blog-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  width: 100%;
}

.blog-landing-page .headline-subhead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.blog-landing-page .hero .text-wrapper {
  position: relative;
  width: 804px;
  margin-top: -1.00px;
  font-family: var(--heading-1-font-family);
  font-weight: var(--heading-1-font-weight);
  color: #363636;
  font-size: 56px;
  text-align: center;
  letter-spacing: var(--heading-1-letter-spacing);
  line-height: var(--heading-1-line-height);
  font-style: var(--heading-1-font-style);
}

.blog-landing-page .hero .text-wrapper br {
  display: block;
}

.blog-landing-page .hero .div {
  position: relative;
  width: 590px;
  font-family: mona sans;
  font-weight: 400;
  color: #363636;
  font-size: 16px;
  text-align: center;
  letter-spacing: var(--body-lg-regular-letter-spacing);
  line-height: 28px;
  font-style: var(--body-lg-regular-font-style);
}

.blog-landing-page .hero .button {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  padding: 16px 20px;
  height: 48px;
  width: 180px;
  border: 1px solid;
  border-color: #363636;
  background-color: transparent;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-landing-page .hero .button:hover {
  background-color: #363636;
  color: #f2efed;
}

.blog-landing-page .hero .button:hover .text-wrapper-2 {
  color: #f2efed;
}

.blog-landing-page .hero .text-wrapper-2 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: Newsreader;
  font-weight: 500;
  color: #363636;
  font-size: 16px;
  letter-spacing: var(--button-medium-letter-spacing);
  line-height: var(--button-medium-line-height);
  white-space: nowrap;
  font-style: var(--button-medium-font-style);
}


.blog-landing-page .featured-case-study {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 64px;
  padding: 128px 64px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #f2efed;
}

.blog-landing-page .container-2 {
  max-width: 1380px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 29px 0px;
  flex: 1;
  flex-grow: 1;
  display: flex;
  position: relative;
}

.blog-landing-page .right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.blog-landing-page .div-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  margin-top: 16px;
}

.blog-landing-page .p {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--heading-2-font-family);
  font-weight: var(--heading-2-font-weight);
  color: #363636;
  font-size: var(--heading-2-font-size);
  letter-spacing: var(--heading-2-letter-spacing);
  line-height: var(--heading-2-line-height);
  font-style: var(--heading-2-font-style);
}

.blog-landing-page .frame {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.blog-landing-page .local-SEO {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  opacity: 0.8;
  font-family: Mona sans;
  font-weight: 500;
  color: #363636;
  font-size: 14px;
  letter-spacing: var(--body-sm-uppercase-letter-spacing);
  line-height: var(--body-sm-uppercase-line-height);
  font-style: var(--body-sm-uppercase-font-style);
  text-transform: uppercase;
}

.blog-landing-page .text-wrapper-3 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: mona sans;
  font-weight: 400;
  color: #363636;
  font-size: 14px;
  letter-spacing: var(--body-sm-regular-letter-spacing);
  line-height: var(--body-sm-regular-line-height);
  white-space: nowrap;
  font-style: var(--body-sm-regular-font-style);
}

.blog-landing-page .frame-2 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 1px;
  background-color: #363636;
  opacity: 0.2;
}

.blog-landing-page .text-wrapper-4 {
  position: relative;
  align-self: stretch;
  font-family: var(--body-lg-regular-font-family);
  font-weight: var(--body-lg-regular-font-weight);
  color: #363636;
  font-size: 16px;
  letter-spacing: var(--body-lg-regular-letter-spacing);
  line-height: var(--body-lg-regular-line-height);
  font-style: var(--body-lg-regular-font-style);
}

.blog-landing-page .div-wrapper {
  all: unset;
  box-sizing: border-box;
  display: flex;
  width: 115px;
  height: 40px;
  padding: 12px 20px;
  border: 1px solid;
  border-color: #36363633;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-landing-page .div-wrapper:hover {
  background-color: #363636;
  border-color: #363636;
}

.blog-landing-page .div-wrapper:hover .text-wrapper-5 {
  color: #f2efed;
}

.blog-landing-page .text-wrapper-5 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: Newsreader;
  font-weight: 500;
  color: #363636;
  font-size: 16px;
  letter-spacing: var(--button-sm-medium-letter-spacing);
  line-height: var(--button-sm-medium-line-height);
  white-space: nowrap;
  font-style: var(--button-sm-medium-font-style);
}

.blog-landing-page .img-wrapper {
  position: relative;
  flex: 1;
  flex-grow: 1;
  height: 400px;
  width: 100%;
  display: flex;
  align-items: center;
}

.blog-landing-page .img {
  position: absolute;
  object-fit: cover;
  height: 400px;
  width: 100%;
  box-shadow: 24px 32px 8px 0px #00000026;

}

.blog-landing-page .blog {
  display: flex;
  align-items: center;
  padding: 128px 64px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #f2efed;
}

.blog-landing-page .frame-wrapper {
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  flex-grow: 1;
  display: flex;
  position: relative;
}

.blog-landing-page .frame-3 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  width: 1312px;
  height: 1908px;
  gap: 24px;
  position: relative;
}

.blog-landing-page .frame-4,
.blog-landing-page .frame-5,
.blog-landing-page .frame-6,
.blog-landing-page .frame-7,
.blog-landing-page .frame-8,
.blog-landing-page .frame-9 {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  border-radius: 2px;
  border: 1px solid;
  border-color: #36363633;
  background-color: transparent;
}

.blog-landing-page .frame-4 {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}

.blog-landing-page .frame-5 {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
}

.blog-landing-page .frame-6 {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}

.blog-landing-page .frame-7 {
  grid-row: 3 / 4;
  grid-column: 1 / 2;
}

.blog-landing-page .frame-8 {
  grid-row: 3 / 4;
  grid-column: 2 / 3;
}

.blog-landing-page .frame-9 {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

.blog-landing-page .thumbnail,
.blog-landing-page .thumbnail-2,
.blog-landing-page .thumbnail-3,
.blog-landing-page .thumbnail-4,
.blog-landing-page .thumbnail-5,
.blog-landing-page .thumbnail-6 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 369px;
  margin-top: -1.00px;
  margin-left: -1.00px;
  margin-right: -1.00px;
  border-radius: 2px;
  border: 1px solid;
  border-color: #36363633;
  background: #f3f3f3;
  overflow: hidden;
}

.blog-landing-page .div-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.blog-landing-page .text-wrapper-6 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: mona sans;
  font-weight: 600;
  color: #363636;
  font-size: 24px;
  letter-spacing: var(--heading-3-letter-spacing);
  line-height: var(--heading-3-line-height);
  font-style: var(--heading-3-font-style);
}

.blog-landing-page .button-2 {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-radius: 2px;
  border: 1px solid;
  border-color: #36363633;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 40px;
}

.blog-landing-page .button-2:hover {
  background-color: #363636;
  border-color: #363636;
}

.blog-landing-page .button-2:hover .text-wrapper-7 {
  color: #f2efed;
  opacity: 1;
}

.blog-landing-page .text-wrapper-7 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  opacity: 0.8;
  font-family: Newsreader;
  font-weight: 500;
  color: #363636;
  font-size: 16px;
  letter-spacing: var(--button-sm-medium-letter-spacing);
  line-height: var(--button-sm-medium-line-height);
  white-space: nowrap;
  font-style: var(--button-sm-medium-font-style);
}

.blog-landing-page .clients-say {
  display: flex;
  flex-direction: column;
  height: 684px;
  align-items: center;
  gap: 64px;
  padding: 128px 64px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.blog-landing-page .container-3 {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  margin-bottom: -127.00px;
  display: flex;
  position: relative;
}

.blog-landing-page .title-copy {
  display: flex;
  flex-direction: column;
  width: 1310px;
  align-items: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.blog-landing-page .text-wrapper-8 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--heading-2-font-family);
  font-weight: var(--heading-2-font-weight);
  color: #363636;
  font-size: var(--heading-2-font-size);
  text-align: center;
  letter-spacing: var(--heading-2-letter-spacing);
  line-height: var(--heading-2-line-height);
  font-style: var(--heading-2-font-style);
}

.blog-landing-page .testimonial-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  position: relative;
  width: 100%;
  max-width: 1310px;
  flex: 0 0 auto;
}

.blog-landing-page .img-2 {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 30px;
  font-weight: 100;
  color: #363636;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  line-height: 1;
  user-select: none;
  flex-shrink: 0;
}

.blog-landing-page .img-2:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

.blog-landing-page .testimonial-arrow-left,
.blog-landing-page .testimonial-arrow-right {
  font-family: Arial, sans-serif;
}

.blog-landing-page .frame-10 {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  min-width: 0;
}

.blog-landing-page .text-wrapper-9 {
  position: relative;
  font-family: "Newsreader", Helvetica, serif;
  font-weight: 400 !important;
  font-style: italic;
  color: #363636;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
}

.blog-landing-page .text-wrapper-10 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--body-large-regular-font-family);
  font-weight: var(--body-large-regular-font-weight);
  color: #363636;
  font-size: var(--body-large-regular-font-size);
  text-align: center;
  letter-spacing: 0px;
  line-height: var(--body-large-regular-line-height);
  font-style: normal;
}

.blog-landing-page .avatar-company {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

.blog-landing-page .avatar {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid;
  border-color: #d8d7da;
  border-radius: 50%;
  object-fit: contain;
}

.blog-landing-page .frame-11 {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  min-width: 0;
}

.blog-landing-page .frame-12 {
  display: flex;
  flex-direction: column;
  width: 331px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
}

.blog-landing-page .text-wrapper-11 {
  position: relative;
  align-self: stretch;
  opacity: 0.8;
  font-family: var(--body-sm-regular-font-family);
  font-weight: var(--body-sm-regular-font-weight);
  color: #363636;
  font-size: var(--body-sm-regular-font-size);
  text-align: center;
  letter-spacing: 0px;
  line-height: 20px;
  font-style: normal;
}

.blog-landing-page .text-wrapper-12 {
  position: relative;
  align-self: stretch;
  opacity: 0.8;
  font-family: var(--body-sm-regular-font-family);
  font-weight: var(--body-sm-regular-font-weight);
  color: #363636;
  font-size: var(--body-sm-regular-font-size);
  text-align: center;
  letter-spacing: var(--body-sm-regular-letter-spacing);
  line-height: var(--body-sm-regular-line-height);
  font-style: var(--body-sm-regular-font-style);
}

.blog-landing-page .cta {
  display: flex;
  align-items: flex-start;
  padding: 128px 64px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #f2efed;
}

.blog-landing-page .container-4 {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex: 1;
  flex-grow: 1;
  display: flex;
  position: relative;
}

.blog-landing-page .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.blog-landing-page .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.blog-landing-page .text-wrapper-13 {
  position: relative;
  width: 908px;
  font-family: "Mona Sans", Helvetica;
  font-weight: 400;
  color: #363636;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
}

.blog-landing-page .form {
  display: flex;
  flex-direction: column;
  max-width: 786px;
  align-items: center;
  justify-content: center;
  gap: 48px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.blog-landing-page .frame-12 {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.blog-landing-page .name {
  padding: 16px;
  position: relative;
  flex-grow: 1;
  background-color: #f3f3f3;
  border-radius: 2px;
  border: 1px solid;
  border-color: #36363633;
  backdrop-filter: blur(12px) brightness(100%);
  -webkit-backdrop-filter: blur(12px) brightness(100%);
  margin-top: -1.00px;
  font-family: var(--body-sm-regular-font-family);
  font-weight: var(--body-sm-regular-font-weight);
  color: #363636;
  font-size: var(--body-sm-regular-font-size);
  letter-spacing: var(--body-sm-regular-letter-spacing);
  line-height: var(--body-sm-regular-line-height);
  white-space: nowrap;
  font-style: var(--body-sm-regular-font-style);
}

.blog-landing-page .name::placeholder {
  opacity: 0.7;
}

.blog-landing-page .phone {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 16px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: #f3f3f3;
  border-radius: 2px;
  border: 1px solid;
  border-color: #36363633;
  backdrop-filter: blur(12px) brightness(100%);
  -webkit-backdrop-filter: blur(12px) brightness(100%);
}

.blog-landing-page .phone input {
  border: none;
  background: transparent;
  width: 100%;
  font-family: var(--body-sm-regular-font-family);
  font-weight: var(--body-sm-regular-font-weight);
  color: #363636;
  font-size: var(--body-sm-regular-font-size);
  letter-spacing: var(--body-sm-regular-letter-spacing);
  line-height: var(--body-sm-regular-line-height);
  font-style: var(--body-sm-regular-font-style);
}

.blog-landing-page .phone input::placeholder {
  opacity: 0.7;
}

.blog-landing-page .label {
  position: relative;
  width: 64px;
  margin-top: -1.00px;
  opacity: 0.7;
  font-family: var(--body-sm-regular-font-family);
  font-weight: var(--body-sm-regular-font-weight);
  color: #363636;
  font-size: var(--body-sm-regular-font-size);
  letter-spacing: var(--body-sm-regular-letter-spacing);
  line-height: var(--body-sm-regular-line-height);
  font-style: var(--body-sm-regular-font-style);
}

.blog-landing-page .email {
  padding: 16px;
  background-color: #f3f3f3;
  border-radius: 2px;
  border: 1px solid;
  border-color: #36363633;
  backdrop-filter: blur(12px) brightness(100%);
  -webkit-backdrop-filter: blur(12px) brightness(100%);
  position: relative;
  align-self: stretch;
  width: 100%;
  margin-top: -1.00px;
  font-family: var(--body-sm-regular-font-family);
  font-weight: var(--body-sm-regular-font-weight);
  color: #363636;
  font-size: var(--body-sm-regular-font-size);
  letter-spacing: var(--body-sm-regular-letter-spacing);
  line-height: var(--body-sm-regular-line-height);
  white-space: nowrap;
  font-style: var(--body-sm-regular-font-style);
}

.blog-landing-page .email::placeholder {
  opacity: 0.7;
}

.blog-landing-page .service {
  padding: 16px;
  background-color: #f3f3f3;
  border-radius: 2px;
  border: 1px solid;
  border-color: #36363633;
  backdrop-filter: blur(12px) brightness(100%);
  -webkit-backdrop-filter: blur(12px) brightness(100%);
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.blog-landing-page .service input {
  border: none;
  background: transparent;
  width: 100%;
  font-family: var(--body-sm-regular-font-family);
  font-weight: var(--body-sm-regular-font-weight);
  color: #363636;
  font-size: var(--body-sm-regular-font-size);
  letter-spacing: var(--body-sm-regular-letter-spacing);
  line-height: var(--body-sm-regular-line-height);
  font-style: var(--body-sm-regular-font-style);
}

.blog-landing-page .service input::placeholder {
  opacity: 0.7;
}

.blog-landing-page .text-wrapper-14 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  opacity: 0.7;
  font-family: var(--body-sm-regular-font-family);
  font-weight: var(--body-sm-regular-font-weight);
  color: #363636;
  font-size: var(--body-sm-regular-font-size);
  letter-spacing: var(--body-sm-regular-letter-spacing);
  line-height: var(--body-sm-regular-line-height);
  white-space: nowrap;
  font-style: var(--body-sm-regular-font-style);
}

.blog-landing-page .message {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 24px 64px 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #f3f3f3;
  border-radius: 2px;
  border: 1px solid;
  border-color: #36363633;
  backdrop-filter: blur(12px) brightness(100%);
  -webkit-backdrop-filter: blur(12px) brightness(100%);
}

.blog-landing-page .message textarea {
  border: none;
  background: transparent;
  width: 100%;
  resize: none;
  font-family: var(--body-sm-regular-font-family);
  font-weight: var(--body-sm-regular-font-weight);
  color: #363636;
  font-size: var(--body-sm-regular-font-size);
  letter-spacing: var(--body-sm-regular-letter-spacing);
  line-height: var(--body-sm-regular-line-height);
  font-style: var(--body-sm-regular-font-style);
}

.blog-landing-page .message textarea::placeholder {
  opacity: 0.7;
}

.blog-landing-page .button-3 {
  all: unset;
  box-sizing: border-box;
  display: flex;
  padding: 16px 20px;
  align-self: stretch;
  width: 100%;
  border: 1px solid;
  border-color: #363636;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-landing-page .button-3:hover {
  background-color: #363636;
}

.blog-landing-page .button-3:hover .text-wrapper-5 {
  color: #f2efed;
}

/* ============================================
   SERVICE LANDING PAGE STYLES
   ============================================ */

.service-landing-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  background-color: #f2efed;
}

.service-landing-page .main {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.service-landing-page .hero {
  background-color: #F2EFED;
  background-image: linear-gradient(180deg, rgba(242, 239, 237, 0.2) 87.03%, #F2EFED 100%), url('./assets/images/service.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.service-landing-page .hero .container {
  text-align: center;
}

.service-landing-page .hero .hero-service-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  width: 100%;
}

.service-landing-page .headline-subhead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  width: 100%;
}

.service-landing-page .hero .text-wrapper {
  font-family: var(--heading-1-font-family);
  font-size: var(--heading-1-font-size);
  font-weight: var(--heading-1-font-weight);
  line-height: var(--heading-1-line-height);
  color: #363636;
  text-align: center;
  max-width: 900px;
}

.service-landing-page .hero .text-wrapper br {
  display: block;
}

.service-landing-page .hero .div {
  font-size: 18px;
  line-height: 28px;
  color: #363636;
  text-align: center;
  max-width: 778px;
}

.service-landing-page .hero .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background-color: #363636;
  border: 1px solid #363636;
  color: #f2efed;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.service-landing-page .hero .button:hover {
  background-color: transparent;
  color: #363636;
}

.service-landing-page .hero .button:hover .text-wrapper-2 {
  color: #363636;
}

.service-landing-page .hero .text-wrapper-2 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #f2efed;
  transition: color 0.3s ease;
}

.service-landing-page .featured-case-study {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 128px 0;
  width: 100%;
  background-color: #f2efed;
}

.service-landing-page .container-2 {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

.service-landing-page .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-landing-page .div-2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-landing-page .p {
  font-family: var(--heading-2-font-family);
  font-size: var(--heading-2-font-size);
  font-weight: var(--heading-2-font-weight);
  line-height: var(--heading-2-line-height);
  color: #363636;
}

.service-landing-page .frame {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-landing-page .local-SEO {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #363636;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-landing-page .text-wrapper-3 {
  font-size: 14px;
  line-height: 20px;
  color: #363636;
}

.service-landing-page .frame-2 {
  width: 1px;
  height: 16px;
  background-color: #36363633;
}

.service-landing-page .text-wrapper-4 {
  font-size: 18px;
  line-height: 28px;
  color: #363636;
}

.service-landing-page .div-wrapper {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background-color: transparent;
  border: none;
  color: #363636;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.service-landing-page .div-wrapper:hover {
  opacity: 0.7;
}

.service-landing-page .div-wrapper:hover .text-wrapper-5 {
  color: #363636;
}

.service-landing-page .text-wrapper-5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #363636;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.service-landing-page .img-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-landing-page .img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

.service-landing-page .service-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #363636;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-landing-page .service-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.service-landing-page .services-section {
  padding: 128px 0;
  width: 100%;
}

.service-landing-page .why-choose-section {
  padding: 128px 0;
  width: 100%;
}

.service-landing-page .clients-say {
  display: flex;
  flex-direction: column;
  height: 684px;
  align-items: center;
  gap: 64px;
  padding: 128px 64px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.service-landing-page .title-copy {
  display: flex;
  flex-direction: column;
  width: 1310px;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.service-landing-page .text-wrapper-8 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--heading-2-font-family);
  font-weight: var(--heading-2-font-weight);
  color: #363636;
  font-size: var(--heading-2-font-size);
  text-align: center;
  letter-spacing: 0px;
  line-height: var(--heading-2-line-height);
  font-style: normal;
}

.service-landing-page .testimonial-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  position: relative;
  width: 100%;
  max-width: 1310px;
  flex: 0 0 auto;
}

.service-landing-page .img-2 {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 30px;
  font-weight: 100;
  color: #363636;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  line-height: 1;
  user-select: none;
  flex-shrink: 0;
}

.service-landing-page .img-2:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

.service-landing-page .testimonial-arrow-left,
.service-landing-page .testimonial-arrow-right {
  font-family: Arial, sans-serif;
}

.service-landing-page .frame-11 {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  min-width: 0;
}

.service-landing-page .text-wrapper-9 {
  position: relative;
  font-family: "Newsreader", Helvetica, serif;
  font-weight: 400 !important;
  font-style: italic;
  color: #363636;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
}

.service-landing-page .avatar-company {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

.service-landing-page .avatar {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid;
  border-color: #d8d7da;
  border-radius: 50%;
  object-fit: contain;
}

.service-landing-page .frame-12 {
  display: flex;
  flex-direction: column;
  width: 331px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
}

.service-landing-page .text-wrapper-10 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--body-large-regular-font-family);
  font-weight: var(--body-large-regular-font-weight);
  color: #363636;
  font-size: var(--body-large-regular-font-size);
  text-align: center;
  letter-spacing: 0px;
  line-height: var(--body-large-regular-line-height);
  font-style: normal;
}

.service-landing-page .text-wrapper-11 {
  position: relative;
  align-self: stretch;
  opacity: 0.8;
  font-family: var(--body-sm-regular-font-family);
  font-weight: var(--body-sm-regular-font-weight);
  color: #363636;
  font-size: var(--body-sm-regular-font-size);
  text-align: center;
  letter-spacing: 0px;
  line-height: 20px;
  font-style: normal;
}

/* Responsive Styles for Service Landing Page */
@media (max-width: 1200px) {
  .service-landing-page .container-2 {
    padding: 0 48px;
  }

  .service-landing-page .services-section .container {
    padding: 0 48px;
  }
}

@media (max-width: 900px) {
  .service-landing-page .hero {
    min-height: 80vh;
    padding: 100px 0 64px;
  }

  .service-landing-page .hero .text-wrapper {
    font-size: 40px;
    line-height: 48px;
  }

  .service-landing-page .hero .text-wrapper br {
    display: none;
  }

  .service-landing-page .hero .div {
    font-size: 16px;
    line-height: 24px;
  }

  .service-landing-page .featured-case-study,
  .service-landing-page .services-section,
  .service-landing-page .why-choose-section,
  .service-landing-page .cta-section,
  .service-landing-page .clients-say {
    padding: 64px 0;
  }

  .service-landing-page .clients-say {
    height: auto;
    min-height: 500px;
    padding: 64px 32px;
  }

  .service-landing-page .testimonial-card {
    flex-direction: column;
    gap: 16px;
  }

  .service-landing-page .container-2 {
    flex-direction: column;
    gap: 32px;
    padding: 0 32px;
  }

  .service-landing-page .img-wrapper {
    width: 100%;
  }

  .service-landing-page .img {
    max-width: 100%;
  }

  .service-landing-page .services-section .container {
    padding: 0 32px;
  }

  .service-landing-page .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .service-landing-page .hero {
    min-height: 70vh;
    padding: 80px 0 48px;
  }

  .service-landing-page .hero .text-wrapper {
    font-size: 32px;
    line-height: 40px;
  }

  .service-landing-page .hero .div {
    font-size: 14px;
    line-height: 22px;
  }

  .service-landing-page .featured-case-study,
  .service-landing-page .services-section,
  .service-landing-page .why-choose-section,
  .service-landing-page .cta-section,
  .service-landing-page .clients-say {
    padding: 48px 0;
  }

  .service-landing-page .clients-say {
    height: auto;
    min-height: 400px;
    padding: 48px 16px;
    gap: 32px;
  }

  .service-landing-page .testimonial-card {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }

  .service-landing-page .container-2 {
    padding: 0 16px;
  }

  .service-landing-page .services-section .container {
    padding: 0 16px;
  }
}

/* ============================================
   SERVICE DETAIL PAGE STYLES
   Figma: Precision – Service Detail (Local SEO)
   ============================================ */

.service-detail-page {
  background-color: #F2EFED;
  width: 100%;
}

.service-detail-page .main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.service-detail-page .container,
.service-detail-page .sd-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

/* Hero */
/* Hero Section - Same as service-landing-page */
.service-detail-page .hero {
  background-color: #F2EFED;
  background-image: linear-gradient(180deg, rgba(242, 239, 237, 0.2) 87.03%, #F2EFED 100%), url('./assets/images/service.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.service-detail-page .hero .container {
  text-align: center;
}

.service-detail-page .hero .hero-service-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  width: 100%;
}

.service-detail-page .headline-subhead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  width: 100%;
}

.service-detail-page .hero .text-wrapper {
  font-family: var(--heading-1-font-family);
  font-size: var(--heading-1-font-size);
  font-weight: var(--heading-1-font-weight);
  line-height: var(--heading-1-line-height);
  color: #363636;
  text-align: center;
  max-width: 900px;
}

.service-detail-page .hero .text-wrapper br {
  display: block;
}

.service-detail-page .hero .div {
  font-size: 18px;
  line-height: 28px;
  color: #363636;
  text-align: center;
  width: 540px;
}

.service-detail-page .hero .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background-color: transparent;
  border: 1px solid #363636;
  color: #363636;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.service-detail-page .hero .button:hover {
  background-color: #363636;
  color: #f2efed;
}

.service-detail-page .hero .button:hover .text-wrapper-2 {
  color: #f2efed;
}

.service-detail-page .hero .text-wrapper-2 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #363636;
  transition: color 0.3s ease;
}

/* Problem / Introduction */
.sd-problem {
  padding: 128px 0;
  background-color: #F2EFED;
}

.sd-problem-grid {
  display: flex;
  align-items: center;
  gap: 64px;
}

.sd-problem-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sd-problem-title {
  font-family: var(--heading-2-font-family);
  font-size: var(--heading-2-font-size);
  font-weight: var(--heading-2-font-weight);
  line-height: var(--heading-2-line-height);
  color: #363636;
  margin: 0;
}

.sd-problem-text {
  font-size: 18px;
  line-height: 28px;
  color: #363636;
}

.sd-problem-text p {
  margin: 0 0 1em;
}

/* .sd-key-highlights {
  margin-top: 8px;
} */

.sd-highlights-label {
  font-size: 16px;
  font-weight: 600;
  color: #363636;
  margin: 0 0 12px;
  font-family: Mona Sans, sans-serif;
  /* text-transform: uppercase; */
  letter-spacing: 0.5px;
}

.sd-highlights-list {
  margin: 0;
  padding-left: 20px;
  font-size: 16px;
  line-height: 26px;
  color: #363636;
}

.sd-problem-image-wrap {
  flex: 0 0 50%;
  max-width: 520px;
  overflow: hidden;
  filter: drop-shadow(24px 32px 8px rgba(0, 0, 0, 0.15));
}

.sd-problem-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Section header shared */
.sd-section-header {
  margin-bottom: 48px;
}

.sd-section-header--center {
  text-align: center;
}

.sd-section-header--center .sd-section-title,
.sd-section-header--center .sd-section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.sd-section-title {
  font-family: var(--heading-2-font-family);
  font-size: var(--heading-2-font-size);
  font-weight: var(--heading-2-font-weight);
  line-height: var(--heading-2-line-height);
  color: #363636;
  margin: 0 0 16px;
  max-width: 800px;
}

.sd-section-subtitle {
  font-size: 18px;
  line-height: 28px;
  color: #363636;
  margin: 0;
  max-width: 700px;
}

/* Key Benefits */
.sd-benefits {
  padding: 128px 0;
  background-color: #F2EFED;
}

.sd-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.sd-benefit-card {
  background-color: #e9e6e3;
  padding: 32px 24px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sd-benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sd-benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sd-benefit-title {
  font-family: var(--heading-3-font-family);
  font-size: var(--heading-3-font-size);
  font-weight: var(--heading-3-font-weight);
  color: #363636;
  margin: 0;
}

.sd-benefit-desc {
  font-size: 16px;
  line-height: 24px;
  color: #363636;
  margin: 0;
}

/* Mid CTA */
.sd-mid-cta {
  padding: 80px 0;
  background-color: #F2EFED;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(180, 160, 200, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(180, 160, 200, 0.15) 0%, transparent 40%);
}

.sd-mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.sd-mid-cta-content {
  flex: 1;
  min-width: 280px;
}

.sd-mid-cta-title {
  font-family: var(--heading-2-font-family);
  font-size: var(--heading-2-font-size);
  font-weight: var(--heading-2-font-weight);
  color: #363636;
  margin: 0 0 8px;
}

.sd-mid-cta-text {
  font-size: 18px;
  line-height: 28px;
  color: #363636;
  margin: 0;
}

.sd-mid-cta-btn {
  flex-shrink: 0;
  padding: 16px 32px;
  text-decoration: none;
}

/* Client Results */
.sd-results {
  padding: 128px 0;
  background-color: #F2EFED;
}

.sd-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.sd-results-grid .case-study-card {
  background-color: #e9e6e3;
  padding: 24px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sd-results-cta-wrap {
  text-align: center;
}

.sd-results-view-all {
  padding: 16px 32px;
  text-decoration: none;
}

/* Detailed Services (two-column list) */
.sd-services-detail {
  padding: 128px 0;
  background-color: #F2EFED;
}

.sd-services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
}

.sd-service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sd-service-item-title {
  font-family: var(--heading-3-font-family);
  font-size: var(--heading-3-font-size);
  font-weight: var(--heading-3-font-weight);
  color: #363636;
  margin: 0;
}

.sd-service-item-desc {
  font-size: 16px;
  line-height: 24px;
  color: #363636;
  margin: 0;
}

/* Our Proven Process */
.sd-process {
  padding: 128px 0;
  background-color: #F2EFED;
}

.sd-process-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

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

.sd-process-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(180, 160, 200, 0.3);
  color: #363636;
  font-family: var(--heading-2-font-family);
  font-size: 24px;
  font-weight: var(--heading-2-font-weight);
  border-radius: 8px;
}

.sd-process-content {
  flex: 1;
}

.sd-process-title {
  font-family: var(--heading-3-font-family);
  font-size: var(--heading-3-font-size);
  font-weight: var(--heading-3-font-weight);
  color: #363636;
  margin: 0 0 8px;
}

.sd-process-desc {
  font-size: 16px;
  line-height: 24px;
  color: #363636;
  margin: 0;
}

/* Testimonials – match service-landing structure for shared template part */
.service-detail-page .clients-say {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 128px 64px;
  background-color: #F2EFED;
  width: 100%;
}

.service-detail-page .clients-say .title-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
}

.service-detail-page .clients-say .text-wrapper-8 {
  font-family: var(--heading-2-font-family);
  font-weight: var(--heading-2-font-weight);
  font-size: var(--heading-2-font-size);
  line-height: var(--heading-2-line-height);
  color: #363636;
  text-align: center;
  margin: 0;
}

.service-detail-page .testimonial-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  width: 100%;
  max-width: 900px;
}

.service-detail-page .testimonial-card .frame-11 {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 1;
}

.service-detail-page .testimonial-card .text-wrapper-9 {
  font-family: "Newsreader", Helvetica, serif;
  font-weight: 400;
  font-style: italic;
  color: #363636;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  margin: 0;
}

.service-detail-page .avatar-company {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.service-detail-page .avatar-company .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.service-detail-page .testimonial-card .img-2 {
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  font-size: 24px;
  color: #363636;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-detail-page .testimonial-card .img-2:hover {
  opacity: 0.7;
}

@media (max-width: 900px) {
  .service-detail-page .clients-say {
    padding: 64px 32px;
    gap: 32px;
  }

  .service-detail-page .testimonial-card {
    flex-direction: column;
  }
}

/* FAQs */
.sd-faq {
  padding: 128px 0;
  background-color: #F2EFED;
}

.sd-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sd-accordion-item {
  border-bottom: 1px solid rgba(54, 54, 54, 0.15);
}

.sd-accordion-item:first-child {
  border-top: 1px solid rgba(54, 54, 54, 0.15);
}

.sd-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-family: var(--heading-3-font-family);
  font-size: 18px;
  font-weight: 600;
  color: #363636;
  background: none;
  border: none;
  cursor: pointer;
  list-style: none;
  text-align: left;
}

.sd-accordion-trigger::-webkit-details-marker {
  display: none;
}

.sd-accordion-trigger::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
}

.sd-accordion-item[open] .sd-accordion-trigger::after {
  content: '−';
}

.sd-accordion-content {
  padding: 0 0 20px;
}

.sd-accordion-content p {
  font-size: 16px;
  line-height: 26px;
  color: #363636;
  margin: 0;
}

/* CTA Section – use global .cta-section */
.service-detail-page .cta-section {
  background-color: var(--bg-light, #F2EFED);
}

/* Service Detail Responsive */
@media (max-width: 1200px) {
  .service-detail-page .sd-container,
  .service-detail-page .container {
    padding: 0 48px;
  }

  .sd-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sd-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .service-detail-page .hero {
    min-height: 80vh;
    padding: 100px 0 64px;
  }

  .service-detail-page .hero .text-wrapper {
    font-size: 40px;
    line-height: 48px;
  }

  .service-detail-page .hero .text-wrapper br {
    display: none;
  }

  .service-detail-page .hero .div {
    font-size: 16px;
    line-height: 24px;
  }

  .sd-problem,
  .sd-benefits,
  .sd-results,
  .sd-services-detail,
  .sd-process,
  .sd-faq {
    padding: 64px 0;
  }

  .sd-problem-grid {
    flex-direction: column;
    gap: 48px;
  }

  .sd-problem-image-wrap {
    flex: none;
    max-width: 100%;
  }

  .sd-mid-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .sd-mid-cta-content {
    min-width: 100%;
  }

  .sd-benefits-grid {
    grid-template-columns: 1fr;
  }

  .sd-results-grid {
    grid-template-columns: 1fr;
  }

  .sd-services-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-page .sd-container,
  .service-detail-page .container {
    padding: 0 32px;
  }
}

@media (max-width: 600px) {
  .service-detail-page .hero {
    min-height: 70vh;
    padding: 80px 0 48px;
  }

  .service-detail-page .hero .text-wrapper {
    font-size: 32px;
    line-height: 40px;
  }

  .service-detail-page .hero .div {
    font-size: 14px;
    line-height: 22px;
  }

  .sd-problem,
  .sd-benefits,
  .sd-results,
  .sd-services-detail,
  .sd-process,
  .sd-faq {
    padding: 48px 0;
  }

  .service-detail-page .sd-container,
  .service-detail-page .container {
    padding: 0 16px;
  }

  .sd-process-step {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================
   BLOG DETAIL PAGE STYLES
   ============================================ */

.blog-detail-page {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  background-color: #f2efed;
}

.blog-detail-page .main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.blog-detail-page .hero {
  display: flex;
  flex-direction: column;
  height: 640px;
  align-items: center;
  justify-content: center;
  padding: 0px 64px;
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: #F2EFED;
  background-image: linear-gradient(180deg, rgba(242, 239, 237, 0.2) 87.03%, #F2EFED 100%), url('./assets/images/bgimage2.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* margin-top: -80px; */
  padding-top: 120px;
}

.blog-detail-page .container {
  flex-direction: column;
  max-width: 1440px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}

.blog-detail-page .headline-subhead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 16px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.blog-detail-page .frame {
  display: inline-flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
}

.blog-detail-page .text-wrapper {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--body-sm-uppercase-font-family);
  font-weight: var(--body-sm-uppercase-font-weight);
  color: #363636;
  font-size: var(--body-sm-uppercase-font-size);
  text-align: center;
  letter-spacing: var(--body-sm-uppercase-letter-spacing);
  line-height: var(--body-sm-uppercase-line-height);
  font-style: var(--body-sm-uppercase-font-style);
  text-decoration: none;
}

.blog-detail-page .text-wrapper:hover {
  text-decoration: underline;
}

.blog-detail-page .div {
  position: relative;
  width: 804px;
  max-width: 100%;
  font-family: var(--heading-1-font-family);
  font-weight: var(--heading-1-font-weight);
  color: #363636;
  font-size: var(--heading-1-font-size);
  text-align: center;
  letter-spacing: var(--heading-1-letter-spacing);
  line-height: var(--heading-1-line-height);
  font-style: var(--heading-1-font-style);
}

.blog-detail-page .meta-data {
  display: flex;
  max-width: 640px;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  border: 0px none;
  flex-wrap: wrap;
  gap: 16px;
}

.blog-detail-page .div-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.blog-detail-page .text-wrapper-2 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--body-lg-semi-bold-font-family);
  font-weight: var(--body-lg-semi-bold-font-weight);
  color: #363636;
  font-size: var(--body-lg-semi-bold-font-size);
  text-align: center;
  letter-spacing: var(--body-lg-semi-bold-letter-spacing);
  line-height: var(--body-lg-semi-bold-line-height);
  font-style: var(--body-lg-semi-bold-font-style);
}

.blog-detail-page .divider {
  position: relative;
  align-self: stretch;
  width: 1px;
  background-color: #363636;
  opacity: 0.2;
}

.blog-detail-page .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 128px 64px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background: linear-gradient(
      0deg,
      rgba(242, 239, 237, 1) 0%,
      rgba(242, 239, 237, 1) 100%
    ),
    linear-gradient(
      0deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 100%
    );
}

.blog-detail-page .container-2 {
  max-width: 1440px;
  align-items: flex-start;
  justify-content: center;
  gap: 64px;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}

.blog-detail-page .left {
  display: flex;
  flex-direction: column;
  max-width: 310px;
  width: 310px;
  align-items: flex-start;
  gap: 8px;
  padding: 24px;
  position: relative;
  background-color: #e8e5ec;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.blog-detail-page .frame-2 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.blog-detail-page .text-wrapper-3 {
  position: relative;
  width: 261px;
  margin-top: -1.00px;
  font-family: var(--heading-3-font-family);
  font-weight: var(--heading-3-font-weight);
  color: #363636;
  font-size: var(--heading-3-font-size);
  letter-spacing: var(--heading-3-letter-spacing);
  line-height: var(--heading-3-line-height);
  font-style: var(--heading-3-font-style);
}

.blog-detail-page .frame-3 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 1px;
  background-color: #363636;
  opacity: 0.2;
}

.blog-detail-page .flexcontainer {
  width: 261px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.blog-detail-page .p {
  position: relative;
  align-self: stretch;
  font-family: var(--body-lg-regular-font-family);
  font-weight: var(--body-lg-regular-font-weight);
  color: #363636;
  font-size: var(--body-lg-regular-font-size);
  letter-spacing: var(--body-lg-regular-letter-spacing);
  line-height: var(--body-lg-regular-line-height);
  font-style: var(--body-lg-regular-font-style);
}

.blog-detail-page .span {
  font-family: var(--body-lg-regular-font-family);
  font-weight: var(--body-lg-regular-font-weight);
  color: #363636;
  font-size: var(--body-lg-regular-font-size);
  letter-spacing: var(--body-lg-regular-letter-spacing);
  line-height: var(--body-lg-regular-line-height);
  font-style: var(--body-lg-regular-font-style);
}

.blog-detail-page .content-2 {
  gap: 64px;
  flex: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.blog-detail-page .div-2 {
  max-width: 640px;
  gap: 16px;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.blog-detail-page .text-wrapper-4 {
  align-self: stretch;
  font-family: var(--heading-3-font-family);
  font-weight: var(--heading-3-font-weight);
  font-size: var(--heading-3-font-size);
  line-height: var(--heading-3-line-height);
  position: relative;
  margin-top: -1.00px;
  color: #363636;
  letter-spacing: var(--heading-3-letter-spacing);
  font-style: var(--heading-3-font-style);
}

.blog-detail-page .text-wrapper-5 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--heading-2-font-family);
  font-weight: var(--heading-2-font-weight);
  color: #363636;
  font-size: var(--heading-2-font-size);
  letter-spacing: var(--heading-2-letter-spacing);
  line-height: var(--heading-2-line-height);
  font-style: var(--heading-2-font-style);
}

.blog-detail-page .text {
  position: relative;
  align-self: stretch;
  font-family: "Mona Sans", Helvetica;
  font-weight: 400;
  color: #363636;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 28px;
}

.blog-detail-page .text-wrapper-6 {
  line-height: 28px;
}

.blog-detail-page .text-wrapper-7 {
  font-weight: var(--body-lg-semi-bold-font-weight);
  line-height: var(--body-lg-semi-bold-line-height);
  font-family: var(--body-lg-semi-bold-font-family);
  font-style: var(--body-lg-semi-bold-font-style);
  letter-spacing: var(--body-lg-semi-bold-letter-spacing);
  font-size: var(--body-lg-semi-bold-font-size);
}

.blog-detail-page .img {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 320px;
  background-color: #e8e5ec;
  overflow: hidden;
}

.blog-detail-page .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail-page .text-wrapper-8 {
  position: relative;
  align-self: stretch;
  opacity: 0.6;
  font-family: var(--body-sm-regular-font-family);
  font-weight: var(--body-sm-regular-font-weight);
  color: #363636;
  font-size: var(--body-sm-regular-font-size);
  letter-spacing: var(--body-sm-regular-letter-spacing);
  line-height: var(--body-sm-regular-line-height);
  font-style: var(--body-sm-regular-font-style);
  text-align: center;
  margin-top: 16px;
}

.blog-detail-page .cta {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  margin-left: -1.00px;
  margin-right: -1.00px;
  background-color: #e7e5ec;
  border-radius: 2px;
  border: 1px solid;
  border-color: #d8d7da;
}

.blog-detail-page .frame-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 1440px;
  align-items: center;
  gap: 64px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.blog-detail-page .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.blog-detail-page .button {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 2px;
  border: 1px solid;
  border-color: #363636;
  cursor: pointer;
  text-decoration: none;
}

.blog-detail-page .button:hover {
  background-color: #363636;
  color: #ffffff;
}

.blog-detail-page .text-wrapper-10 {
  width: fit-content;
  font-family: var(--button-medium-font-family);
  font-weight: var(--button-medium-font-weight);
  font-size: var(--button-medium-font-size);
  line-height: var(--button-medium-line-height);
  white-space: nowrap;
  position: relative;
  margin-top: -1.00px;
  color: #363636;
  letter-spacing: var(--button-medium-letter-spacing);
  font-style: var(--button-medium-font-style);
}

.blog-detail-page .button:hover .text-wrapper-10 {
  color: #ffffff;
}

.blog-detail-page .cta-2 {
  flex-direction: column;
  max-width: 640px;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  width: 100%;
  margin-bottom: -1.00px;
  margin-left: -1.00px;
  margin-right: -1.00px;
  border-radius: 2px;
  border-top-width: 1px;
  border-top-style: solid;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: #d8d7da;
  display: flex;
  position: relative;
  flex: 0 0 auto;
}

.blog-detail-page .frame-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.blog-detail-page .frame-5 {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}

.blog-detail-page .frame-5 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail-page .frame-6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.blog-detail-page .local-SEO-expert {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--body-sm-uppercase-font-family);
  font-weight: var(--body-sm-uppercase-font-weight);
  color: #363636;
  font-size: var(--body-sm-uppercase-font-size);
  text-align: center;
  letter-spacing: var(--body-sm-uppercase-letter-spacing);
  line-height: var(--body-sm-uppercase-line-height);
  font-style: var(--body-sm-uppercase-font-style);
}

.blog-detail-page .text-wrapper-11 {
  position: relative;
  align-self: stretch;
  font-family: var(--heading-3-font-family);
  font-weight: var(--heading-3-font-weight);
  color: #363636;
  font-size: var(--heading-3-font-size);
  text-align: center;
  letter-spacing: var(--heading-3-letter-spacing);
  line-height: var(--heading-3-line-height);
  font-style: var(--heading-3-font-style);
}

.blog-detail-page .text-wrapper-12 {
  position: relative;
  align-self: stretch;
  font-family: var(--body-lg-regular-font-family);
  font-weight: var(--body-lg-regular-font-weight);
  color: #363636;
  font-size: var(--body-lg-regular-font-size);
  text-align: center;
  letter-spacing: var(--body-lg-regular-letter-spacing);
  line-height: var(--body-lg-regular-line-height);
  font-style: var(--body-lg-regular-font-style);
}

.blog-detail-page .group {
  position: relative;
  width: 38.67px;
  height: 16px;
}

.blog-detail-page .right {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.blog-detail-page .cta-3 {
  flex-direction: column;
  max-width: 640px;
  width: 312px;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  margin-top: -1.00px;
  margin-left: -1.00px;
  margin-right: -1.00px;
  background-color: #e7e5ec;
  border-radius: 2px;
  border: 1px solid;
  border-color: #d8d7da;
  display: flex;
  position: relative;
  flex: 0 0 auto;
}

.blog-detail-page .share {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 0px 40px;
  position: relative;
  flex: 0 0 auto;
}

.blog-detail-page .text-wrapper-13 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--heading-3-font-family);
  font-weight: var(--heading-3-font-weight);
  color: #363636;
  font-size: var(--heading-3-font-size);
  letter-spacing: var(--heading-3-letter-spacing);
  line-height: var(--heading-3-line-height);
  white-space: nowrap;
  font-style: var(--heading-3-font-style);
}

.blog-detail-page .frame-7 {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.blog-detail-page .linkedin,
.blog-detail-page .x,
.blog-detail-page .facebook {
  display: inline-flex;
  align-items: center;
  padding: 8px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 4px;
  border: 1px solid;
  border-color: #363636;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-detail-page .linkedin:hover,
.blog-detail-page .x:hover,
.blog-detail-page .facebook:hover {
  background-color: #363636;
}

.blog-detail-page .social-icons {
  position: relative;
  width: 16px;
  height: 16px;
}

.blog-detail-page .container-wrapper {
  align-items: flex-start;
  padding: 128px 64px;
  align-self: stretch;
  width: 100%;
  background-color: #f2efed;
  display: flex;
  position: relative;
  flex: 0 0 auto;
}

.blog-detail-page .container-wrapper .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.blog-detail-page .div-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.blog-detail-page .entry-content {
  font-family: var(--body-lg-regular-font-family);
  font-size: var(--body-lg-regular-font-size);
  line-height: var(--body-lg-regular-line-height);
  color: #363636;
}

.blog-detail-page .entry-content p {
  margin-bottom: 16px;
}

.blog-detail-page .entry-content h2,
.blog-detail-page .entry-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-family: var(--heading-2-font-family);
  font-weight: var(--heading-2-font-weight);
  color: #363636;
}

/* Responsive Styles for Blog Pages */
@media (max-width: 1440px) {
  .blog-landing-page {
    width: 100%;
  }
  
  .blog-landing-page .frame-3 {
    width: 100%;
    max-width: 1312px;
    height: auto;
  }
}

@media (max-width: 1024px) {
  .blog-landing-page .frame-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
  }
  
  .blog-landing-page .featured-case-study {
    flex-direction: column;
    gap: 32px;
  }
  
  .blog-landing-page .img-wrapper {
    width: 100%;
    height: 300px;
  }
  
  .blog-landing-page .img {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .blog-landing-page .hero {
    padding: 140px 20px 96px;
    margin-top: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 100vh;
  }

  .blog-landing-page .hero .text-wrapper {
    width: 100%;
    max-width: 804px;
    font-size: 40px;
    line-height: 48px;
  }

  .blog-landing-page .hero .text-wrapper br {
    display: none;
  }

  .blog-landing-page .hero .div {
    width: 100%;
    max-width: 590px;
  }

  .blog-landing-page .featured-case-study,
  .blog-landing-page .blog,
  .blog-landing-page .clients-say,
  .blog-landing-page .cta {
    padding: 64px 32px;
  }

  .blog-landing-page .clients-say {
    height: auto;
    min-height: 500px;
  }

  .blog-landing-page .testimonial-card {
    flex-direction: column;
    gap: 16px;
  }

  .blog-landing-page .frame-3 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .blog-landing-page .frame-4,
  .blog-landing-page .frame-5,
  .blog-landing-page .frame-6,
  .blog-landing-page .frame-7,
  .blog-landing-page .frame-8,
  .blog-landing-page .frame-9 {
    grid-row: auto;
    grid-column: auto;
  }


  .blog-landing-page .text-wrapper-13 {
    width: 100%;
    max-width: 908px;
  }

  .blog-landing-page .title-copy {
    width: 100%;
    max-width: 1310px;
  }

  .blog-detail-page .content {
    padding: 64px 32px;
  }

  .blog-detail-page .container-2 {
    flex-direction: column;
    gap: 32px;
  }

  .blog-detail-page .left,
  .blog-detail-page .right {
    position: relative;
    width: 100%;
    max-width: 100%;
    top: 0;
  }

  .blog-detail-page .hero {
    padding: 0px 32px;
    height: auto;
    min-height: 500px;
  }

  .blog-detail-page .div {
    width: 100%;
    font-size: 40px;
    line-height: 48px;
  }
}

@media (max-width: 600px) {
  .blog-landing-page .hero {
    padding: 140px 20px 96px;
    margin-top: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 100vh;
  }

  .blog-landing-page .hero .text-wrapper {
    width: 100%;
    max-width: 804px;
    font-size: 32px;
    line-height: 40px;
  }

  .blog-landing-page .hero .text-wrapper br {
    display: none;
  }

  .blog-landing-page .hero .div {
    width: 100%;
    max-width: 590px;
  }

  .blog-landing-page .featured-case-study,
  .blog-landing-page .blog,
  .blog-landing-page .clients-say,
  .blog-landing-page .cta {
    padding: 48px 16px;
  }

  .blog-landing-page .clients-say {
    height: auto;
  }


  .blog-landing-page .text-wrapper-13 {
    width: 100%;
    max-width: 908px;
  }

  .blog-landing-page .title-copy {
    width: 100%;
    max-width: 1310px;
  }

  .blog-landing-page .frame-12 {
    flex-direction: column;
    gap: 16px;
  }

  .blog-detail-page .content {
    padding: 48px 16px;
  }

  .blog-detail-page .hero {
    padding: 0px 16px;
    min-height: 400px;
    padding-top: 100px;
  }

  .blog-detail-page .div {
    font-size: 32px;
    line-height: 40px;
  }

  .blog-detail-page .meta-data {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .blog-detail-page .divider {
    display: none;
  }

  .blog-detail-page .container-2 {
    flex-direction: column;
    gap: 24px;
  }

  .blog-detail-page .left,
  .blog-detail-page .right {
    width: 100%;
    max-width: 100%;
    position: relative;
    top: 0;
  }

  .blog-detail-page .cta-3 {
    width: 100%;
  }

  .blog-detail-page .container-wrapper {
    padding: 48px 16px;
  }
}

/* ============================================
   BLOG DETAIL PAGE - NEW VERSION (bdp- prefix)
   ============================================ */

.bdp-page {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  background-color: #f2efed;
  margin: 0 auto;
}

.bdp-page .bdp-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto; 
}

.bdp-page .bdp-hero {
  background-color: #F2EFED;
  background-image: linear-gradient(180deg, rgba(242, 239, 237, 0.2) 87.03%, #F2EFED 100%), url('./assets/images/bgimage2.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* margin-top: -80px; */
  align-self: stretch;
  width: 100%;
  padding: 0px 64px;
}

.bdp-page .bdp-container {
  flex-direction: column;
  max-width: 1440px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}

.bdp-page .bdp-headline-subhead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 16px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.bdp-page .bdp-frame {
  display: inline-flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
}

.bdp-page .bdp-text-wrapper {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: Mona Sans, Helvetica;
  font-weight: 500;
  color: #363636;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
}

.bdp-page .bdp-text-wrapper:hover {
  text-decoration: underline;
}

.bdp-page .bdp-div {
  position: relative;
  width: 800px;
  max-width: 100%;
  font-family: Newsreader, Helvetica;
  font-weight: 400;
  color: #363636;
  font-size: 56px;
  text-align: center;
  letter-spacing: 0;
  line-height: 60px;
  font-style: normal;
}

.bdp-page .bdp-meta-data {
  display: flex;
  max-width: 640px;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  border: 0px none;
}

.bdp-page .bdp-div-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.bdp-page .bdp-text-wrapper-2 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--body-lg-semi-bold-font-family);
  font-weight: var(--body-lg-semi-bold-font-weight);
  color: #363636;
  font-size: var(--body-lg-semi-bold-font-size);
  text-align: center;
  letter-spacing: var(--body-lg-semi-bold-letter-spacing);
  line-height: var(--body-lg-semi-bold-line-height);
  font-style: var(--body-lg-semi-bold-font-style);
}

.bdp-page .bdp-divider {
  position: relative;
  align-self: stretch;
  width: 1px;
  background-color: #363636;
  opacity: 0.2;
}

.bdp-page .bdp-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 128px 64px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background: linear-gradient(
      0deg,
      rgba(242, 239, 237, 1) 0%,
      rgba(242, 239, 237, 1) 100%
    ),
    linear-gradient(
      0deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 100%
    );
}

.bdp-page .bdp-container-2 {
  max-width: 1440px;
  align-items: flex-start;
  justify-content: center;
  gap: 64px;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}

.bdp-page .bdp-left {
  display: flex;
  flex-direction: column;
  max-width: 310px;
  width: 310px;
  align-items: flex-start;
  gap: 8px;
  padding: 24px;
  position: relative;
  background-color: #e8e5ec;
}

.bdp-page .bdp-frame-2 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.bdp-page .bdp-text-wrapper-3 {
  position: relative;
  width: 261px;
  margin-top: -1.00px;
  font-family: Mona Sans, Helvetica;
  font-weight: 600;
  color: #363636;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 32px;
}

.bdp-page .bdp-frame-3 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 1px;
  background-color: #363636;
  opacity: 0.2;
}

.bdp-page .bdp-flexcontainer {
  width: 261px;
  min-height: 224px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.bdp-page .bdp-p {
  position: relative;
  align-self: stretch;
  font-family: var(--body-lg-regular-font-family);
  font-weight: var(--body-lg-regular-font-weight);
  color: #363636;
  font-size: var(--body-lg-regular-font-size);
  letter-spacing: var(--body-lg-regular-letter-spacing);
  line-height: var(--body-lg-regular-line-height);
  font-style: var(--body-lg-regular-font-style);
  text-align: left;
  margin: 0;
}

.bdp-page .bdp-span {
  font-family: Mona Sans, Helvetica;
  font-weight: 400;
  color: #363636;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 28px;
  font-style: normal;
}

.bdp-page .bdp-content-2 {
  gap: 64px;
  flex: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  width: 100%;
}

.bdp-page .bdp-div-2 {
  max-width: 640px;
  gap: 16px;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.bdp-page .bdp-text-wrapper-4 {
  align-self: stretch;
  font-family: var(--heading-3-font-family);
  font-weight: var(--heading-3-font-weight);
  font-size: var(--heading-3-font-size);
  line-height: var(--heading-3-line-height);
  position: relative;
  margin-top: -1.00px;
  color: #363636;
  letter-spacing: var(--heading-3-letter-spacing);
  font-style: var(--heading-3-font-style);
  text-align: left;
}

.bdp-page .bdp-text-wrapper-5 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--heading-2-font-family);
  font-weight: var(--heading-2-font-weight);
  color: #363636;
  font-size: var(--heading-2-font-size);
  letter-spacing: var(--heading-2-letter-spacing);
  line-height: var(--heading-2-line-height);
  font-style: var(--heading-2-font-style);
  text-align: left;
}

.bdp-page .bdp-text {
  position: relative;
  align-self: stretch;
  font-family: "Mona Sans", Helvetica;
  font-weight: 400;
  color: #363636;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 16px;
}

.bdp-page .bdp-flexcontainer-2 {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  max-width: 564px;
}

.bdp-page .bdp-auto-flex {
  min-height: 492px;
  position: relative;
  width: 100%;
  max-width: 564px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.bdp-page .bdp-flexcontainer-3 {
  position: relative;
  min-height: 82px;
  width: 100%;
  max-width: 564px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.bdp-page .bdp-flexcontainer-4 {
  position: relative;
  min-height: 198px;
  width: 100%;
  max-width: 564px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.bdp-page .bdp-auto {
  min-height: 390px;
  position: relative;
  width: 100%;
  max-width: 564px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.bdp-page .bdp-flexcontainer-5 {
  display: flex;
  position: relative;
  flex-direction: column;
  min-height: 54px;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  max-width: 564px;
}

.bdp-page .bdp-auto-2 {
  min-height: 432px;
  position: relative;
  width: 100%;
  max-width: 564px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.bdp-page .bdp-auto-3 {
  min-height: 660px;
  position: relative;
  width: 100%;
  max-width: 564px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.bdp-page .bdp-flexcontainer-6 {
  position: relative;
  min-height: 154px;
  width: 100%;
  max-width: 564px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.bdp-page .bdp-flexcontainer-7 {
  position: relative;
  min-height: 182px;
  width: 100%;
  max-width: 564px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.bdp-page .bdp-text-wrapper-6 {
  line-height: 28px;
}

.bdp-page .bdp-text-wrapper-7 {
  font-weight: var(--body-lg-semi-bold-font-weight);
  line-height: var(--body-lg-semi-bold-line-height);
  font-family: var(--body-lg-semi-bold-font-family);
  font-style: var(--body-lg-semi-bold-font-style);
  letter-spacing: var(--body-lg-semi-bold-letter-spacing);
  font-size: var(--body-lg-semi-bold-font-size);
}

.bdp-page .bdp-img {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 320px;
  background-color: #e8e5ec;
  overflow: hidden;
}

.bdp-page .bdp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bdp-page .bdp-text-wrapper-8 {
  position: relative;
  align-self: stretch;
  opacity: 0.6;
  font-family: var(--body-sm-regular-font-family);
  font-weight: var(--body-sm-regular-font-weight);
  color: #363636;
  font-size: var(--body-sm-regular-font-size);
  letter-spacing: var(--body-sm-regular-letter-spacing);
  line-height: var(--body-sm-regular-line-height);
  font-style: var(--body-sm-regular-font-style);
}

.bdp-page .bdp-testimonial-card {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  align-items: flex-start;
  gap: 32px;
  padding: 24px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  margin-left: -5.00px;
  margin-right: -5.00px;
  border-left-width: 5px;
  border-left-style: solid;
  border-color: #6824c1;
  backdrop-filter: blur(12px) brightness(100%);
  -webkit-backdrop-filter: blur(12px) brightness(100%);
}

.bdp-page .bdp-text-wrapper-9 {
  position: relative;
  align-self: stretch;
  font-family: "Newsreader", Helvetica;
  font-weight: 400;
  font-style: italic;
  color: #363636;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 28px;
}

.bdp-page .bdp-div-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.bdp-page .bdp-flexcontainer-8 {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.bdp-page .bdp-cta {
  display: flex;
  flex-direction: column;
  max-width: 640px;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  margin-left: -1.00px;
  margin-right: -1.00px;
  background-color: #e7e5ec;
  border-radius: 2px;
  border: 1px solid;
  border-color: #d8d7da;
}

.bdp-page .bdp-cta .bdp-div-3 {
  align-items: center;
  text-align: center;
}

.bdp-page .bdp-cta .bdp-text-wrapper-4,
.bdp-page .bdp-cta .bdp-p {
  text-align: center;
}

.bdp-page .bdp-frame-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 1440px;
  align-items: center;
  gap: 64px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.bdp-page .bdp-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.bdp-page .bdp-button {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 2px;
  border: 1px solid;
  border-color: #363636;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bdp-page .bdp-button:hover {
  background-color: #363636;
  color: #ffffff;
}

.bdp-page .bdp-text-wrapper-10 {
  width: fit-content;
  font-family: var(--button-medium-font-family);
  font-weight: var(--button-medium-font-weight);
  font-size: var(--button-medium-font-size);
  line-height: var(--button-medium-line-height);
  white-space: nowrap;
  position: relative;
  margin-top: -1.00px;
  color: #363636;
  letter-spacing: var(--button-medium-letter-spacing);
  font-style: var(--button-medium-font-style);
  transition: color 0.3s ease;
}

.bdp-page .bdp-button:hover .bdp-text-wrapper-10 {
  color: #ffffff;
}

.bdp-page .bdp-cta-2 {
  flex-direction: column;
  max-width: 640px;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  width: 100%;
  margin-bottom: -1.00px;
  margin-left: -1.00px;
  margin-right: -1.00px;
  border-radius: 2px;
  border-top-width: 1px;
  border-top-style: solid;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: #d8d7da;
  display: flex;
  position: relative;
  flex: 0 0 auto;
}

.bdp-page .bdp-cta-2 .bdp-div-3 {
  align-items: center;
  text-align: center;
}

.bdp-page .bdp-cta-2 .bdp-text-wrapper-12 {
  text-align: center;
}

.bdp-page .bdp-frame-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.bdp-page .bdp-frame-5 {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}

.bdp-page .bdp-frame-5 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bdp-page .bdp-frame-6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.bdp-page .bdp-local-SEO-expert {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--body-sm-uppercase-font-family);
  font-weight: var(--body-sm-uppercase-font-weight);
  color: #363636;
  font-size: var(--body-sm-uppercase-font-size);
  text-align: center;
  letter-spacing: var(--body-sm-uppercase-letter-spacing);
  line-height: var(--body-sm-uppercase-line-height);
  font-style: var(--body-sm-uppercase-font-style);
}

.bdp-page .bdp-text-wrapper-11 {
  position: relative;
  align-self: stretch;
  font-family: var(--heading-3-font-family);
  font-weight: var(--heading-3-font-weight);
  color: #363636;
  font-size: var(--heading-3-font-size);
  text-align: center;
  letter-spacing: var(--heading-3-letter-spacing);
  line-height: var(--heading-3-line-height);
  font-style: var(--heading-3-font-style);
}

.bdp-page .bdp-text-wrapper-12 {
  position: relative;
  align-self: stretch;
  font-family: var(--body-lg-regular-font-family);
  font-weight: var(--body-lg-regular-font-weight);
  color: #363636;
  font-size: var(--body-lg-regular-font-size);
  text-align: center;
  letter-spacing: var(--body-lg-regular-letter-spacing);
  line-height: var(--body-lg-regular-line-height);
  font-style: var(--body-lg-regular-font-style);
}

.bdp-page .bdp-group {
  position: relative;
  width: 38.67px;
  height: 16px;
}

.bdp-page .bdp-right {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  flex: 0 0 auto;
}

.bdp-page .bdp-cta-3 {
  flex-direction: column;
  max-width: 640px;
  width: 312px;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  margin-top: -1.00px;
  margin-left: -1.00px;
  margin-right: -1.00px;
  background-color: #e7e5ec;
  border-radius: 2px;
  border: 1px solid;
  border-color: #d8d7da;
  display: flex;
  position: relative;
  flex: 0 0 auto;
}

.bdp-page .bdp-cta-3 .bdp-div-3 {
  align-items: center;
  text-align: center;
}

.bdp-page .bdp-cta-3 .bdp-text-wrapper-4,
.bdp-page .bdp-cta-3 .bdp-p {
  text-align: center;
}

.bdp-page .bdp-share {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 0px 40px;
  position: relative;
  flex: 0 0 auto;
}

.bdp-page .bdp-text-wrapper-13 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--heading-3-font-family);
  font-weight: var(--heading-3-font-weight);
  color: #363636;
  font-size: var(--heading-3-font-size);
  letter-spacing: var(--heading-3-letter-spacing);
  line-height: var(--heading-3-line-height);
  white-space: nowrap;
  font-style: var(--heading-3-font-style);
}

.bdp-page .bdp-frame-7 {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.bdp-page .bdp-linkedin {
  display: inline-flex;
  align-items: center;
  padding: 8px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  margin-left: -1.00px;
  border-radius: 4px;
  border: 1px solid;
  border-color: #363636;
}

.bdp-page .bdp-x {
  display: inline-flex;
  align-items: center;
  padding: 8px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 4px;
  border: 1px solid;
  border-color: #363636;
}

.bdp-page .bdp-facebook {
  display: inline-flex;
  align-items: center;
  padding: 8px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  border-radius: 4px;
  border: 1px solid;
  border-color: #363636;
}

.bdp-page .bdp-facebook-2 {
  position: relative;
  flex: 0 0 auto;
  margin-top: -0.50px;
  margin-bottom: -0.50px;
  margin-right: -0.50px;
}

.bdp-page .bdp-social-icons {
  position: relative;
  width: 16px;
  height: 16px;
}

.bdp-page .bdp-container-wrapper {
  align-items: flex-start;
  padding: 128px 64px;
  align-self: stretch;
  width: 100%;
  background-color: #f2efed;
  display: flex;
  position: relative;
  flex: 0 0 auto;
}

.bdp-page .bdp-container-3 {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex: 1;
  flex-grow: 1;
  display: flex;
  position: relative;
}

.bdp-page .bdp-content-3 {
  justify-content: center;
  gap: 16px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.bdp-page .bdp-text-wrapper-14 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--heading-2-font-family);
  font-weight: var(--heading-2-font-weight);
  color: #363636;
  font-size: var(--heading-2-font-size);
  text-align: center;
  letter-spacing: var(--heading-2-letter-spacing);
  line-height: var(--heading-2-line-height);
  font-style: var(--heading-2-font-style);
}

.bdp-page .bdp-text-wrapper-15 {
  width: 908px;
  max-width: 100%;
  font-size: 18px;
  text-align: center;
  position: relative;
  font-family: "Mona Sans", Helvetica;
  font-weight: 400;
  color: #363636;
  letter-spacing: 0;
  line-height: 28px;
}

.bdp-page .bdp-form {
  display: flex;
  flex-direction: column;
  max-width: 786px;
  align-items: center;
  justify-content: center;
  gap: 48px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.bdp-page .bdp-form-2 {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.bdp-page .bdp-frame-8 {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.bdp-page .bdp-name {
  padding: 16px;
  position: relative;
  flex-grow: 1;
  background-color: #f3f3f3;
  border-radius: 2px;
  border: 1px solid;
  border-color: #36363633;
  backdrop-filter: blur(12px) brightness(100%);
  -webkit-backdrop-filter: blur(12px) brightness(100%);
  margin-top: -1.00px;
  font-family: var(--body-sm-regular-font-family);
  font-weight: var(--body-sm-regular-font-weight);
  color: #363636;
  font-size: var(--body-sm-regular-font-size);
  letter-spacing: var(--body-sm-regular-letter-spacing);
  line-height: var(--body-sm-regular-line-height);
  white-space: nowrap;
  font-style: var(--body-sm-regular-font-style);
}

.bdp-page .bdp-name::placeholder {
  opacity: 0.7;
}

.bdp-page .bdp-phone {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 16px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: #f3f3f3;
  border-radius: 2px;
  border: 1px solid;
  border-color: #36363633;
  backdrop-filter: blur(12px) brightness(100%);
  -webkit-backdrop-filter: blur(12px) brightness(100%);
}

.bdp-page .bdp-phone input {
  border: none;
  background: transparent;
  width: 100%;
  font-family: var(--body-sm-regular-font-family);
  font-weight: var(--body-sm-regular-font-weight);
  color: #363636;
  font-size: var(--body-sm-regular-font-size);
  letter-spacing: var(--body-sm-regular-letter-spacing);
  line-height: var(--body-sm-regular-line-height);
  font-style: var(--body-sm-regular-font-style);
}

.bdp-page .bdp-phone input::placeholder {
  opacity: 0.7;
}

.bdp-page .bdp-email {
  padding: 16px;
  background-color: #f3f3f3;
  border-radius: 2px;
  border: 1px solid;
  border-color: #36363633;
  backdrop-filter: blur(12px) brightness(100%);
  -webkit-backdrop-filter: blur(12px) brightness(100%);
  position: relative;
  align-self: stretch;
  width: 100%;
  margin-top: -1.00px;
  font-family: var(--body-sm-regular-font-family);
  font-weight: var(--body-sm-regular-font-weight);
  color: #363636;
  font-size: var(--body-sm-regular-font-size);
  letter-spacing: var(--body-sm-regular-letter-spacing);
  line-height: var(--body-sm-regular-line-height);
  white-space: nowrap;
  font-style: var(--body-sm-regular-font-style);
}

.bdp-page .bdp-email::placeholder {
  opacity: 0.7;
}

.bdp-page .bdp-service {
  padding: 16px;
  background-color: #f3f3f3;
  border-radius: 2px;
  border: 1px solid;
  border-color: #36363633;
  backdrop-filter: blur(12px) brightness(100%);
  -webkit-backdrop-filter: blur(12px) brightness(100%);
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.bdp-page .bdp-service input {
  border: none;
  background: transparent;
  width: 100%;
  font-family: var(--body-sm-regular-font-family);
  font-weight: var(--body-sm-regular-font-weight);
  color: #363636;
  font-size: var(--body-sm-regular-font-size);
  letter-spacing: var(--body-sm-regular-letter-spacing);
  line-height: var(--body-sm-regular-line-height);
  font-style: var(--body-sm-regular-font-style);
}

.bdp-page .bdp-service input::placeholder {
  opacity: 0.7;
}

.bdp-page .bdp-text-wrapper-16 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  opacity: 0.7;
  font-family: var(--body-sm-regular-font-family);
  font-weight: var(--body-sm-regular-font-weight);
  color: #363636;
  font-size: var(--body-sm-regular-font-size);
  letter-spacing: var(--body-sm-regular-letter-spacing);
  line-height: var(--body-sm-regular-line-height);
  white-space: nowrap;
  font-style: var(--body-sm-regular-font-style);
}

.bdp-page .bdp-message {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 24px 64px 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #f3f3f3;
  border-radius: 2px;
  border: 1px solid;
  border-color: #36363633;
  backdrop-filter: blur(12px) brightness(100%);
  -webkit-backdrop-filter: blur(12px) brightness(100%);
}

.bdp-page .bdp-message textarea {
  border: none;
  background: transparent;
  width: 100%;
  resize: none;
  font-family: var(--body-sm-regular-font-family);
  font-weight: var(--body-sm-regular-font-weight);
  color: #363636;
  font-size: var(--body-sm-regular-font-size);
  letter-spacing: var(--body-sm-regular-letter-spacing);
  line-height: var(--body-sm-regular-line-height);
  font-style: var(--body-sm-regular-font-style);
}

.bdp-page .bdp-message textarea::placeholder {
  opacity: 0.7;
}

.bdp-page .bdp-button-2 {
  all: unset;
  box-sizing: border-box;
  display: flex;
  padding: 16px 20px;
  align-self: stretch;
  width: 100%;
  border: 1px solid;
  border-color: #363636;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 2px;
  cursor: pointer;
}

.bdp-page .bdp-text-wrapper-17 {
  width: fit-content;
  font-family: var(--button-sm-medium-font-family);
  font-weight: var(--button-sm-medium-font-weight);
  font-size: var(--button-sm-medium-font-size);
  line-height: var(--button-sm-medium-line-height);
  white-space: nowrap;
  position: relative;
  margin-top: -1.00px;
  color: #363636;
  letter-spacing: var(--button-sm-medium-letter-spacing);
  font-style: var(--button-sm-medium-font-style);
}

/* WordPress Content Styling for BDP */
.bdp-page .bdp-div-2 .entry-content {
  font-family: var(--body-lg-regular-font-family);
  font-size: var(--body-lg-regular-font-size);
  line-height: var(--body-lg-regular-line-height);
  color: #363636;
  width: 100%;
}

.bdp-page .bdp-div-2 .entry-content p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 28px;
}

.bdp-page .bdp-div-2 .entry-content h2,
.bdp-page .bdp-div-2 .entry-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-family: var(--heading-2-font-family);
  font-weight: var(--heading-2-font-weight);
  color: #363636;
}

.bdp-page .bdp-div-2 .entry-content h2 {
  font-size: var(--heading-2-font-size);
  line-height: var(--heading-2-line-height);
}

.bdp-page .bdp-div-2 .entry-content h3 {
  font-family: var(--heading-3-font-family);
  font-size: var(--heading-3-font-size);
  line-height: var(--heading-3-line-height);
  font-weight: var(--heading-3-font-weight);
}

.bdp-page .bdp-div-2 .entry-content ul,
.bdp-page .bdp-div-2 .entry-content ol {
  margin-bottom: 16px;
  padding-left: 20px;
}

.bdp-page .bdp-div-2 .entry-content li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 28px;
}

.bdp-page .bdp-div-2 .entry-content strong {
  font-weight: 600;
  font-family: var(--body-lg-semi-bold-font-family);
}

/* Responsive Styles for BDP Page */
@media (max-width: 768px) {
  .bdp-page .bdp-content {
    padding: 64px 32px;
  }

  .bdp-page .bdp-container-2 {
    flex-direction: column;
    gap: 32px;
  }

  .bdp-page .bdp-left,
  .bdp-page .bdp-right {
    position: relative;
    width: 100%;
    max-width: 100%;
    top: 0;
    align-self: stretch;
  }

  .bdp-page .bdp-hero {
    padding: 140px 20px 96px;
    margin-top: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 100vh;
  }

  .bdp-page .bdp-div {
    width: 100%;
    font-size: 40px;
    line-height: 48px;
  }

  .bdp-page .bdp-meta-data {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .bdp-page .bdp-divider {
    display: none;
  }

  .bdp-page .bdp-container-2 {
    flex-direction: column;
    gap: 24px;
  }

  .bdp-page .bdp-cta-3 {
    width: 100%;
  }

  .bdp-page .bdp-container-wrapper {
    padding: 48px 16px;
  }
}

@media (max-width: 600px) {
  .bdp-page .bdp-content {
    padding: 48px 16px;
  }

  .bdp-page .bdp-hero {
    padding: 140px 20px 96px;
    margin-top: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 100vh;
  }

  .bdp-page .bdp-div {
    font-size: 32px;
    line-height: 40px;
  }

  .bdp-page .bdp-container-wrapper {
    padding: 48px 16px;
  }

  .bdp-page .bdp-frame-8 {
    flex-direction: column;
    gap: 16px;
  }
}

/* About Us Page Styles */
.about-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  background-color: #F2EFED;
  width: 100%;
}

.about-page .main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.about-page .hero {
  background-color: #F2EFED;
  background-image: linear-gradient(180deg, rgba(242, 239, 237, 0.2) 87.03%, #F2EFED 100%), url('./assets/images/service.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.about-page .hero .container {
  text-align: center;
}

.about-page .hero .hero-service-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  width: 100%;
}

.about-page .headline-subhead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  width: 100%;
}

.about-page .hero .text-wrapper {
  font-family: var(--heading-1-font-family);
  font-size: var(--heading-1-font-size);
  font-weight: var(--heading-1-font-weight);
  line-height: var(--heading-1-line-height);
  color: #363636;
  text-align: center;
  max-width: 900px;
  margin: 0;
}

.about-page .hero .text-wrapper br {
  display: block;
}

.about-page .hero .div {
  font-size: 18px;
  line-height: 28px;
  color: #363636;
  text-align: center;
  width: 650px;
  margin: 0;
}

.about-page .hero .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background-color: transparent;
  border: 1px solid #363636;
  color: #363636;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.about-page .hero .button:hover {
  background-color: #363636;
  color: #f2efed;
}

.about-page .hero .button:hover .text-wrapper-2 {
  color: #f2efed;
}

.about-page .hero .text-wrapper-2 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #363636;
  transition: color 0.3s ease;
}

/* Growth-focused Section */
.about-growth-section {
  background-color: #F2EFED;
  padding: 128px 64px;
}

.about-growth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1312px;
  margin: 0 auto;
}

.about-growth-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-growth-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  color: #373737;
  margin: 0;
}

.about-growth-intro {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #373737;
  margin: 0;
}

.about-growth-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-growth-list li {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #373737;
  padding-left: 24px;
  position: relative;
}

.about-growth-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #373737;
  font-size: 20px;
  line-height: 28px;
}

.about-growth-trust-strip {
  margin-top: 12px;
}

.about-growth-trust-label {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  color: #373737;
  margin: 0 0 12px;
}

.about-growth-media {
  width: 100%;
}

.about-growth-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 24px 32px 8px rgba(0, 0, 0, 0.15);
}

/* Who We Are Section */
.about-who-we-are-section {
  background-color: #F2EFED;
  padding: 128px 64px;
}

.about-who-we-are-content {
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
}

.about-who-we-are-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  color: #373737;
  margin: 0 0 5px;
}

.about-who-we-are-text {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #373737;
  margin: 0 0 24px;
  text-align: center;
}

.about-who-we-are-text:last-child {
  margin-bottom: 0;
}

/* What We Do Section */
.about-what-we-do-section {
  padding: 128px 64px;
}

.about-what-we-do-header {
  text-align: center;
  margin-bottom: 64px;
}

.about-what-we-do-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  color: #373737;
  margin: 0 0 5px;
}

.about-what-we-do-subtitle {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #373737;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1312px;
  margin: 0 auto;
}

.about-service-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  gap: 24px;
  min-height: 312px;
  border: 1px solid rgba(55, 55, 55, 0.2);
  border-radius: 2px;
  background-color: transparent;
  flex: none;
  flex-grow: 0;
}

.about-service-icon-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px;
  gap: 8px;
  width: 72px;
  height: 72px;
  flex: none;
  flex-grow: 0;
}

.about-service-icon-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 48px;
  height: 48px;
  background: #4A2C7D;
  border-radius: 3px;
  flex: none;
  flex-grow: 0;
}

.about-service-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 0;
  flex: none;
  flex-grow: 0;
}

.about-service-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 24px;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 1;
  min-width: 0;
}

.about-service-title {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #373737;
  margin: 0;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 1;
}

.about-service-divider {
  width: 100%;
  align-self: stretch;
  height: 0;
  border: none;
  border-top: 1px solid #373737;
  opacity: 0.2;
  flex: none;
  order: 1;
  flex-grow: 0;
  margin: 0;
}

.about-service-desc {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #373737;
  margin: 0;
  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 0;
}

/* How We Build Trust Section */
.about-trust-section {
  background-color: #F2EFED;
  padding: 128px 64px;
}

.about-trust-layout {
  max-width: 1312px;
  margin: 0 auto;
}

.about-trust-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-trust-header {
  margin-bottom: 0;
  text-align: center;
}

.about-trust-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  color: #373737;
  margin: 0 0 16px;
  text-align: center;
}

.about-trust-subtitle {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #373737;
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
}

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

.about-trust-card {
  border: none;
  background-color: transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.about-trust-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4A2C7D;
  border-radius: 3px;
  flex-shrink: 0;
}

.about-trust-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.about-trust-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.about-trust-card-title {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #373737;
  margin: 0;
  order: 0;
  align-self: stretch;
}

.about-trust-card-desc {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #373737;
  margin: 0;
  order: 1;
  align-self: stretch;
}


/* Mission Section - Update */
.about-mission-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Mission & Vision Section */
.about-mission-section {
  background-color: #F2EFED;
  padding: 128px 64px;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  max-width: 1312px;
  margin: 0 auto;
}

.about-mission-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-mission-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  color: #373737;
  margin: 0;
}

.about-mission-desc {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #373737;
  margin: 0;
}

/* Our Story Section */
.about-story-section {
  background-color: #F2EFED;
  padding: 128px 64px;
}

.about-story-content {
  max-width: 1312px;
  margin: 0 auto;
  text-align: center;
}

.about-story-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  color: #373737;
  margin: 0 0 48px;
}

.about-story-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.about-story-text p {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #373737;
  margin: 0 0 24px;
}

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

/* Why Choose Us Section */
.about-why-choose-section {
  background-color: #F2EFED;
  padding: 128px 64px;
}

.about-why-choose-header {
  text-align: center;
  margin-bottom: 64px;
}

.about-why-choose-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  color: #373737;
  margin: 0 0 16px;
}

.about-why-choose-subtitle {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #373737;
  margin: 0;
}

.about-why-choose-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.about-why-choose-point {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: none;
  background: transparent;
}

.about-why-choose-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 2px solid #4A2C7D;
  border-radius: 50%;
  position: relative;
}

.about-why-choose-icon svg {
  width: 14px;
  height: 14px;
}

.about-why-choose-icon svg path {
  stroke: #4A2C7D;
}

.about-why-choose-text {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #373737;
  margin: 0;
}

.about-why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1312px;
  margin: 0 auto;
}

.about-why-choose-card {
  padding: 32px;
  border: 1px solid rgba(55, 55, 55, 0.2);
  border-radius: 2px;
  background-color: transparent;
}

.about-why-choose-card-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: #373737;
  margin: 0 0 16px;
}

.about-why-choose-card-desc {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #373737;
  margin: 0;
}

/* Values Section */
.about-values-section {
  background-color: #F2EFED;
  padding: 128px 64px;
}

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

.about-values-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  color: #373737;
  margin: 0 0 16px;
}

.about-values-subtitle {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #373737;
  margin: 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1312px;
  margin: 0 auto;
}

.about-value-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  gap: 8px;
  width: 310px;
  min-height: 160px;
  border: 1px solid rgba(55, 55, 55, 0.2);
  border-radius: 2px;
  flex: none;
  order: 0;
  flex-grow: 1;
}

.about-value-frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 8px;
  width: 100%;
  max-width: 246px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 1;
}

.about-value-title {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #373737;
  margin: 0;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.about-value-desc {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #373737;
  margin: 0;
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* Team Section */
.about-team-section {
  background-color: #F2EFED;
  padding: 128px 64px;
}

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

.about-team-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  color: #373737;
  margin: 0 0 16px;
}

.about-team-subtitle {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #373737;
  margin: 0;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1312px;
  margin: 0 auto;
}

.about-team-member {
  text-align: center;
}

.about-team-avatar {
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(55, 55, 55, 0.2);
}

.about-team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-team-member-name {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: #373737;
  margin: 0 0 8px;
}

.about-team-member-role {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: rgba(55, 55, 55, 0.8);
  margin: 0;
}

/* CTA Section */
.about-cta-section {
  background-color: #F2EFED;
  padding: 128px 64px;
}

.about-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-cta-title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  color: #373737;
  margin: 0 0 24px;
}

.about-cta-subtitle {
  font-family: 'Mona Sans', Helvetica, sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: #373737;
  margin: 0 0 32px;
}

.about-cta-btn {
  display: inline-block;
  padding: 16px 32px;
}

/* About Page Responsive */
@media (max-width: 1024px) {
  .about-growth-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-what-we-do-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-mission-grid,
  .about-why-choose-grid {
    grid-template-columns: 1fr;
  }

  .about-why-choose-points {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-value-item {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .about-page .hero {
    min-height: 80vh;
    padding: 100px 0 64px;
  }

  .about-page .hero .text-wrapper {
    font-size: 40px;
    line-height: 48px;
  }

  .about-page .hero .text-wrapper br {
    display: none;
  }

  .about-page .hero .div {
    font-size: 16px;
    line-height: 24px;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-growth-section,
  .about-who-we-are-section,
  .about-what-we-do-section,
  .about-trust-section,
  .about-mission-section,
  .about-story-section,
  .about-why-choose-section,
  .about-values-section,
  .about-team-section,
  .about-cta-section {
    padding: 64px 32px;
  }

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

  .about-what-we-do-grid {
    grid-template-columns: 1fr;
  }

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

  .about-trust-card {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .about-story-text,
  .about-who-we-are-text {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .about-page .hero {
    min-height: 70vh;
    padding: 80px 0 48px;
  }

  .about-page .hero .text-wrapper {
    font-size: 32px;
    line-height: 40px;
  }

  .about-page .hero .div {
    font-size: 14px;
    line-height: 22px;
  }

  .about-growth-section,
  .about-who-we-are-section,
  .about-what-we-do-section,
  .about-trust-section,
  .about-mission-section,
  .about-story-section,
  .about-why-choose-section,
  .about-values-section,
  .about-team-section,
  .about-cta-section {
    padding: 48px 16px;
  }

  .about-growth-title,
  .about-who-we-are-title,
  .about-what-we-do-title,
  .about-trust-title,
  .about-mission-title,
  .about-why-choose-title,
  .about-values-title,
  .about-cta-title {
    font-size: 32px;
    line-height: 40px;
  }
}