@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2F3640;
}

/* Prevent background scroll when mobile menu is active */
body.mobile-menu-active {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 64px;
}

/* Header */
header {
    padding: 21.5px 0;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

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

.logo {
    display: block;
    width: 184px;
    height: 61px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hamburger Menu (Mobile Only) */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    outline: none;
}

.hamburger-menu:focus {
    outline: none;
}

.hamburger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background: #2F3640;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Desktop Navigation */
.desktop-nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

.desktop-nav li {
    position: relative;
}

.desktop-nav a,
nav a {
    text-decoration: none;
    color: #2F3640;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.desktop-nav a:hover,
nav a:hover {
    color: #F28528;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    min-height: -webkit-fill-available;
    background: rgba(81, 91, 104, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-header {
    padding: 24px 24px 40px;
}

.mobile-nav-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    outline: none;
}

.mobile-nav-close:focus {
    outline: none;
}

.mobile-nav-close svg {
    width: 32px;
    height: 32px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0 24px;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-link-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    outline: none;
}

.mobile-nav-link-wrapper:focus {
    outline: none;
}

.mobile-nav-link {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    flex: 1;
    outline: none;
}

.mobile-nav-link:focus {
    outline: none;
}

.mobile-nav-arrow {
    color: #F28528;
    font-size: 16px;
    transition: transform 0.2s ease;
    display: inline-block;
    margin-left: 12px;
}

.mobile-nav-dropdown.active .mobile-nav-arrow {
    transform: rotate(180deg);
}

.mobile-submenu-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-dropdown.active .mobile-submenu-wrapper {
    grid-template-rows: 1fr;
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    overflow: hidden;
    min-height: 0;
}

.mobile-submenu li {
    border-bottom: none;
}

.mobile-submenu a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    padding: 12px 0 12px 20px;
    text-decoration: none;
    outline: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s;
}

.mobile-nav-dropdown.active .mobile-submenu a {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for items */
.mobile-nav-dropdown.active .mobile-submenu li:nth-child(1) a {
    transition-delay: 0.05s;
}

.mobile-nav-dropdown.active .mobile-submenu li:nth-child(2) a {
    transition-delay: 0.1s;
}

.mobile-nav-dropdown.active .mobile-submenu li:nth-child(3) a {
    transition-delay: 0.15s;
}

.mobile-nav-dropdown.active .mobile-submenu li:nth-child(4) a {
    transition-delay: 0.2s;
}

.mobile-nav-dropdown.active .mobile-submenu li:nth-child(5) a {
    transition-delay: 0.25s;
}

.mobile-nav-dropdown.active .mobile-submenu li:nth-child(6) a {
    transition-delay: 0.3s;
}

.mobile-submenu a:focus {
    outline: none;
}

.mobile-submenu a:hover {
    color: #F28528;
}

/* Remove focus outline/blue box from all mobile nav elements */
.mobile-nav-item a:focus,
.mobile-nav-item button:focus,
.mobile-nav-item *:focus {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* Consistent spacing for non-dropdown items */
.mobile-nav-item:not(.mobile-nav-dropdown) a {
    display: block;
    padding: 24px 0;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
}

/* Dropdown Menus */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-arrow {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #F28528;
}

.dropdown-header {
    background: #F28528;
    height: 8px;
    border-radius: 6px 6px 0 0;
}

.dropdown-content {
    background: #fff;
    border-radius: 0 0 8px 8px;
    padding: 15px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.products-dropdown {
    width: 180px;
}

.capabilities-dropdown {
    width: 380px;
}

.capabilities-dropdown .dropdown-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    text-decoration: none;
    color: #2F3640;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

.dropdown-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.capabilities-dropdown .dropdown-item img {
    width: 30px;
    height: 30px;
}

/* Hero Section */
.hero {
    padding: 81.5px 0;
    background: #f8f9fa;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
}

.hero-text {
    flex: 1;
    max-width: 520px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #F28528;
    min-height: 62px;
}

/* Typewriter Animation */
#typewriter-text::after {
    content: '|';
    animation: blink 0.7s infinite;
    color: #F28528;
}

#typewriter-text.typing-complete::after {
    animation: none;
    opacity: 0;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.hero p {
    font-size: 20px;
    line-height: 1.4;
    color: #666;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 16px;
    background: rgba(47, 54, 64, 0.85);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    border-radius: 12px;
    border: none;
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.71);
    transition: background 0.3s;
    cursor: pointer;
}

.btn-primary:hover {
    background: rgba(47, 54, 64, 1);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 16px;
    background: transparent;
    color: rgba(47, 54, 64, 0.86);
    border: 2px solid #F28528;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    border-radius: 12px;
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.71);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #F28528;
    color: #fff;
}

.hero-image {
    flex: 1;
    max-width: 568px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Text Section */
.text-section {
    padding: 120px 0;
    text-align: center;
    background: rgba(47, 54, 64, 0.85);
}

.text-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #fff;
}

.text-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    max-width: 1152px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #2F3640;
}

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

.card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2F3640;
}

