:root {
            --pink: #ffb6c1;
            --blue: #add8e6;
            --green: #90ee90;
            --yellow: #ffe066;
            --font: Verdana , Arial, sans-serif;
        }
        body {
            margin: 0;
            font-family: var(--font);
            background: rgb(192, 192, 192);
            color: #222;
        }
        header {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 22px 0 22px 0;
            border-style: solid;
            border-width: 0px;
            border-color: rgb(122, 119, 119);
            background: #e1d9aa;
        }
        .icon {
            width: 40px;
            height: 40px;
            margin: 0 20px;
        }
        .site-title {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 2px;
        }
        nav
		{
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content:center;
            border-style: solid;
            border-width: 2px;
            border-color: rgb(117, 111, 111);
            gap: 18px;
            background-color: #f1c06b;
        }
        
        nav a {
            text-decoration: none;
            height: 100%;
            text-align: center;
            padding:10px 10px;
            color: #222;
            font-weight: 600;
            font-size: 1.2rem;
            transition: color 0.2s;
            cursor: pointer;
            
        }
        nav a:hover {
            color: rgb(215, 224, 227);
            background-color: rgb(241, 105, 71) ;
        }
        main {
            max-width: 900px;
            margin: 32px auto;
            padding: 32px;
            background: #e1d9aa;
            border-radius: 24px;
    }

        .info-section h1 {
            font-size: 2.4em;
            margin-bottom: 22px;
            color: #2d3a4b;
            text-align: center;
            text-shadow: 0 1px 6px rgba(0,0,0,0.06);
        }

        .info-section h2 {
            font-size: 1.5em;
            margin-top: 36px;
            margin-bottom: 16px;
            color: #1a2533;
        }

        .intro {
            display: flex;
            align-items:space-between;
            justify-content: center;
            gap : 20px;
            margin-bottom: 32px;
        }

        .intro img {
            max-height:200px;
            max-width: 200px;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.10);
        }

        .intro p {
            flex: 1;
            font-size: 1.12em;
            color: #444;
        }

        ol, ul {
            margin-left: 36px;
            margin-bottom: 22px;
            color: #333;
        }

        ol li, ul li {
            margin-bottom: 12px;
            line-height: 1.7;
        }

        .info-box {
            background: #e3f2fd;
            border-left: 6px solid #b35a37;
            padding: 18px 22px;
            margin: 28px 0;
            border-radius: 12px;
            font-size: 1.08em;
            color: #174a6c;
            box-shadow: 0 2px 10px rgba(155, 42, 216, 0.07);
        }

        main img[alt="3D Printed Object Example"] {
            display: block;
            margin: 36px auto 22px auto;
            max-width: 340px;
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.10);
        }

        main a {
            color: #1976d2;
            text-decoration: underline;
            transition: color 0.2s;
        }

        main a:hover {
            color: #0d47a1;
        }
        
        footer {
            background: #e1d9aa;
            padding: 18px 0;
            text-align: center;
            font-size: 1.05rem;
            color: #222;
            margin-top: 40px;
            border: 2px solid rgb(100, 99, 101);
        }
        @media (max-width: 700px) {
            main {
                max-width: 100%;
                gap: 18px;
            }
            .pricing-box, .info-box, .form-box, .service-image-box {
                padding: 14px;
            }
            .site-title {
                font-size: 1.3rem;
            }
        }