* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(to bottom, #fff5f7, #ffe4e9);
            color: #333;
        }
        header {
            background: linear-gradient(135deg, #d4868f, #c27380);
            color: white;
            padding: 15px 20px;
            text-align: center;
        }

        header h3 {
            font-size: 12px;
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        .hero {
            position: relative;
            height: 500px;
            background: linear-gradient(135deg, #e8b4bc, #d4a5ae);
            display: flex;
            align-items: center;
            padding: 0 60px;
            overflow: hidden;
        }
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;

            background-image: url("/nails.jpg");
            background-size: cover;
            background-position: center;

            filter: blur(8px);
            transform: scale(1.1);
            z-index: 0;
        }
        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.25);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 72px;
            font-weight: 300;
            color: white;
            line-height: 1.1;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero p {
            color: white;
            font-size: 18px;
            margin-bottom: 30px;
            font-weight: 300;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
        }

        .hero-btn {
            background: linear-gradient(135deg, #d4868f, #c27380);
            color: white;
            padding: 14px 40px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 100;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        }

        .hero-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        /* Press-On's Section */
        .press-ons {
            padding: 80px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .press-ons h2 {
            text-align: center;
            font-size: 36px;
            font-weight: 300;
            color: #d4868f;
            margin-bottom: 60px;
            letter-spacing: 4px;
            text-transform: uppercase;
            text-shadow: 0 2px 6px rgba(212, 134, 143, 0.2);
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .card {
            background: white;
            border-radius: 25px;
            padding: 30px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .card-image {
            width: 100%;
            aspect-ratio: 1;
            border-radius: 20px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
            background: linear-gradient(135deg, #ffd4d8, #ffb4bc);
            overflow: hidden;
            position: relative;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 20px;
        }

        .card-image .emoji-fallback {
            font-size: 80px;
        }

        .card h3 {
            font-size: 28px;
            font-weight: 300;
            color: #d4868f;
            margin-bottom: 10px;
            text-shadow: 0 1px 3px rgba(212, 134, 143, 0.15);
        }

        .card .starting {
            font-size: 12px;
            color: #888;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .card .price {
            font-size: 28px;
            font-weight: 300;
            margin-bottom: 15px;
            color: #333;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
        }

        .card .details {
            font-size: 11px;
            color: #999;
            line-height: 1.6;
            text-transform: uppercase;
        }

        .recommendation {
            text-align: center;
            color: #888;
            font-size: 14px;
            margin-top: 40px;
        }

        /* Contact Section */
        .contact-section {
            background: #ffe4e9;
            padding: 80px 40px;
        }

        .contact-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.5);
            padding: 50px;
            border-radius: 30px;
        }

        .contact-form h2 {
            font-size: 32px;
            font-weight: 300;
            color: #d4868f;
            text-align: center;
            margin-bottom: 40px;
            line-height: 1.4;
            text-transform: uppercase;
            text-shadow: 0 2px 6px rgba(212, 134, 143, 0.2);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            color: #666;
            font-size: 14px;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 20px;
            border: 1px solid #ddd;
            border-radius: 25px;
            font-size: 14px;
            font-family: inherit;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #d4868f;
        }

        .form-group textarea {
            border-radius: 20px;
            resize: none;
            height: 120px;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #d4868f, #c27380);
            color: white;
            padding: 14px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
            font-weight: 500;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 30px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #d4868f;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .social-links a:hover {
            background: #c27380;
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .contact-image {
            width: 100%;
            height: 500px;
            border-radius: 30px;
            background: linear-gradient(135deg, #7dd3c0, #5ec4ae);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        @media (max-width: 768px) {
            .hero {
                padding: 0 30px;
                height: 400px;
            }

            .hero h1 {
                font-size: 48px;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
            }

            .contact-image {
                height: 300px;
            }

            .cards-container {
                grid-template-columns: 1fr;
            }
        }