.card-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 24px;
}

.card-link {
    color: #F28528;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: auto;
}

.card-link:hover {
    text-decoration: underline;
}

/* Pull Quote */
.pull-quote {
    padding: 72px 0;
    background: rgba(47, 54, 64, 0.85);
    text-align: center;
}

.quote-text {
    font-size: 32px;
    line-height: 1.5;
    font-style: italic;
    color: #fff;
    max-width: 1120px;
    margin: 0 auto 32px;
}

.quote-author {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

/* Buttons Section */
.buttons-center {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
}

/* Footer */
footer {
    background:#2F3640;
    color: #fff;
    padding: 80px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-company {
    max-width: 562px;
}

.footer-company h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.footer-company p {
    margin-bottom: 16px;
    color: #ccc;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
}

.contact-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

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

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #fff;
}

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

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-column a:hover {
    color: #fff;
}

/* Aviation Page Styles */
.aviation-hero {
    padding: 140px 0 140px;
    background: rgba(47, 54, 64, 0.85);
}

.aviation-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
}

.aviation-hero-text {
    flex: 1;
    max-width: 520px;
}

.breadcrumb {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    color: #2F3640;
    text-decoration: none;
    margin-bottom: 32px;
    transition: color 0.3s;
}

.breadcrumb:hover {
    color: #F28528;
}

.aviation-hero .breadcrumb {
    color: #fff;
}

.aviation-hero .breadcrumb:hover {
    color: #F28528;
}

.aviation-hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #fff;
}

.hero-description h2 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.hero-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 32px;
}

.aviation-hero .btn-primary {
    background: #F28528;
    color: #fff;
}

.aviation-hero .btn-primary:hover {
    background: #d97520;
}

.aviation-hero-image {
    flex: 1;
    max-width: 568px;
}

.aviation-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.aviation-section {
    padding: 80px 0;
}

.aviation-section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 56px;
    color: #2F3640;
}

.aviation-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.aviation-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.aviation-card-text {
    padding: 32px;
    flex-grow: 1;
}

.aviation-card-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2F3640;
}

.aviation-card-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.aviation-card-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px;
    background: #fff;
}

.aviation-card-image img {
    max-width: 348px;
    max-height: 348px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.aviation-feature {
    padding: 80px 0;
    background: rgba(47, 54, 64, 0.85);
}

.aviation-feature-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
}

.aviation-feature-image {
    flex: 0 0 393px;
}

.aviation-feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.aviation-feature-text {
    flex: 1;
    max-width: 683px;
}

.aviation-feature-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
}

.aviation-feature-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 16px;
}

.aviation-feature-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 24px;
}

.aviation-feature-list li {
    color: #ccc;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.aviation-feature-list li::marker {
    color: #F28528;
}

.aviation-feature-list li strong {
    color: #fff;
    font-weight: 700;
}

.aviation-modules {
    padding-bottom: 60px;
}

.aviation-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
}

.aviation-cta-buttons .btn-primary {
    background: #F28528;
    color: #fff;
}

.aviation-cta-buttons .btn-primary:hover {
    background: #d97520;
}

.aviation-cta-buttons .btn-secondary {
    color: #fff;
    border-color: #F28528;
}

.aviation-cta-buttons .btn-secondary:hover {
    background: #F28528;
    color: #fff;
}

/* Material Supply page button override */
.material-supply-buttons .btn-secondary {
    color: rgba(47, 54, 64, 0.86);
}

.material-supply-buttons .btn-secondary:hover {
    background: #F28528;
    color: #fff;
}

/* ================================
   Oil & Gas Product Page
   ================================ */

/* Hero Section */
.oilgas-hero {
    background: rgba(47, 54, 64, 0.85);
    padding: 140px 0 140px 0;
}

.oilgas-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
}

.oilgas-hero-text {
    flex: 1;
    max-width: 600px;
}

.oilgas-hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.oilgas-hero-text .hero-description h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.oilgas-hero-text .hero-description p {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 32px;
}

.oilgas-hero .btn-primary {
    background: #F28528;
    color: #fff;
}

.oilgas-hero .btn-primary:hover {
    background: #d97520;
}

.oilgas-hero-image {
    flex: 1;
    max-width: 500px;
}

.oilgas-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.oilgas-section {
    padding: 80px 0;
}

.oilgas-section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #2F3640;
    text-align: left;
}

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

.oilgas-card {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.oilgas-card-text {
    flex: 1;
    margin-bottom: 24px;
}

.oilgas-card-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2F3640;
}

.oilgas-card-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.oilgas-card-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px;
    background: #f5f5f5;
}

.oilgas-card-image img {
    max-width: 348px;
    max-height: 348px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* White background override for specific cards */
.oilgas-card-white {
    background: #fff;
}

.oilgas-card-white .oilgas-card-image {
    background: #fff;
}

/* Feature Section */
.oilgas-feature {
    background: rgba(47, 54, 64, 0.85);
    padding: 80px 0;
}

.oilgas-feature-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
}

