        /* Site Header Navigation */
        .site-header-nav {
            background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
            border-bottom: 3px solid #CC0000;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #FFFFFF;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.25rem;
            font-family: 'Roboto', sans-serif;
            transition: all 0.3s ease;
        }

        .nav-brand:hover {
            color: #CC0000;
            transform: translateY(-1px);
        }

        .nav-brand i {
            color: #CC0000;
            font-size: 1.5rem;
        }

        .nav-back-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #E0E0E0;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            font-family: 'Roboto', sans-serif;
            padding: 0.5rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.05);
        }

        .nav-back-link:hover {
            color: #FFFFFF;
            background: rgba(204, 0, 0, 0.1);
            border-color: #CC0000;
            transform: translateY(-1px);
        }

        .nav-back-link i {
            font-size: 0.85rem;
        }

        /* Wood Plank Dividers - HIDDEN for cleaner design */
        .wood-plank-divider {
            display: none;
        }

        .plank-grain {
            display: none;
        }

        .plank-texture {
            display: none;
        }

        /* Remove wood accent from sections */
        .section::after {
            display: none;
        }
    </style>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', 'Arial', sans-serif;
            line-height: 1.7;
            color: #333;
            background:
                radial-gradient(ellipse at center, rgba(139,69,19,0.08) 0%, rgba(160,82,45,0.12) 30%, rgba(101,67,33,0.06) 60%, rgba(205,133,63,0.03) 100%),
                linear-gradient(45deg, #F5F5F5 0%, #EBEBEB 25%, #F0F0F0 50%, #E8E8E8 75%, #F5F5F5 100%),
                repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(139,69,19,0.02) 20px, rgba(139,69,19,0.02) 21px),
                repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(160,82,45,0.01) 30px, rgba(160,82,45,0.01) 31px);
            background-attachment: fixed;
            min-height: 100vh;
            padding: 0;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* Ensure consistent section alignment */
        .section-wrapper {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* Header Styles */
        header {
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .magazine-cover {
            width: 100%;
            height: 500px;
            position: relative;
            overflow: hidden;
        }

        .cover-image {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            /* Parallax scroll effect */
            transform: translateZ(0);
            will-change: transform;
            /* Use the actual woodshopheader.png image */
            background-image: url('woodshopheader.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            background-repeat: no-repeat;
        }

        .cover-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 51, 102, 0.6) 0%, rgba(0, 40, 80, 0.7) 50%, rgba(0, 51, 102, 0.6) 100%);
            z-index: 1;
        }

        .cover-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            padding: 2rem;
            text-align: center;
            opacity: 0;
            animation: fadeInText 2s ease-out 0.5s forwards;
        }

        .magazine-title {
            font-size: 4.5rem;
            font-weight: 700;
            color: #FFFFFF;
            text-shadow: 4px 4px 8px rgba(0,0,0,0.8), 0 0 30px rgba(0,51,102,0.5);
            margin-bottom: 1rem;
            font-family: 'Roboto', sans-serif;
            letter-spacing: 3px;
            text-transform: uppercase;
            line-height: 1.1;
        }

        .magazine-tagline {
            font-size: 1.8rem;
            font-weight: 300;
            color: #FFFFFF;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            margin-bottom: 3rem;
            font-family: 'Roboto', sans-serif;
            letter-spacing: 1px;
        }


        .publication-banner {
            background: linear-gradient(135deg, #003366 0%, #002244 100%);
            color: white;
            padding: 3rem 0;
            text-align: center;
            position: relative;
            z-index: 3;
            box-shadow: 0 10px 40px rgba(0, 51, 102, 0.2);
        }

        /* Smooth transition from header to content */
        .publication-banner::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            height: 50px;
            background: linear-gradient(180deg, rgba(0, 51, 102, 0.1) 0%, transparent 100%);
            pointer-events: none;
        }

        .banner-text {
            font-size: 1.2rem;
            line-height: 1.6;
            max-width: 1000px;
            margin: 0 auto;
            font-weight: 400;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
            font-family: 'Roboto', sans-serif;
            padding: 0 2rem;
        }

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

        /* Parallax scroll effect */
        @media (prefers-reduced-motion: no-preference) {
            .cover-image {
                transform: translateZ(0) scale(1.1);
                transition: transform 0.1s ease-out;
            }
        }

        .banner-text {
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto;
            font-weight: 500;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        /* Main Content */
        main {
            padding: 0;
        }

        .section {
            margin-bottom: 0;
            padding: 5rem 0;
            background: rgba(255, 255, 255, 0.98);
            border-radius: 0;
            box-shadow: none;
            border: none;
            position: relative;
        }

        /* Inner section content wrapper for consistent alignment */
        .section-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* Add tiny transition space between sections */
        main .section:first-child {
            margin-top: 1.5rem;
        }

        .section + .machinery-hero,
        .machinery-hero + .section {
            margin-top: 1.5rem;
        }

        /* Add subtle gradient transitions between sections */
        .section:nth-child(odd) {
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
        }

        .section:nth-child(even) {
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        }

        /* First section after header - smooth transition */
        main .section:first-child {
            background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 50%, #f8f9fa 100%);
            padding-top: 6rem;
            box-shadow: 0 -20px 40px rgba(0, 51, 102, 0.05);
        }

        .section h2 {
            color: #003366;
            margin-bottom: 2.5rem;
            padding-bottom: 25px;
            font-size: 2.2rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            position: relative;
        }

        .section h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #CC0000 0%, #003366 100%);
            border-radius: 2px;
        }

        /* Signup Form */
        .signup-card {
            max-width: 700px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.98);
            border-radius: 8px;
            border: 1px solid rgba(139, 69, 19, 0.2);
            box-shadow: 0 6px 24px rgba(0,0,0,0.1);
            padding: 3rem 2.5rem;
            position: relative;
        }

        .signup-title {
            font-size: 1.4rem;
            color: #003366;
            font-weight: 500;
            margin-bottom: 2rem;
            text-align: center;
            font-family: 'Roboto', sans-serif;
            line-height: 1.4;
        }

        .signup-form {
            max-width: 100%;
            margin: 0;
            background: transparent;
            padding: 0;
            border: none;
            box-shadow: none;
        }

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

        .form-row .form-group:last-child {
            grid-column: span 1;
        }

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

        .form-group label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
            font-weight: 500;
            color: #003366;
            font-size: 0.95rem;
            font-family: 'Roboto', sans-serif;
        }

        .form-group label i {
            color: #CC0000;
            width: 16px;
            font-size: 0.9rem;
        }

        input[type="email"],
        input[type="text"] {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 2px solid #E8E8E8;
            border-radius: 6px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.95);
            transition: all 0.3s ease;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }

        input[type="email"]:focus,
        input[type="text"]:focus {
            outline: none;
            border-color: #003366;
            box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1), 0 0 20px rgba(0, 51, 102, 0.15);
            background: white;
            transform: translateY(-1px);
        }

        input[type="email"]:hover,
        input[type="text"]:hover {
            border-color: #003366;
            box-shadow: 0 0 0 2px rgba(0, 51, 102, 0.05);
        }

        /* Signup Button */
        .signup-btn {
            width: 100%;
            background: linear-gradient(135deg, #CC0000 0%, #AA0000 100%);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Roboto', sans-serif;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .signup-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(204, 0, 0, 0.4);
            background: linear-gradient(135deg, #AA0000 0%, #CC0000 100%);
        }

        .signup-btn:active {
            transform: translateY(0);
            box-shadow: 0 4px 15px rgba(204, 0, 0, 0.3);
        }

        .signup-btn i {
            font-size: 1rem;
        }

        /* Form validation error states */
        .form-group.error {
            animation: shake 0.6s ease-in-out;
        }

        .form-group.error label {
            color: #CC0000;
        }

        .form-group.error label i {
            color: #CC0000;
        }

        .form-group.error input {
            border-color: #CC0000 !important;
            box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1), 0 0 15px rgba(204, 0, 0, 0.2) !important;
            background: rgba(255, 248, 248, 0.95) !important;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-3px); }
            20%, 40%, 60%, 80% { transform: translateX(3px); }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
            to {
                opacity: 0;
                transform: translateX(-50%) translateY(-20px);
            }
        }

        /* Success state */
        .form-group.success input {
            border-color: #27AE60 !important;
            box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1) !important;
        }

        .btn {
            background: linear-gradient(135deg, #CC0000 0%, #AA0000 100%);
            color: white;
            padding: 0.875rem 2.25rem;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Roboto', sans-serif;
            letter-spacing: 0.5px;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(204, 0, 0, 0.4);
            background: linear-gradient(135deg, #AA0000 0%, #CC0000 100%);
        }

        /* Machinery Inventory Section - COMPLETE REDESIGN */
        .machinery-hero {
            width: 100%;
            margin: 0;
            padding: 5rem 0;
            position: relative;
            background: linear-gradient(135deg, #001a33 0%, #003366 50%, #002244 100%);
            overflow: hidden;
        }

        /* Animated background pattern */
        .machinery-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(204, 0, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
            animation: bgShift 15s ease-in-out infinite;
        }

        @keyframes bgShift {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.1); }
        }

        .machinery-content {
            position: relative;
            z-index: 2;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .machinery-header {
            text-align: center;
            margin-bottom: 3rem;
            color: white;
        }

        .machinery-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: white;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            letter-spacing: -0.5px;
        }

        .machinery-header h2::after {
            display: none;
        }

        .machinery-header p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .machinery-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .stat-box {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .stat-box:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(204, 0, 0, 0.5);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #CC0000;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 10px rgba(204, 0, 0, 0.3);
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

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

        .category-card {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 16px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #CC0000, #003366);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            border-color: rgba(204, 0, 0, 0.3);
        }

        .category-card:hover::before {
            transform: scaleX(1);
        }

        .category-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.25rem;
            background: linear-gradient(135deg, #003366, #002244);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            transition: all 0.4s ease;
            box-shadow: 0 8px 20px rgba(0, 51, 102, 0.3);
        }

        .category-card:hover .category-icon {
            background: linear-gradient(135deg, #CC0000, #AA0000);
            transform: rotate(360deg) scale(1.1);
        }

        .category-card h3 {
            font-size: 1.3rem;
            color: #003366;
            margin-bottom: 0.75rem;
            font-weight: 600;
        }

        .category-card p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 0;
        }

        .category-count {
            display: none;
        }

        .machinery-cta {
            text-align: center;
            margin-top: 3rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.25rem 2.5rem;
            background: linear-gradient(135deg, #CC0000 0%, #AA0000 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(204, 0, 0, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(204, 0, 0, 0.6);
            background: linear-gradient(135deg, #AA0000 0%, #CC0000 100%);
        }

        .cta-button i {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .cta-button:hover i {
            transform: translateX(5px);
        }

        /* Remove old machinery styles */
        .machinery-divider-top,
        .machinery-divider-bottom,
        .machinery-icon,
        .machinery-hero-card,
        .machinery-hero-image,
        .machinery-hero-overlay,
        .machinery-hero-content,
        .hero-button-container,
        .hero-button {
            display: none;
        }

        /* Old animated machinery elements - hide all */
        .oliver-table-saw,
        .saw-table,
        .saw-blade-large,
        .saw-fence,
        .saw-base,
        .scmi-sliding-saw,
        .sliding-table,
        .scmi-blade,
        .scmi-fence,
        .scmi-frame,
        .wood-shaper,
        .shaper-body,
        .shaper-spindle,
        .shaper-table,
        .workbench-station,
        .bench-top,
        .tool-rack,
        .clamp-set,
        .dust-particles,
        .particle,
        .workshop-lights,
        .light-fixture {
            display: none;
        }

        .machinery-hero-card:hover .machinery-hero-image {
            transform: scale(1.05);
        }

        .machinery-hero-image {
            width: 100%;
            height: 100%;
            position: relative;
            background:
                /* Industrial workshop floor */
                linear-gradient(45deg, #4A4A4A 0%, #606060 25%, #4A4A4A 50%, #707070 75%, #4A4A4A 100%),
                /* Concrete texture overlay */
                radial-gradient(circle at 25% 25%, rgba(64,64,64,0.3) 1px, transparent 1px),
                radial-gradient(circle at 75% 75%, rgba(96,96,96,0.2) 1px, transparent 1px);
            background-size: 40px 40px, 60px 60px, 80px 80px;
            transition: transform 0.6s ease;
            overflow: hidden;
        }

        /* Oliver Table Saw - Large industrial saw */
        .oliver-table-saw {
            position: absolute;
            bottom: 15%;
            left: 10%;
            width: 280px;
            height: 180px;
        }

        .saw-table {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: linear-gradient(90deg, #8B4513 0%, #A0522D 20%, #CD853F 50%, #A0522D 80%, #8B4513 100%);
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }

        .saw-blade-large {
            position: absolute;
            bottom: 45px;
            left: 50%;
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, #E8E8E8 20%, #CCCCCC 50%, #AAAAAA 80%, #888888 100%);
            border-radius: 50%;
            border: 6px solid #666;
            transform: translateX(-50%);
            animation: rotate 8s linear infinite;
            box-shadow: 0 2px 8px rgba(0,0,0,0.4);
        }

        .saw-blade-large::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            background: #666;
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        .saw-fence {
            position: absolute;
            bottom: 40px;
            right: 20px;
            width: 120px;
            height: 25px;
            background: linear-gradient(90deg, #666 0%, #888 50%, #666 100%);
            border-radius: 2px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .saw-base {
            position: absolute;
            bottom: 0;
            left: 20%;
            right: 20%;
            height: 60px;
            background: linear-gradient(180deg, #444 0%, #666 50%, #444 100%);
            border-radius: 4px 4px 0 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }

        /* SCMI Sliding Table Saw */
        .scmi-sliding-saw {
            position: absolute;
            top: 20%;
            right: 8%;
            width: 320px;
            height: 160px;
        }

        .sliding-table {
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            height: 35px;
            background: linear-gradient(90deg, #D2B48C 0%, #CD853F 30%, #8B4513 70%, #D2B48C 100%);
            border-radius: 4px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.25);
        }

        .scmi-blade {
            position: absolute;
            top: 60px;
            left: 50%;
            width: 60px;
            height: 60px;
            background: radial-gradient(circle, #F5F5F5 15%, #E0E0E0 45%, #B8B8B8 75%, #909090 100%);
            border-radius: 50%;
            border: 4px solid #555;
            transform: translateX(-50%);
            animation: rotate 6s linear infinite reverse;
            box-shadow: 0 2px 6px rgba(0,0,0,0.3);
        }

        .scmi-fence {
            position: absolute;
            top: 55px;
            right: 15px;
            width: 100px;
            height: 20px;
            background: linear-gradient(90deg, #777 0%, #999 50%, #777 100%);
            border-radius: 2px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }

        .scmi-frame {
            position: absolute;
            bottom: 0;
            left: 10%;
            right: 10%;
            height: 45px;
            background: linear-gradient(180deg, #555 0%, #777 40%, #555 100%);
            border-radius: 4px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.25);
        }

        /* Wood Shaper */
        .wood-shaper {
            position: absolute;
            top: 25%;
            left: 15%;
            width: 140px;
            height: 100px;
        }

        .shaper-body {
            position: absolute;
            bottom: 0;
            left: 10px;
            right: 10px;
            height: 50px;
            background: linear-gradient(180deg, #666 0%, #888 50%, #666 100%);
            border-radius: 4px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.2);
        }

        .shaper-spindle {
            position: absolute;
            top: 15px;
            left: 50%;
            width: 8px;
            height: 35px;
            background: #444;
            transform: translateX(-50%);
            border-radius: 4px;
        }

        .shaper-table {
            position: absolute;
            top: 50px;
            left: 0;
            right: 0;
            height: 25px;
            background: linear-gradient(90deg, #A0522D 0%, #CD853F 50%, #A0522D 100%);
            border-radius: 2px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.15);
        }

        /* Workbench Station */
        .workbench-station {
            position: absolute;
            bottom: 20%;
            right: 20%;
            width: 200px;
            height: 80px;
        }

        .bench-top {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 20px;
            background: linear-gradient(90deg, #8B4513 0%, #A0522D 25%, #CD853F 50%, #A0522D 75%, #8B4513 100%);
            border-radius: 2px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .tool-rack {
            position: absolute;
            top: 25px;
            right: 10px;
            width: 60px;
            height: 45px;
            background: linear-gradient(45deg, #666 0%, #888 50%, #666 100%);
            border-radius: 2px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.15);
        }

        .clamp-set {
            position: absolute;
            top: 30px;
            left: 20px;
            width: 40px;
            height: 30px;
            background: linear-gradient(45deg, #444 0%, #666 50%, #444 100%);
            border-radius: 2px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }

        /* Dust particles for "in action" effect */
        .dust-particles {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: rgba(222, 184, 135, 0.6);
            border-radius: 50%;
            animation: float 4s ease-in-out infinite;
        }

        .particle-1 {
            top: 30%;
            left: 25%;
            animation-delay: 0s;
        }

        .particle-2 {
            top: 35%;
            left: 75%;
            animation-delay: 1s;
        }

        .particle-3 {
            top: 60%;
            left: 20%;
            animation-delay: 2s;
        }

        .particle-4 {
            top: 50%;
            left: 80%;
            animation-delay: 3s;
        }

        /* Workshop lighting */
        .workshop-lights {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
        }

        .light-fixture {
            position: absolute;
            top: 10px;
            width: 60px;
            height: 8px;
            background: linear-gradient(90deg, #DDD 0%, #FFF 50%, #DDD 100%);
            border-radius: 4px;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        }

        .light-fixture::before {
            content: '';
            position: absolute;
            top: -15px;
            left: 50%;
            width: 4px;
            height: 15px;
            background: #CCC;
            transform: translateX(-50%);
        }

        .light-1 { left: 20%; }
        .light-2 { left: 50%; transform: translateX(-50%); }
        .light-3 { right: 20%; }

        .machinery-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg,
                rgba(0, 51, 102, 0.85) 0%,
                rgba(0, 40, 80, 0.75) 50%,
                rgba(0, 51, 102, 0.85) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.6s ease;
        }

        .machinery-hero-card:hover .machinery-hero-overlay {
            background: linear-gradient(135deg,
                rgba(0, 51, 102, 0.7) 0%,
                rgba(0, 40, 80, 0.6) 50%,
                rgba(0, 51, 102, 0.7) 100%);
        }

        .machinery-hero-content {
            text-align: center;
            color: white;
            z-index: 2;
        }

        .machinery-hero-content h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-shadow: 3px 3px 8px rgba(0,0,0,0.8);
            font-family: 'Roboto', sans-serif;
            line-height: 1.2;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-button-container {
            position: relative;
        }

        .hero-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, #CC0000 0%, #AA0000 100%);
            color: white;
            padding: 1.25rem 3rem;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(204, 0, 0, 0.4);
            transition: all 0.4s ease;
            font-family: 'Roboto', sans-serif;
            letter-spacing: 0.5px;
            border: 3px solid rgba(255, 255, 255, 0.2);
            animation: buttonPulse 2s ease-in-out infinite;
        }

        .hero-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 35px rgba(204, 0, 0, 0.6);
            background: linear-gradient(135deg, #AA0000 0%, #CC0000 100%);
        }

        .hero-button i {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .hero-button:hover i {
            transform: translateX(3px);
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes float {
            0%, 100% {
                opacity: 0.3;
                transform: translateY(0) scale(1);
            }
            50% {
                opacity: 0.8;
                transform: translateY(-20px) scale(1.2);
            }
        }

        @keyframes buttonPulse {
            0%, 100% {
                box-shadow: 0 8px 25px rgba(204, 0, 0, 0.4);
            }
            50% {
                box-shadow: 0 8px 25px rgba(204, 0, 0, 0.6), 0 0 30px rgba(204, 0, 0, 0.3);
            }
        }

        /* Advertiser Section */
        .advertiser-section {
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #e8eef5 100%);
            border: none;
            margin: 0;
            padding: 5rem 0;
            border-radius: 0;
            box-shadow: none;
        }

        /* Advertiser section inner content */
        .advertiser-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .advertiser-hero {
            position: relative;
            margin-bottom: 4rem;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem 0;
        }

        /* Secondary hero image variant for advertiser section */
        .advertiser-hero--image {
            min-height: 420px;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 18px 60px rgba(0, 51, 102, 0.18);
        }

        .advertiser-hero-image {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transform: translateZ(0) scale(1.05);
            filter: saturate(1.05) contrast(1.05);
            z-index: 0;
        }

        .advertiser-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 51, 102, 0.65) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(204, 0, 0, 0.35) 100%);
            z-index: 1;
        }

        .target-background {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            z-index: 1;
        }

        .bullseye-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 20px rgba(255, 0, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.2);
            z-index: 3;
        }

        .logo-bullseye {
            text-align: center;
            color: white;
            font-weight: 700;
            font-size: 0.7rem;
            line-height: 1.1;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
            font-family: 'Roboto', sans-serif;
        }

        .target-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            border: 3px solid;
        }

        .target-ring-1 {
            width: 120px;
            height: 120px;
            border-color: #003366;
            background: rgba(0, 51, 102, 0.1);
        }

        .target-ring-2 {
            width: 180px;
            height: 180px;
            border-color: #CC0000;
            background: rgba(204, 0, 0, 0.05);
        }

        .target-ring-3 {
            width: 240px;
            height: 240px;
            border-color: #003366;
            border-style: dashed;
            background: rgba(0, 51, 102, 0.03);
        }

        .target-arrow {
            position: absolute;
            color: #003366;
            font-size: 1.5rem;
            z-index: 2;
        }

        .arrow-north {
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .arrow-east {
            top: 50%;
            right: 10px;
            transform: translateY(-50%);
        }

        .arrow-south {
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .arrow-west {
            top: 50%;
            left: 10px;
            transform: translateY(-50%);
        }

        .advertiser-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 600px;
        }

        .advertiser-hero--image .advertiser-content {
            padding: 2.25rem 1.5rem;
            max-width: 720px;
        }

        .advertiser-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.1;
            font-family: 'Roboto', sans-serif;
        }

        .hit-text {
            color: #003366;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .target-text {
            color: #CC0000;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .advertiser-hero--image .hit-text,
        .advertiser-hero--image .advertiser-subtitle {
            color: #ffffff;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.65);
        }

        .advertiser-hero--image .target-text {
            color: #ff3b3b;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.75);
        }

        .advertiser-subtitle {
            font-size: 1.3rem;
            color: #333;
            font-weight: 400;
            margin: 0;
            line-height: 1.4;
            font-family: 'Roboto', sans-serif;
        }

        .advertiser-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        .option-box {
            max-width: 100%;
        }

        .past-issues-selector {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }

        .issues-dropdown {
            padding: 0.875rem 1rem;
            border: 2px solid rgba(139, 69, 19, 0.2);
            border-radius: 6px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.9);
            font-family: 'Roboto', sans-serif;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .issues-dropdown:focus {
            outline: none;
            border-color: #003366;
            box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
        }

        .issues-dropdown option {
            padding: 0.5rem;
            background: white;
            color: #333;
        }

        .option-box {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 51, 102, 0.1);
            border: 1px solid rgba(0, 51, 102, 0.08);
            transition: all 0.3s ease;
        }

        .option-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 45px rgba(0, 51, 102, 0.18);
            border-color: rgba(0, 51, 102, 0.15);
        }

        .option-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .option-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #003366 0%, #002244 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 51, 102, 0.3);
        }

        .option-box h3 {
            color: #003366;
            font-size: 1.6rem;
            font-weight: 600;
            margin: 0;
            font-family: 'Roboto', sans-serif;
        }

        .option-box p {
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.6;
            font-size: 1rem;
            font-family: 'Roboto', sans-serif;
        }

        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, #CC0000 0%, #AA0000 100%);
            color: white;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            font-family: 'Roboto', sans-serif;
            border: 2px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
        }

        .download-btn:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 20px rgba(204, 0, 0, 0.4);
            background: linear-gradient(135deg, #AA0000 0%, #CC0000 100%);
            animation: downloadBounce 0.6s ease;
        }

        .download-btn i {
            transition: transform 0.3s ease;
        }

        .download-btn:hover i {
            transform: scale(1.2);
        }

        .download-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none !important;
            box-shadow: 0 4px 12px rgba(204, 0, 0, 0.2) !important;
        }

        .download-btn:disabled:hover {
            transform: none !important;
            box-shadow: 0 4px 12px rgba(204, 0, 0, 0.2) !important;
        }


        @keyframes downloadBounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(-2px) scale(1.05);
            }
            40% {
                transform: translateY(-4px) scale(1.08);
            }
            60% {
                transform: translateY(-2px) scale(1.06);
            }
        }

        /* Intersection Observer Animations */
        .fade-up-element {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-up-element.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Success Message Overlay */
        .success-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .success-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .success-message {
            background: linear-gradient(135deg, #003366 0%, #002244 100%);
            color: white;
            padding: 3rem 2rem;
            border-radius: 16px;
            text-align: center;
            max-width: 500px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }

        .success-overlay.show .success-message {
            transform: scale(1);
        }

        .success-message h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            font-family: 'Roboto', sans-serif;
            color: #CC0000;
        }

        .success-message p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            font-family: 'Roboto', sans-serif;
        }

        .success-close {
            background: linear-gradient(135deg, #CC0000 0%, #AA0000 100%);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Roboto', sans-serif;
        }

        .success-close:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(204, 0, 0, 0.4);
        }

        /* Footer - Redesigned */
        footer {
            background: linear-gradient(135deg, #001122 0%, #002244 100%);
            color: white;
            padding: 4rem 0 1rem 0;
            margin-top: 1.5rem;
            position: relative;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto 2rem auto;
            padding: 0 30px;
        }

        /* Footer Cards */
        .footer-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .footer-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #CC0000, #FF3333);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .footer-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(204, 0, 0, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }

        .footer-card:hover::before {
            transform: scaleX(1);
        }

        .card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #CC0000, #FF3333);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            font-size: 1.5rem;
            color: white;
            box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
        }

        .footer-card h3 {
            color: #FFFFFF;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            font-weight: 600;
            font-family: 'Roboto', sans-serif;
        }

        /* Contact Card Styles */
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-email,
        .footer-phone,
        .footer-address {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #E0E0E0;
            text-decoration: none;
            font-size: 1rem;
            padding: 0.75rem;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.03);
            transition: all 0.3s ease;
        }

        .footer-email:hover,
        .footer-phone:hover {
            background: rgba(204, 0, 0, 0.1);
            color: #FFFFFF;
            transform: translateX(4px);
        }

        .footer-email i,
        .footer-phone i,
        .footer-address i {
            color: #CC0000;
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
            flex-shrink: 0;
        }

        .footer-address {
            cursor: default;
        }

        .footer-address span {
            line-height: 1.6;
        }

        /* Quick Links Card Styles */
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-link-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #E0E0E0;
            text-decoration: none;
            font-size: 1rem;
            padding: 1rem;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.03);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .footer-link-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, #CC0000, #FF3333);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .footer-link-item:hover {
            background: rgba(204, 0, 0, 0.1);
            color: #FFFFFF;
            transform: translateX(8px);
        }

        .footer-link-item:hover::before {
            transform: scaleY(1);
        }

        .footer-link-item i:first-child {
            color: #CC0000;
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
            flex-shrink: 0;
        }

        .footer-link-item span {
            flex: 1;
        }

        .link-arrow {
            color: #CC0000;
            font-size: 0.9rem;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .footer-link-item:hover .link-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        /* Legacy footer styles - remove these */
        .footer-section h3,
        .footer-email-link,
        .contact-info,
        .contact-link,
        .footer-section ul,
        .footer-section li,
        .footer-section a {
            /* These are now deprecated */
        }


        /* Footer Branding Section */
        .footer-branding {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
        }

        .branding-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .spinner-container {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gear-spinner {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8B4513;
            animation: gearRotate 3s linear infinite;
            filter: drop-shadow(0 2px 4px rgba(139, 69, 19, 0.3));
        }

        .gear-spinner i {
            font-size: 1.8rem;
            color: #8B4513;
        }

        .branding-text {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .skynet-link {
            color: #E0E0E0;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            transition: color 0.3s;
            font-family: 'Roboto', sans-serif;
        }

        .skynet-link:hover {
            color: #CC0000;
        }

        .copyright {
            color: #B0B0B0;
            font-size: 0.9rem;
            font-weight: 400;
            font-family: 'Roboto', sans-serif;
        }

        @keyframes gearRotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }


        /* Responsive Design */
        /* Tablet Styles */
        @media (max-width: 1024px) {
            .container {
                padding: 0 25px;
            }

            .magazine-title {
                font-size: clamp(2.5rem, 5vw, 4rem);
            }

            .advertiser-title {
                font-size: clamp(2rem, 4vw, 3.5rem);
            }

            .machinery-header h2 {
                font-size: 2.5rem;
            }

            .machinery-categories {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .site-header-nav {
                position: relative;
            }

            .nav-content {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .nav-brand {
                font-size: 1.1rem;
            }

            .nav-back-link {
                font-size: 0.9rem;
                padding: 0.75rem 1.5rem;
            }

            .wood-plank-divider {
                height: 30px;
                margin: 2rem 0;
            }

            .container {
                padding: 0 20px;
            }

            /* Hero Section - Stack Vertically */
            .magazine-cover {
                height: auto;
                min-height: 350px;
                padding: 2rem 0;
            }

            .cover-content {
                position: static;
                transform: none;
                padding: 1rem;
                margin-top: 2rem;
            }

            .magazine-title {
                font-size: clamp(1.8rem, 8vw, 2.5rem);
                margin-bottom: 1rem;
                line-height: 1.2;
            }

            .magazine-tagline {
                font-size: clamp(1rem, 4vw, 1.4rem);
                margin-bottom: 2rem;
            }


            .publication-banner {
                padding: 2rem 0;
            }

            .banner-text {
                font-size: clamp(1rem, 3vw, 1.2rem);
                padding: 0 1rem;
                line-height: 1.5;
            }

            /* Form stacking */
            .signup-form {
                padding: 2rem 1.5rem;
                max-width: 100%;
            }

            .section {
                padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
                margin-bottom: clamp(3rem, 8vw, 5rem);
            }

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

            /* Machinery section */
            .machinery-hero {
                padding: 4rem 1.5rem;
            }

            .machinery-header h2 {
                font-size: 2rem;
            }

            .machinery-header p {
                font-size: 1.1rem;
            }

            .machinery-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .stat-box {
                padding: 1.5rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .machinery-categories {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .cta-button {
                padding: 1.25rem 2.5rem;
                font-size: 1.1rem;
            }

            /* Advertiser section */
            .advertiser-hero {
                min-height: 300px;
                margin-bottom: 3rem;
                padding: 2rem 0;
            }

            .target-background {
                width: 250px;
                height: 250px;
                position: relative;
            }

            .advertiser-content {
                position: static;
                margin-top: 2rem;
                text-align: center;
            }

            .advertiser-title {
                font-size: clamp(2rem, 8vw, 2.8rem);
            }

            .advertiser-subtitle {
                font-size: clamp(1rem, 4vw, 1.2rem);
            }

            .bullseye-center {
                width: 60px;
                height: 60px;
            }

            .logo-bullseye {
                font-size: clamp(0.5rem, 2vw, 0.7rem);
            }

            .target-ring-1 {
                width: 100px;
                height: 100px;
            }

            .target-ring-2 {
                width: 150px;
                height: 150px;
            }

            .target-ring-3 {
                width: 200px;
                height: 200px;
            }

            .target-arrow {
                font-size: clamp(1rem, 4vw, 1.5rem);
            }

            .advertiser-options {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .option-box {
                max-width: 100%;
            }

            .past-issues-selector {
                gap: 0.75rem;
            }

            .issues-dropdown {
                padding: 0.75rem;
                font-size: 0.95rem;
            }

            .option-box {
                padding: clamp(1.5rem, 4vw, 2.5rem);
            }

            .option-header {
                flex-direction: column;
                text-align: center;
                gap: 0.75rem;
            }

            .option-icon {
                width: clamp(50px, 12vw, 60px);
                height: clamp(50px, 12vw, 60px);
                font-size: clamp(1.2rem, 5vw, 1.5rem);
            }

            .option-box h3 {
                font-size: clamp(1.2rem, 5vw, 1.6rem);
            }

            /* Footer */
            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                max-width: none;
            }

            .footer-card {
                padding: 1.5rem;
            }

            .footer-card h3 {
                font-size: clamp(1.2rem, 4vw, 1.5rem);
                margin-bottom: 1.25rem;
            }

            .card-icon {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }

            .footer-email,
            .footer-phone,
            .footer-address {
                font-size: clamp(0.9rem, 3vw, 1rem);
                padding: 0.625rem;
            }

            .footer-link-item {
                font-size: clamp(0.9rem, 3vw, 1rem);
                padding: 0.875rem;
            }

            .social-links {
                justify-content: center;
                gap: 1.5rem;
            }

            .social-link {
                padding: 0.625rem;
                font-size: 1.3rem;
            }

            .footer-branding {
                padding-top: 1rem;
            }

            .branding-content {
                flex-direction: column;
                gap: 0.75rem;
                text-align: center;
            }

            .branding-text {
                flex-direction: column;
                gap: 0.5rem;
            }

            .skynet-link,
            .copyright {
                font-size: clamp(0.8rem, 3vw, 0.9rem);
            }
        }

        /* Small Mobile Styles */
        @media (max-width: 480px) {
            .nav-brand {
                font-size: 1rem;
            }

            .nav-brand i {
                font-size: 1.25rem;
            }

            .nav-back-link {
                font-size: 0.85rem;
                padding: 0.625rem 1.25rem;
            }

            .wood-plank-divider {
                height: 25px;
                margin: 1.5rem 0;
            }

            .container {
                padding: 0 15px;
            }

            .magazine-cover {
                min-height: 300px;
            }

            .cover-content {
                padding: 1rem 0.5rem;
            }

            .section {
                padding: 2rem 1rem;
            }

            .machinery-hero-card {
                height: 300px;
            }

            .option-box {
                padding: 1.5rem;
            }

            .hero-button {
                width: 100%;
                max-width: 280px;
            }

            .social-links {
                gap: 1rem;
            }

            .social-link {
                padding: 0.5rem;
                font-size: 1.1rem;
            }
        }

        /* Performance optimizations */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            .btn {
                border: 2px solid;
            }

            .section {
                border: 1px solid;
            }
        }

        /* Print styles */
        @media print {
            .machinery-hero,
            .advertiser-section,
            .signup-form,
            footer .branding-content {
                display: none;
            }

            .section {
                break-inside: avoid;
                margin-bottom: 2rem;
            }

            .btn {
                background: white !important;
                color: black !important;
                border: 1px solid black !important;
            }
        }
