* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #fba53e;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .privacy-modal {
            background: white;
            border-radius: 20px;
            padding: 32px 24px 24px 24px;
            max-width: 340px;
            width: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .modal-title {
            font-size: 24px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .modal-content {
            font-size: 15px;
            line-height: 1.6;
            color: #888;
            margin-bottom: 28px;
            text-align: justify;
        }

        .highlight-link {
            color: #fba53e;
            text-decoration: none;
            font-weight: 500;
        }

        .highlight-link:hover {
            text-decoration: underline;
        }

        .button-container {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .btn {
            flex: 1;
            padding: 14px 20px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-disagree {
            background: transparent;
            color: black;
            border: 1px solid #ddd;
        }

        .btn-disagree:hover {
            background: #f5f5f5;
        }

        .btn-agree {
            background: #f2a040;
            color: white;
            flex: 1.2;
        }

        .btn-agree:hover {
            background:  #f2a040;
            transform: translateY(-1px);
        }

        .btn-agree:active {
            transform: translateY(0);
        }

        /* Mobile responsiveness */
        @media (max-width: 480px) {
            .privacy-modal {
                margin: 10px;
                padding: 28px 20px 20px 20px;
            }
            
            .modal-title {
                font-size: 22px;
            }
            
            .modal-content {
                font-size: 14px;
            }
            
            .btn {
                font-size: 15px;
                padding: 12px 16px;
            }
        }