.oilgas-feature-image {
    flex: 1;
    max-width: 500px;
}

.oilgas-feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.oilgas-feature-text {
    flex: 1;
}

.oilgas-feature-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
}

.oilgas-feature-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 24px;
}

.oilgas-feature-list {
    list-style-type: disc;
    padding-left: 24px;
    margin: 0;
}

.oilgas-feature-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 16px;
}

.oilgas-feature-list li::marker {
    color: #F28528;
}

.oilgas-feature-list li strong {
    color: #fff;
    font-weight: 700;
}

/* Materials Section */
.oilgas-materials {
    padding-bottom: 60px;
}

.oilgas-feature-text-only {
    max-width: 1200px;
    margin: 0 auto;
}

.oilgas-feature-text-only h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
}

.oilgas-materials-list {
    list-style-type: disc;
    padding-left: 24px;
    margin: 0;
}

.oilgas-materials-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 16px;
}

.oilgas-materials-list li::marker {
    color: #F28528;
}

.oilgas-materials-list li strong {
    color: #fff;
    font-weight: 700;
}

.oilgas-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
}

.oilgas-cta-buttons .btn-primary {
    background: #F28528;
    color: #fff;
}

.oilgas-cta-buttons .btn-primary:hover {
    background: #d97520;
}

.oilgas-cta-buttons .btn-secondary {
    color: #fff;
    border-color: #F28528;
}

.oilgas-cta-buttons .btn-secondary:hover {
    background: #F28528;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {

    /* Show mobile menu elements, hide desktop nav */
    .hamburger-menu {
        display: flex;
    }

    /* Hide hamburger when mobile menu is active */
    body.mobile-menu-active .hamburger-menu {
        display: none;
    }

    .desktop-nav {
        display: none;
    }

    .container {
        padding: 0 24px;
    }

    .logo {
        width: 140px;
        height: 46px;
    }

    .hero-content {
        flex-direction: column;
    }

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

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

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

    .hero h1 {
        font-size: 36px;
    }

    .text-section h2 {
        font-size: 32px;
    }

    .quote-text {
        font-size: 24px;
    }

    /* Aviation page responsive */
    .aviation-hero-content {
        flex-direction: column;
        gap: 32px;
    }

    .aviation-hero h1 {
        font-size: 36px;
    }

    .hero-description h2 {
        font-size: 20px;
    }

    .aviation-section-title {
        font-size: 32px;
    }

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

    .aviation-feature-content {
        flex-direction: column;
        gap: 32px;
    }

    .aviation-feature-image {
        flex: 1;
        max-width: 100%;
    }

    .aviation-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .aviation-cta-buttons .btn-primary,
    .aviation-cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* Oil & Gas page responsive */
    .oilgas-hero-content {
        flex-direction: column;
        gap: 32px;
    }

    .oilgas-hero-text h1 {
        font-size: 36px;
    }

    .oilgas-hero-text .hero-description h2 {
        font-size: 22px;
    }

    .oilgas-section-title {
        font-size: 28px;
    }

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

    .oilgas-feature-content {
        flex-direction: column;
        gap: 32px;
    }

    .oilgas-feature-image {
        flex: 1;
        max-width: 100%;
    }

    .oilgas-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .oilgas-cta-buttons .btn-primary,
    .oilgas-cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 769px) {

    /* Hide mobile menu on desktop */
    .mobile-nav-overlay {
        display: none;
    }
}

/* Casting Page Styles */
.casting-hero {
    padding: 79px 0 0;
    background: #fff;
}

.casting-hero .container {
    padding-left: 58px;
    padding-right: 120px;
}

.casting-hero .breadcrumb {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #61687A;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.casting-hero .breadcrumb:hover {
    color: #F28528;
}

.casting-hero h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    color: #F28528;
    margin: 0;
}

.casting-intro {
    padding: 48px 0 120px;
}

.casting-intro-text {
    font-size: 20px;
    line-height: 1.45;
    color: rgba(47, 54, 64, 0.85);
    margin-bottom: 48px;
    max-width: 1152px;
}

.casting-intro-image {
    width: 100%;
    max-width: 1152px;
    margin: 0 auto;
}

.casting-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.casting-feature-dark {
    padding: 120px 0;
    background: rgba(47, 54, 64, 0.85);
}

.casting-feature-dark h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
}

.casting-feature-intro {
    font-size: 18px;
    line-height: 1.45;
    color: #fff;
    margin-bottom: 24px;
    max-width: 1163px;
}

.casting-feature-intro-pm {
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
    max-width: 1077px;
}

.casting-feature-list {
    list-style-type: disc;
    padding-left: 30px;
    margin: 0;
}

.casting-feature-list li {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 0;
}

.casting-feature-list li::marker {
    color: #F28528;
}

