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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #2c2c2c;
            background: #fafafa;
        }

        /* Navigation */
        nav {
            background: #ffffff;
            padding: 1.2rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 600;
            color: #d4a574;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #4a4a4a;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #d4a574;
        }

        /* Hero Section */
        .hero {
            margin-top: 70px;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            padding: 8rem 5% 6rem;
            text-align: center;
        }

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

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: #2c2c2c;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .hero h1 span {
            color: #d4a574;
            font-weight: 600;
        }

        .hero p {
            font-size: 1.3rem;
            color: #666;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .cta-button {
            display: inline-block;
            background: #d4a574;
            color: white;
            padding: 1rem 3rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
        }

        .cta-button:hover {
            background: #c49564;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
        }

        /* Sections */
        section {
            padding: 5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2c2c2c;
            font-weight: 300;
            letter-spacing: 1px;
        }

        .section-subtitle {
            text-align: center;
            color: #888;
            margin-bottom: 4rem;
            font-size: 1.1rem;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            color: #555;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .about-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-box {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 600;
            color: #d4a574;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #666;
            font-size: 0.95rem;
        }

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

        .product-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            transition: all 0.3s;
            text-align: center;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .product-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #2c2c2c;
            font-weight: 500;
        }

        .product-card p {
            color: #666;
            line-height: 1.7;
        }

        /* Services Section */
        .services-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-item {
            background: linear-gradient(135deg, #f8f8f8 0%, #efefef 100%);
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid #d4a574;
        }

        .service-item h4 {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            color: #2c2c2c;
        }

        .service-item p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            background: white;
            padding: 4rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: #2c2c2c;
        }

        .info-item {
            margin-bottom: 2rem;
        }

        .info-item h4 {
            color: #d4a574;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .info-item p {
            color: #555;
            font-size: 1.05rem;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1.5rem;
            border: 2px solid #e8e8e8;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #d4a574;
        }

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

        .submit-button {
            width: 100%;
            background: #d4a574;
            color: white;
            padding: 1.2rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-button:hover {
            background: #c49564;
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: #2c2c2c;
            color: white;
            text-align: center;
            padding: 2.5rem 5%;
        }

        footer p {
            color: #aaa;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                gap: 1.5rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

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

            .contact-container {
                padding: 2rem;
            }
        }
    
        /* Small additions */
        .map-link{
            display:inline-block;
            margin-top: .6rem;
            color:#d4a574;
            font-weight:600;
            text-decoration:none;
        }
        .map-link:hover{ text-decoration:underline; }

        /* Lighter footer to keep the page sober */
        footer{
            background:#f2f2f2 !important;
            color:#2c2c2c !important;
        }
        footer p{ color:#666 !important; }

        /* Accessible focus */
        a:focus, button:focus, input:focus, textarea:focus{
            outline: none;
            box-shadow: 0 0 0 4px rgba(212,165,116,0.22);
            border-color:#d4a574;
        }