
         .container {
            max-width: 600px;
            padding: 2rem;
            text-align: center;
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 8px 32px rgba(34, 34, 34, 0.08);
            margin: 1rem;
            max-width: 800px;
            margin: 0 auto;
            padding-top: 20px;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #d4a574, #e6c79a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            animation: bounce 0.6s ease-out;
        }

        .success-icon::after {
            content: "✓";
            color: white;
            font-size: 2rem;
            font-weight: bold;
        }

        @keyframes bounce {
            0% { transform: scale(0); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        h1 {
            color: #2c2c2c;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #d4a574, #4da6a6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            color: #666;
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .feature-card {
            background: #fdf9f0;
            padding: 1.5rem;
            border-radius: 16px;
            border: 2px solid #f0ead7;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(212, 165, 116, 0.2);
        }

        .feature-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .feature-title {
            color: #2c2c2c;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .feature-desc {
            color: #666;
            font-size: 0.9rem;
        }

        .next-steps {
            background: linear-gradient(135deg, #4da6a6, #5bb5b5);
            color: white;
            padding: 2rem;
            border-radius: 16px;
            margin: 2rem 0;
        }

        .next-steps h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .steps-list {
            text-align: left;
            max-width: 400px;
            margin: 0 auto;
        }

        .steps-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .steps-list li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: #e6c79a;
            font-weight: bold;
        }

        .btn-primary {
            background: linear-gradient(135deg, #d4a574, #e6c79a);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin: 1rem 0.5rem;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(212, 165, 116, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #4da6a6;
            padding: 1rem 2rem;
            border: 2px solid #4da6a6;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin: 1rem 0.5rem;
        }

        .btn-secondary:hover {
            background: #4da6a6;
            color: white;
            transform: translateY(-2px);
        }

        .footer-note {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #e0e0e0;
            color: #888;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .container {
                margin: 0.5rem;
                padding: 1.5rem;
            }

            h1 {
                font-size: 2rem;
            }

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

            .btn-primary, .btn-secondary {
                display: block;
                margin: 0.5rem 0;
            }
        }
        @media (max-width: 768px) {
          .cards {
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .section1 article {
          width: 90%;
          max-width: 300px;
          height: auto;
        }
        article h4 {
          font-size: 24px;
        }
        .section1 h2 {
          font-size: 32px;
        }
}