.casting-materials {
    padding: 51px 0 40px;
}

.casting-materials-content {
    display: flex;
    gap: 64px;
    align-items: center;
}

.casting-materials-image {
    flex: 0 0 348.5px;
}

.casting-materials-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.casting-materials-text {
    flex: 1;
    max-width: 723px;
}

.casting-materials-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(47, 54, 64, 0.85);
    margin-bottom: 24px;
}

.casting-materials-list {
    list-style-type: disc;
    padding-left: calc(1.5 * 1 * var(--list-marker-font-size, 20px));
    margin: 0;
}

.casting-materials-list li {
    color: rgba(0, 0, 0, 0.55);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 0;
}

.casting-materials-list li::marker {
    color: #61687A;
}

.casting-materials-list .orange-highlight {
    color: #F28528;
    font-weight: 700;
}

.casting-products {
    padding: 51px 0 40px;
}

.casting-products-content {
    display: flex;
    gap: 107px;
    align-items: center;
}

.casting-products-image {
    flex: 0 0 320px;
}

.casting-products-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.casting-products-text {
    flex: 1;
    max-width: 604px;
}

.casting-products-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(47, 54, 64, 0.85);
    margin-bottom: 24px;
}

.casting-products-list {
    list-style-type: disc;
    padding-left: 30px;
    margin: 0;
}

.casting-products-list li {
    color: #61687A;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 0;
}

.casting-products-list li::marker {
    color: #61687A;
}

.casting-cta {
    padding: 100px 0 120px;
}

.casting-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.casting-cta-buttons .btn-primary {
    background: #F28528;
    color: #fff;
}

.casting-cta-buttons .btn-primary:hover {
    background: #d97520;
}

.casting-cta-buttons .btn-secondary {
    color: rgba(47, 54, 64, 0.86);
    border-color: #F28528;
}

.casting-cta-buttons .btn-secondary:hover {
    background: #F28528;
    color: #fff;
}

/* Casting Page Responsive */
@media (max-width: 768px) {
    .casting-hero .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .casting-hero h1 {
        font-size: 36px;
    }

    .casting-intro-text {
        font-size: 18px;
    }

    .casting-feature-dark h2 {
        font-size: 28px;
    }

    .casting-materials-content {
        flex-direction: column;
        gap: 32px;
    }

    .casting-materials-image {
        flex: 1;
        max-width: 100%;
    }

    .casting-products-content {
        flex-direction: column;
        gap: 32px;
    }

    .casting-products-image {
        flex: 1;
        max-width: 100%;
    }

    .casting-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .casting-cta-buttons .btn-primary,
    .casting-cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Forging Page Styles */
.forging-hero {
    padding: 79px 0 0;
    background: #fff;
}

.forging-hero .container {
    padding-left: 58px;
    padding-right: 120px;
}

.forging-hero .breadcrumb {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #61687A;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.forging-hero .breadcrumb:hover {
    color: #F28528;
}

.forging-hero h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    color: #F28528;
    margin: 0;
}

.forging-intro {
    padding: 48px 0 120px;
}

.forging-intro-text {
    font-size: 20px;
    line-height: 1.45;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 48px;
    max-width: 1152px;
}

.forging-intro-image {
    width: 100%;
    max-width: 1152px;
    margin: 0 auto;
}

.forging-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.forging-feature-dark {
    padding: 120px 0;
    background: rgba(47, 54, 64, 0.85);
}

.forging-feature-dark h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
}

.forging-feature-intro {
    font-size: 18px;
    line-height: 1.45;
    color: #fff;
    margin-bottom: 24px;
    max-width: 1163px;
}

.forging-feature-list {
    list-style-type: disc;
    padding-left: 30px;
    margin: 0;
}

.forging-feature-list li {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 0;
}

.forging-feature-list li::marker {
    color: #F28528;
}

.forging-materials {
    padding: 130px 0 130px;
}

.forging-materials-content {
    display: flex;
    gap: 64px;
    align-items: center;
}

.forging-materials-image {
    flex: 0 0 350px;
}

.forging-materials-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.forging-materials-text {
    flex: 1;
    max-width: 723px;
}

.forging-materials-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #61687A;
    margin-bottom: 24px;
}

.forging-materials-list {
    list-style-type: disc;
    padding-left: calc(1.5 * 1 * var(--list-marker-font-size, 20px));
    margin: 0;
}

.forging-materials-list li {
    color: rgba(0, 0, 0, 0.55);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 0;
}

.forging-materials-list li::marker {
    color: #61687A;
}

.forging-materials-list .orange-highlight {
    color: #F28528;
    font-weight: 700;
}

.forging-products {
    padding: 160px 0 120px;
    background: rgba(47, 54, 64, 0.85);
}

.forging-products h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
}

.forging-products-list {
    list-style-type: disc;
    padding-left: 30px;
    margin: 0 0 60px 0;
    max-width: 1043px;
}

.forging-products-list li {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.45;
    margin-bottom: 0;
}

.forging-products-list li::marker {
    color: #F28528;
}

.forging-products-list li strong {
    color: #fff;
    font-weight: 600;
}

.forging-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.forging-cta-buttons .btn-primary {
    background: #F28528;
    color: #fff;
}

.forging-cta-buttons .btn-primary:hover {
    background: #d97520;
}

.forging-cta-buttons .btn-secondary {
    color: #fff;
    border-color: #F28528;
}

.forging-cta-buttons .btn-secondary:hover {
    background: #F28528;
    color: #fff;
}

/* Forging Page Responsive */
@media (max-width: 768px) {
    .forging-hero .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .forging-hero h1 {
        font-size: 36px;
    }

    .forging-intro-text {
        font-size: 18px;
    }

    .forging-feature-dark h2 {
        font-size: 28px;
    }

    .forging-materials-content {
        flex-direction: column;
        gap: 32px;
    }

    .forging-materials-image {
        flex: 1;
        max-width: 100%;
    }

    .forging-products h2 {
        font-size: 28px;
    }

    .forging-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .forging-cta-buttons .btn-primary,
    .forging-cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Forming Page Styles */
.forming-hero {
    padding: 79px 0 0;
    background: #fff;
}

.forming-hero .container {
    padding-left: 58px;
    padding-right: 120px;
}

.forming-hero .breadcrumb {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #61687A;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.forming-hero .breadcrumb:hover {
    color: #F28528;
}

.forming-hero h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    color: #F28528;
    margin: 0;
}

.forming-intro {
    padding: 48px 0 120px;
}

.forming-intro-text {
    font-size: 20px;
    line-height: 1.45;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 48px;
    max-width: 1152px;
}

.forming-intro-image {
    width: 100%;
    max-width: 1152px;
    margin: 0 auto;
}

.forming-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.forming-feature-dark {
    padding: 120px 0;
    background: rgba(47, 54, 64, 0.85);
}

.forming-feature-dark h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
}

.forming-feature-intro {
    font-size: 18px;
    line-height: 1.45;
    color: #fff;
    margin-bottom: 24px;
    max-width: 1163px;
}

.forming-feature-list {
    list-style-type: disc;
    padding-left: 30px;
    margin: 0;
}

.forming-feature-list li {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 0;
}

.forming-feature-list li::marker {
    color: #F28528;
}

.forming-materials {
    padding: 51px 0 40px;
}

.forming-materials-content {
    display: flex;
    gap: 64px;
    align-items: center;
}

.forming-materials-image {
    flex: 0 0 350px;
}

.forming-materials-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.forming-materials-text {
    flex: 1;
    max-width: 683px;
}

.forming-materials-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #61687A;
    margin-bottom: 24px;
}

.forming-materials-list {
    list-style-type: disc;
    padding-left: calc(1.5 * 1 * var(--list-marker-font-size, 20px));
    margin: 0;
}

.forming-materials-list li {
    color: rgba(0, 0, 0, 0.55);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 0;
}

.forming-materials-list li::marker {
    color: #61687A;
}

.forming-materials-list .orange-highlight {
    color: #F28528;
    font-weight: 600;
}

.forming-products {
    padding: 40px 0 120px;
    background: rgba(47, 54, 64, 0.85);
}

.forming-products-content {
    display: flex;
    gap: 22px;
    align-items: center;
    margin-bottom: 60px;
}

.forming-products-text {
    flex: 1;
    max-width: 635px;
}

.forming-products-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
}

.forming-products-list {
    list-style-type: disc;
    padding-left: 30px;
    margin: 0;
}

.forming-products-list li {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 0;
}

.forming-products-list li::marker {
    color: #F28528;
}

.forming-products-image {
    flex: 0 0 491px;
}

.forming-products-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.forming-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.forming-cta-buttons .btn-primary {
    background: #F28528;
    color: #fff;
}

.forming-cta-buttons .btn-primary:hover {
    background: #d97520;
}

.forming-cta-buttons .btn-secondary {
    color: #fff;
    border-color: #F28528;
}

.forming-cta-buttons .btn-secondary:hover {
    background: #F28528;
    color: #fff;
}

/* Forming Page Responsive */
@media (max-width: 768px) {
    .forming-hero .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .forming-hero h1 {
        font-size: 36px;
    }

    .forming-intro-text {
        font-size: 18px;
    }

    .forming-feature-dark h2 {
        font-size: 28px;
    }

    .forming-materials-content {
        flex-direction: column;
        gap: 32px;
    }

    .forming-materials-image {
        flex: 1;
        max-width: 100%;
    }

    .forming-products-content {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .forming-products-image {
        flex: 1;
        max-width: 100%;
    }

    .forming-products h2 {
        font-size: 28px;
    }

    .forming-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .forming-cta-buttons .btn-primary,
    .forming-cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Machining Page Styles */
.machining-hero {
    padding: 79px 0 0;
    background: #fff;
}

.machining-hero .container {
    padding-left: 58px;
    padding-right: 120px;
}

.machining-hero .breadcrumb {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #61687A;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.machining-hero .breadcrumb:hover {
    color: #F28528;
}

.machining-hero h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    color: #F28528;
    margin: 0;
}

.machining-intro {
    padding: 48px 0 120px;
}

.machining-intro-text {
    font-size: 20px;
    line-height: 1.45;
    color: rgba(47, 54, 64, 0.85);
    margin-bottom: 48px;
    max-width: 1152px;
}

.machining-intro-image {
    width: 100%;
    max-width: 1152px;
    margin: 0 auto;
}

.machining-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.machining-feature-dark {
    padding: 120px 0;
    background: rgba(47, 54, 64, 0.85);
}

.machining-feature-dark h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
}

.machining-feature-intro {
    font-size: 18px;
    line-height: 1.45;
    color: #fff;
    margin-bottom: 24px;
    max-width: 1163px;
}

.machining-feature-intro-hp {
    font-size: 18px;
    line-height: 1.45;
    color: #fff;
    margin-bottom: 24px;
    max-width: 1163px;
}

.machining-feature-list {
    list-style-type: disc;
    padding-left: 30px;
    margin: 0;
}

.machining-feature-list li {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 0;
}

.machining-feature-list li::marker {
    color: #F28528;
}

.machining-materials {
    padding: 130px 0 130px;
}

.machining-materials-content {
    display: flex;
    gap: 64px;
    align-items: center;
}

.machining-materials-image {
    flex: 0 0 348.5px;
}

.machining-materials-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.machining-materials-text {
    flex: 1;
    max-width: 723px;
}

.machining-materials-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(47, 54, 64, 0.85);
    margin-bottom: 24px;
}

.machining-materials-list {
    list-style-type: disc;
    padding-left: calc(1.5 * 1 * var(--list-marker-font-size, 20px));
    margin: 0;
}

.machining-materials-list li {
    color: rgba(0, 0, 0, 0.55);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 0;
}

.machining-materials-list li::marker {
    color: #61687A;
}

.machining-materials-list .orange-highlight {
    color: #F28528;
    font-weight: 700;
}

.machining-products {
    padding: 80px 0 10px;
}

.machining-products-content {
    display: flex;
    gap: 107px;
    align-items: center;
}

.machining-products-image {
    flex: 0 0 320px;
}

.machining-products-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.machining-products-text {
    flex: 1;
    max-width: 604px;
}

.machining-products-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(47, 54, 64, 0.85);
    margin-bottom: 24px;
}

.machining-products-list {
    list-style-type: disc;
    padding-left: 30px;
    margin: 0;
}

.machining-products-list li {
    color: #61687A;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 0;
}

.machining-products-list li::marker {
    color: #61687A;
}

.machining-cta {
    padding: 100px 0 120px;
}

.machining-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.machining-cta-buttons .btn-primary {
    background: #F28528;
    color: #fff;
}

.machining-cta-buttons .btn-primary:hover {
    background: #d97520;
}

.machining-cta-buttons .btn-secondary {
    color: rgba(47, 54, 64, 0.86);
    border-color: #F28528;
}

.machining-cta-buttons .btn-secondary:hover {
    background: #F28528;
    color: #fff;
}

/* Machining Page Responsive */
@media (max-width: 768px) {
    .machining-hero .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .machining-hero h1 {
        font-size: 36px;
    }

    .machining-intro-text {
        font-size: 18px;
    }

    .machining-feature-dark h2 {
        font-size: 28px;
    }

    .machining-materials-content {
        flex-direction: column;
        gap: 32px;
    }

    .machining-materials-image {
        flex: 1;
        max-width: 100%;
    }

    .machining-products-content {
        flex-direction: column;
        gap: 32px;
    }

    .machining-products-image {
        flex: 1;
        max-width: 100%;
    }

    .machining-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .machining-cta-buttons .btn-primary,
    .machining-cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Additive Manufacturing Page Styles */
.additive-hero {
    padding: 79px 0 0;
    background: #fff;
}

.additive-hero .container {
    padding-left: 58px;
    padding-right: 120px;
}

.additive-hero .breadcrumb {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #61687A;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.additive-hero .breadcrumb:hover {
    color: #F28528;
}

.additive-hero h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    color: #F28528;
    margin: 0;
}

.additive-intro {
    padding: 48px 0 120px;
}

.additive-intro-text {
    font-size: 20px;
    line-height: 1.45;
    color: rgba(47, 54, 64, 0.85);
    margin-bottom: 48px;
    max-width: 1152px;
}

.additive-intro-image {
    width: 100%;
    max-width: 1152px;
    margin: 0 auto;
}

.additive-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.additive-feature-dark {
    padding: 120px 0;
    background: rgba(47, 54, 64, 0.85);
}

.additive-feature-dark h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
}

.additive-feature-intro {
    font-size: 18px;
    line-height: 1.45;
    color: #fff;
    margin-bottom: 24px;
    max-width: 1163px;
}

.additive-feature-list {
    list-style-type: disc;
    padding-left: 30px;
    margin: 0;
}

.additive-feature-list li {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 0;
}

.additive-feature-list li::marker {
    color: #F28528;
}

.additive-materials {
    padding: 130px 0 130px;
}

.additive-materials-content {
    display: flex;
    gap: 64px;
    align-items: center;
}

.additive-materials-image {
    flex: 0 0 348.5px;
}

.additive-materials-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.additive-materials-text {
    flex: 1;
    max-width: 723px;
}

.additive-materials-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(47, 54, 64, 0.85);
    margin-bottom: 24px;
}

.additive-materials-list {
    list-style-type: disc;
    padding-left: calc(1.5 * 1 * var(--list-marker-font-size, 20px));
    margin: 0;
}

.additive-materials-list li {
    color: rgba(0, 0, 0, 0.55);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 0;
}

.additive-materials-list li::marker {
    color: #61687A;
}

.additive-materials-list .orange-highlight {
    color: #F28528;
    font-weight: 700;
}

.additive-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
}

.additive-cta-buttons .btn-primary {
    background: #F28528;
    color: #fff;
}

.additive-cta-buttons .btn-primary:hover {
    background: #d97520;
}

.additive-cta-buttons .btn-secondary {
    color: #fff;
    border-color: #F28528;
}

.additive-cta-buttons .btn-secondary:hover {
    background: #F28528;
    color: #fff;
}

/* Additive Manufacturing Page Responsive */
@media (max-width: 768px) {
    .additive-hero .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .additive-hero h1 {
        font-size: 36px;
    }

    .additive-intro-text {
        font-size: 18px;
    }

    .additive-feature-dark h2 {
        font-size: 28px;
    }

    .additive-materials-content {
        flex-direction: column;
        gap: 32px;
    }

    .additive-materials-image {
        flex: 1;
        max-width: 100%;
    }

    .additive-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .additive-cta-buttons .btn-primary,
    .additive-cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Special Processes Page Styles */
.special-hero {
    padding: 79px 0 0;
    background: #fff;
}

.special-hero .container {
    padding-left: 58px;
    padding-right: 120px;
}

.special-hero .breadcrumb {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #61687A;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.special-hero .breadcrumb:hover {
    color: #F28528;
}

.special-hero h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    color: #F28528;
    margin: 0;
}

.special-intro {
    padding: 48px 0 120px;
}

.special-intro-text {
    font-size: 20px;
    line-height: 1.45;
    color: rgba(47, 54, 64, 0.85);
    margin-bottom: 48px;
    max-width: 1152px;
}

.special-intro-image {
    width: 100%;
    max-width: 1152px;
    margin: 0 auto;
}

.special-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.special-feature-dark {
    padding: 120px 0;
    background: rgba(47, 54, 64, 0.85);
}

.special-feature-dark h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
}

.special-feature-intro {
    font-size: 18px;
    line-height: 1.45;
    color: #fff;
    margin-bottom: 24px;
    max-width: 1163px;
}

.special-feature-list {
    list-style-type: disc;
    padding-left: 30px;
    margin: 0;
}

.special-feature-list li {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 0;
}

.special-feature-list li::marker {
    color: #F28528;
}

.special-applications {
    padding: 130px 0 130px;
}

.special-applications-content {
    display: flex;
    gap: 64px;
    align-items: center;
}

.special-applications-image {
    flex: 0 0 348.5px;
}

.special-applications-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.special-applications-text {
    flex: 1;
    max-width: 723px;
}

.special-applications-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(47, 54, 64, 0.85);
    margin-bottom: 24px;
}

.special-applications-list {
    list-style-type: disc;
    padding-left: calc(1.5 * 1 * var(--list-marker-font-size, 20px));
    margin: 0;
}

.special-applications-list li {
    color: rgba(0, 0, 0, 0.55);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 0;
}

.special-applications-list li::marker {
    color: #61687A;
}

.special-benefits {
    padding: 51px 0 120px;
}

.special-benefits-content {
    display: flex;
    gap: 64px;
    align-items: center;
    margin-bottom: 60px;
}

.special-benefits-image {
    flex: 0 0 348.5px;
}

.special-benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.special-benefits-text {
    flex: 1;
    max-width: 723px;
}

.special-benefits-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(47, 54, 64, 0.85);
    margin-bottom: 24px;
}

.special-benefits-list {
    list-style-type: disc;
    padding-left: calc(1.5 * 1 * var(--list-marker-font-size, 20px));
    margin: 0;
}

.special-benefits-list li {
    color: rgba(0, 0, 0, 0.55);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 0;
}

.special-benefits-list li::marker {
    color: #61687A;
}

.special-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.special-cta-buttons .btn-primary {
    background: #F28528;
    color: #fff;
}

.special-cta-buttons .btn-primary:hover {
    background: #d97520;
}

.special-cta-buttons .btn-secondary {
    color: rgba(47, 54, 64, 0.86);
    border-color: #F28528;
}

.special-cta-buttons .btn-secondary:hover {
    background: #F28528;
    color: #fff;
}

/* Special Processes Page Responsive */
@media (max-width: 768px) {
    .special-hero .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .special-hero h1 {
        font-size: 36px;
    }

    .special-intro-text {
        font-size: 18px;
    }

    .special-feature-dark h2 {
        font-size: 28px;
    }

    .special-applications-content {
        flex-direction: column;
        gap: 32px;
    }

    .special-applications-image {
        flex: 1;
        max-width: 100%;
    }

    .special-benefits-content {
        flex-direction: column;
        gap: 32px;
    }

    .special-benefits-image {
        flex: 1;
        max-width: 100%;
    }

    .special-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .special-cta-buttons .btn-primary,
    .special-cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Inspection Page Styles */
.inspection-hero {
    padding: 79px 0 0;
    background: #fff;
}

.inspection-hero .container {
    padding-left: 58px;
    padding-right: 120px;
}

.inspection-hero .breadcrumb {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #61687A;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.inspection-hero .breadcrumb:hover {
    color: #F28528;
}

.inspection-hero h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    color: #F28528;
    margin: 0;
}

.inspection-intro {
    padding: 48px 0 120px;
}

.inspection-intro-text {
    font-size: 20px;
    line-height: 1.45;
    color: rgba(47, 54, 64, 0.85);
    margin-bottom: 48px;
    max-width: 1152px;
}

.inspection-intro-image {
    width: 100%;
    max-width: 1152px;
    margin: 0 auto;
}

.inspection-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.inspection-feature-dark {
    padding: 120px 0;
    background: rgba(47, 54, 64, 0.85);
}

.inspection-feature-dark h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
}

.inspection-feature-intro {
    font-size: 18px;
    line-height: 1.45;
    color: #fff;
    margin-bottom: 24px;
    max-width: 1163px;
}

.inspection-feature-list {
    list-style-type: disc;
    padding-left: 30px;
    margin: 0;
}

.inspection-feature-list li {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 0;
}

.inspection-feature-list li::marker {
    color: #F28528;
}

.inspection-materials {
    padding: 130px 0 130px;
}

.inspection-materials-content {
    display: flex;
    gap: 64px;
    align-items: center;
}

.inspection-materials-image {
    flex: 0 0 348.5px;
}

.inspection-materials-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.inspection-materials-text {
    flex: 1;
    max-width: 723px;
}

.inspection-materials-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(47, 54, 64, 0.85);
    margin-bottom: 24px;
}

.inspection-materials-list {
    list-style-type: disc;
    padding-left: calc(1.5 * 1 * var(--list-marker-font-size, 20px));
    margin: 0;
}

.inspection-materials-list li {
    color: rgba(0, 0, 0, 0.55);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 0;
}

.inspection-materials-list li::marker {
    color: #61687A;
}

.inspection-materials-list .orange-highlight {
    color: #F28528;
    font-weight: 700;
}

.inspection-applications {
    padding: 130px 0 130px;
}

.inspection-applications-content {
    display: flex;
    gap: 64px;
    align-items: center;
}

.inspection-applications-image {
    flex: 0 0 348.5px;
}

.inspection-applications-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.inspection-applications-text {
    flex: 1;
    max-width: 723px;
}

.inspection-applications-text h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(47, 54, 64, 0.85);
    margin-bottom: 24px;
}

.inspection-applications-list {
    list-style-type: disc;
    padding-left: calc(1.5 * 1 * var(--list-marker-font-size, 20px));
    margin: 0;
}

.inspection-applications-list li {
    color: rgba(0, 0, 0, 0.55);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 0;
}

.inspection-applications-list li::marker {
    color: #61687A;
}

.inspection-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
}

.inspection-cta-buttons .btn-primary {
    background: #F28528;
    color: #fff;
}

.inspection-cta-buttons .btn-primary:hover {
    background: #d97520;
}

/* Inspection Page Responsive */
@media (max-width: 768px) {
    .inspection-hero .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .inspection-hero h1 {
        font-size: 36px;
    }

    .inspection-intro-text {
        font-size: 18px;
    }

    .inspection-feature-dark h2 {
        font-size: 28px;
    }

    .inspection-materials-content {
        flex-direction: column;
        gap: 32px;
    }

    .inspection-materials-image {
        flex: 1;
        max-width: 100%;
    }

    .inspection-applications-content {
        flex-direction: column;
        gap: 32px;
    }

    .inspection-applications-image {
        flex: 1;
        max-width: 100%;
    }

    .inspection-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .inspection-cta-buttons .btn-primary {
        width: 100%;
        text-align: center;
    }
}
